/* ===== NAGLE PARKING — Service Utility (Stripe / Linear / SpotHero) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F8FA;
  --bg-subtle: #FAFBFC;
  --ink: #0A0E1A;
  --text: #1F2937;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --border: #E5E7EB;
  --border-strong: #D1D5DB;
  --navy: #0A1B3B;
  --navy-hover: #111F45;
  --accent: #2563EB;
  --accent-soft: #EFF6FF;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(10, 14, 26, 0.04), 0 1px 3px rgba(10, 14, 26, 0.06);
  --shadow-md: 0 2px 4px rgba(10, 14, 26, 0.04), 0 4px 12px rgba(10, 14, 26, 0.06);
  --shadow-lg: 0 8px 16px rgba(10, 14, 26, 0.06), 0 20px 40px rgba(10, 14, 26, 0.08);

  --max-w: 1200px;
  --transition: 160ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy aliases */
  --white: var(--bg);
  --black: var(--ink);
  --off-white: var(--bg-alt);
  --gray: var(--border);
  --navy-light: var(--accent-soft);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--ink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; border: none; outline: none; background: transparent; color: inherit;
}
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius-sm); }

/* ===== Layout ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section { padding: 112px 0; background: var(--bg); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: #F3F4F6; }
.section--dark .section-title { color: #FFFFFF; }
.section--dark .section-subtitle { color: rgba(255, 255, 255, 0.7); }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
}

/* ===== Typography ===== */
.section-label,
.text-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: -0.005em;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
  font-weight: 400;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--navy);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bg-alt);
}
.btn--white {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
}
.btn--white:hover { background: #F3F4F6; color: var(--ink); }
.btn--sm { padding: 8px 14px; font-size: 13px; border-radius: var(--radius-sm); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: border-color 300ms ease;
}
/* Blur + tint on pseudo so .header itself never creates a containing block
   for descendants with position: fixed (the mobile drawer). */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: opacity 300ms ease;
}
body:not(.has-dark-hero) { padding-top: 64px; }

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 32px;
  width: auto;
  display: block;
  transition: filter 300ms ease;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.header__nav-meta { display: none; }
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
  position: relative;
}
.header__nav a:hover { color: var(--ink); background: var(--bg-alt); }
.header__nav a.active { color: var(--ink); background: var(--bg-alt); }

/* Contact CTA in header — outlined pill, overrides .btn--primary chunk */
.header .header__cta.btn,
.header .header__cta.btn--primary {
  margin-left: 8px;
  padding: 8px 18px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.header .header__cta.btn:hover,
.header .header__cta.btn--primary:hover {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
  transform: none;
  box-shadow: none;
}

.header__toggle {
  display: none;
  width: 32px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 0;
}
.header__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease, background 200ms ease;
}

/* Dark-hero pages: header transparent over hero, fills on scroll */
body.has-dark-hero .header:not(.header--scrolled) {
  border-bottom-color: transparent;
}
body.has-dark-hero .header:not(.header--scrolled)::before {
  opacity: 0;
}
body.has-dark-hero .header:not(.header--scrolled) .header__logo img {
  filter: brightness(0) invert(1);
}
body.has-dark-hero .header:not(.header--scrolled) .header__nav a {
  color: rgba(255, 255, 255, 0.88);
}
body.has-dark-hero .header:not(.header--scrolled) .header__nav a:hover,
body.has-dark-hero .header:not(.header--scrolled) .header__nav a.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
}
body.has-dark-hero .header:not(.header--scrolled) .header__toggle span {
  background: #FFFFFF;
}
body.has-dark-hero .header:not(.header--scrolled) .header__cta.btn,
body.has-dark-hero .header:not(.header--scrolled) .header__cta.btn--primary {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
}
body.has-dark-hero .header:not(.header--scrolled) .header__cta.btn:hover,
body.has-dark-hero .header:not(.header--scrolled) .header__cta.btn--primary:hover {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
}

@media (max-width: 960px) {
  .header__nav { display: none; }
  .header__toggle { display: flex; z-index: 1001; }

  /* Editorial full-screen drawer */
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 112px 28px 40px;
    background: var(--navy);
    background-image:
      radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
      radial-gradient(ellipse 80% 50% at 0% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 55%);
    z-index: 1000;
    overflow-y: auto;
    counter-reset: navItem;
    animation: navDrawerIn 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  /* Large editorial link rows with numbered prefix + hover arrow */
  .header__nav.open > a {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 22px 0;
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    box-shadow: none;
    transition: color 200ms ease, padding-left 240ms ease;
    opacity: 0;
    transform: translateY(16px);
    animation: navLinkIn 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .header__nav.open > a::before {
    counter-increment: navItem;
    content: counter(navItem, decimal-leading-zero);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    margin-top: 14px;
    width: 28px;
    flex-shrink: 0;
    transition: color 200ms ease;
  }
  .header__nav.open > a::after {
    content: '';
    margin-left: auto;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 200ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
    align-self: center;
    flex-shrink: 0;
  }
  .header__nav.open > a:hover,
  .header__nav.open > a.active {
    color: #FFFFFF;
    padding-left: 6px;
  }
  .header__nav.open > a:hover::before,
  .header__nav.open > a.active::before { color: rgba(255, 255, 255, 0.8); }
  .header__nav.open > a:hover::after,
  .header__nav.open > a.active::after { opacity: 1; transform: translateX(0); }

  /* Contact CTA — kill the primary-button styling and match the row style */
  .header__nav.open > a.header__cta,
  .header__nav.open > a.header__cta.btn,
  .header__nav.open > a.header__cta.btn--primary {
    margin: 0;
    padding: 22px 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    box-shadow: none;
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-align: left;
    justify-content: flex-start;
    transform: none;
    text-transform: none;
  }
  .header__nav.open > a.header__cta:hover {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.08);
    padding-left: 6px;
    transform: none;
    box-shadow: none;
  }

  /* Stagger link entrance */
  .header__nav.open > a:nth-of-type(1) { animation-delay: 100ms; }
  .header__nav.open > a:nth-of-type(2) { animation-delay: 160ms; }
  .header__nav.open > a:nth-of-type(3) { animation-delay: 220ms; }
  .header__nav.open > a:nth-of-type(4) { animation-delay: 280ms; }
  .header__nav.open > a:nth-of-type(5) { animation-delay: 340ms; }
  .header__nav.open > a:nth-of-type(6) { animation-delay: 400ms; }
  .header__nav.open > a:nth-of-type(7) { animation-delay: 460ms; }

  /* Bottom meta block — contact + social (mobile drawer only) */
  .header__nav.open .header__nav-meta {
    display: block;
    margin-top: auto;
    padding-top: 40px;
    opacity: 0;
    transform: translateY(12px);
    animation: navLinkIn 560ms 540ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .header__nav-meta__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
  }
  .header__nav-meta__contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
  }
  .header__nav-meta__contact a,
  .header__nav-meta__contact span {
    display: inline-block;
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    text-align: left;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .header__nav-meta__contact a::before,
  .header__nav-meta__contact a::after { content: none; display: none; }
  .header__nav-meta__contact a:hover {
    color: #FFFFFF;
    background: transparent;
    padding-left: 0;
  }
  .header__nav-meta__address {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
  }
  .header__nav-meta__social {
    display: flex;
    gap: 10px;
  }
  .header__nav-meta__social a {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    transition: all 200ms ease;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .header__nav-meta__social a::before,
  .header__nav-meta__social a::after { content: none; display: none; }
  .header__nav-meta__social a:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.06);
  }

  /* Keep logo visible (and white) on top of the drawer */
  body.nav-open .header__logo {
    position: relative;
    z-index: 1002;
  }
  body.nav-open .header__logo img {
    filter: brightness(0) invert(1);
  }

  /* Hamburger → X */
  .header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
  body.nav-open .header__toggle span { background: #FFFFFF; }
}
@keyframes navDrawerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes navLinkIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Homepage Split Hero — photo + floating booking card ===== */
.home-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: blur(3px) contrast(1.02) brightness(0.72) saturate(0.92);
  transform: scale(1.04);
}
.home-hero__bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.home-hero__bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(10, 14, 26, 0.72) 0%,
      rgba(10, 14, 26, 0.38) 35%,
      rgba(10, 14, 26, 0.12) 60%,
      rgba(10, 14, 26, 0.25) 90%,
      rgba(10, 14, 26, 0.35) 100%),
    linear-gradient(180deg,
      rgba(10, 14, 26, 0.35) 0%,
      rgba(10, 14, 26, 0) 30%,
      rgba(10, 14, 26, 0.15) 60%,
      rgba(10, 14, 26, 0.65) 100%);
  pointer-events: none;
}
.home-hero__layout {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 128px clamp(24px, 4vw, 56px) 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.home-hero__overlay {
  color: #FFFFFF;
  max-width: 640px;
  padding-bottom: 16px;
}
.home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 900ms ease-out 150ms forwards;
}
.home-hero__kicker-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
}
.home-hero__headline {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeUp 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 300ms forwards;
}
.home-hero__deck {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: fadeUp 1100ms ease-out 500ms forwards;
}
.home-hero__overlay-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1100ms ease-out 700ms forwards;
}
.home-hero__cta-main {
  padding: 16px 28px;
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 200ms ease;
}
.home-hero__cta-main:hover {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(10, 27, 59, 0.4);
}
.home-hero__cta-main svg { transition: transform var(--transition); }
.home-hero__cta-main:hover svg { transform: translateX(4px); }
.home-hero__stats {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1100ms ease-out 900ms forwards;
}
.home-hero__stats strong {
  display: inline-block;
  margin-right: 8px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.home-hero__stats-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.home-hero__card {
  width: 420px;
  max-width: 100%;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  align-self: center;
  position: relative;
  justify-self: end;
  opacity: 0;
  animation: fadeUp 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 450ms forwards;
}
.home-hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.07) 0%, transparent 55%);
  pointer-events: none;
}
.home-hero__card-header {
  position: relative;
  padding: 28px 28px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.home-hero__card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}
.home-hero__card-kicker span {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.home-hero__card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.home-hero__card-tabs {
  display: flex;
  gap: 4px;
  margin: 20px 28px 0;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}
.home-hero__card-tab {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.home-hero__card-tab:hover { color: #FFFFFF; }
.home-hero__card-tab.is-active {
  background: #FFFFFF;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.home-hero__card-form {
  position: relative;
  padding: 20px 28px 28px;
}
.home-hero__card-field { margin-bottom: 14px; }
.home-hero__card-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.home-hero__card-field input[type="text"],
.home-hero__card-field input[type="date"],
.home-hero__card-field input[type="time"] {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), box-shadow var(--transition);
}
.home-hero__card-field input::placeholder {
  color: rgba(10, 14, 26, 0.4);
  font-weight: 400;
}
.home-hero__card-field input:focus {
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.home-hero__card-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
  max-height: 140px;
  transition: max-height 280ms ease, opacity 200ms ease, margin-bottom 280ms ease, transform 280ms ease;
}
.home-hero__card.is-monthly .home-hero__card-field-row {
  max-height: 0;
  opacity: 0;
  margin-bottom: -14px;
  transform: translateY(-4px);
  pointer-events: none;
}
.home-hero__card-submit-monthly { display: none; }
.home-hero__card.is-monthly .home-hero__card-submit-daily { display: none; }
.home-hero__card.is-monthly .home-hero__card-submit-monthly { display: inline; }
.home-hero__card-submit {
  width: 100%;
  margin-top: 12px;
  padding: 15px 20px;
  background: #FFFFFF;
  color: var(--navy);
  border: 1px solid #FFFFFF;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
}
.home-hero__card-submit:hover {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.home-hero__card-submit svg { transition: transform var(--transition); }
.home-hero__card-submit:hover svg { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .home-hero__kicker, .home-hero__headline, .home-hero__deck,
  .home-hero__overlay-actions, .home-hero__stats, .home-hero__card {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
}
@media (max-width: 1024px) {
  .home-hero__layout {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 112px 24px 56px;
    gap: 40px;
  }
  .home-hero__overlay { max-width: 100%; padding-bottom: 0; }
  .home-hero__card {
    width: 100%;
    max-width: 480px;
    justify-self: stretch;
  }
}
@media (max-width: 640px) {
  .home-hero__stats { gap: 12px; font-size: 12px; padding-top: 18px; }
  .home-hero__stats strong { font-size: 15px; margin-right: 6px; }
  .home-hero__card-field-row { grid-template-columns: 1fr; }
}

/* ===== Legacy Hero (home) — kept as fallback for any page still using these classes ===== */
.hero { background: var(--bg); }

/* ===== Editorial / Cards Grids ===== */
.editorial-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.editorial-item,
.card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.editorial-item:hover,
.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.editorial-icon,
.card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.editorial-title,
.card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.editorial-text,
.card__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .editorial-grid, .cards-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== Page Header (interior pages) ===== */
.page-header {
  padding: 80px 0 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-header__breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.page-header__breadcrumb a { color: var(--muted); }
.page-header__breadcrumb a:hover { color: var(--ink); }
.page-header__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.page-header__subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.6;
}

/* ===== Directory Grid ===== */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.directory-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--ink);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.directory-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.dir-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-alt);
}
.dir-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.directory-card:hover .dir-img img { transform: scale(1.03); }
.dir-borough {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  padding: 20px 24px 0;
  letter-spacing: -0.005em;
}
.dir-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 6px 0 6px;
  padding: 0 24px;
  color: var(--ink);
}
.dir-address {
  color: var(--muted);
  font-size: 14px;
  padding: 0 24px;
  margin-bottom: 16px;
}
.directory-card > div[style] {
  padding: 16px 24px 20px !important;
  margin-top: 0 !important;
  border-top: 1px solid var(--border);
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  letter-spacing: -0.015em;
}

/* ===== Testimonials ===== */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.quote-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.quote-text {
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: -0.005em;
}
.quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--ink);
  color: #F3F4F6;
  padding: 112px 0;
}
.cta-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-banner__title,
.cta-banner .section-title {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.5vw, 40px);
}
.cta-banner__text,
.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.6;
}
.cta-banner .btn--white {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
}
.cta-banner .btn--white:hover {
  background: #F3F4F6;
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 900px) {
  .cta-banner { padding: 72px 0; }
  .cta-banner__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== Footer (supports BEM and kebab conventions) ===== */
.footer {
  background: var(--bg);
  color: var(--text);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid,
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo,
.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo img,
.footer__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-desc,
.footer__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
}
.footer-heading,
.footer__heading,
.footer-group h4,
.footer__group h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.footer-links li,
.footer__links li,
.footer-group li,
.footer__group li { margin-bottom: 10px; list-style: none; }
.footer-links a,
.footer__links a,
.footer-group a,
.footer__group a {
  color: var(--muted);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer__links a:hover,
.footer-group a:hover,
.footer__group a:hover { color: var(--ink); }
.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bg-alt);
}
.footer-bottom,
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a,
.footer__bottom a {
  color: var(--muted);
  margin-left: 16px;
}
.footer-bottom a:hover,
.footer__bottom a:hover { color: var(--ink); }
@media (max-width: 900px) {
  .footer-grid,
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom,
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== Service Blocks ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 80px 0;
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-block__text .section-label { margin-bottom: 16px; }
.service-block__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--ink);
}
.service-block__text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-block__benefits { margin: 20px 0 32px; }
.service-block__benefits li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.service-block__benefits li:last-child { border-bottom: none; }
.service-block__benefits li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 16px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563EB'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .service-block,
  .service-block:nth-child(even) { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .service-block__img { height: 280px; }
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats-bar__item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__value {
  display: block;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.stats-bar__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .stats-bar__item:nth-child(1),
  .stats-bar__item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 40px;
  max-width: 820px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  transition: transform var(--transition), color var(--transition);
  margin-left: 16px;
  line-height: 1;
}
.faq-item.open .faq-question::after { content: '−'; color: var(--ink); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer__inner {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 720px;
}

/* ===== Position Cards (careers) ===== */
.position-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.position-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.position-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.position-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ===== Sidebar Card ===== */
.sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ===== Form controls (used on contact, careers, hero widget) ===== */
.form-group { margin-bottom: 12px; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg);
  padding: 11px 14px;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.form-row { display: flex; gap: 10px; }
.form-row .form-group { flex: 1; }

/* ===== Location Page ===== */
.location-hero {
  padding: 48px 0 0;
  background: var(--bg);
}
.location-hero__gallery-full {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.location-hero__gallery-full img:first-child {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-hero__gallery-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-info-bar {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  gap: 40px;
  flex-wrap: wrap;
}
.location-info-bar__price {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}
.location-info-bar__price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.location-info-bar__divider { display: none; }
.location-info-bar__detail {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--ink);
}
.location-info-bar__detail strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 2px;
}
.location-info-bar__actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-wrap: wrap;
}
.location-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
}
.loc-section {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.loc-section:last-child { border-bottom: none; }
.loc-section__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}
.location-detail-sidebar > * { margin-bottom: 16px; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  background: var(--bg-alt);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:first-child {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}
.pricing-table td:last-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  letter-spacing: -0.01em;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.amenity-item__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  color: var(--navy);
}
@media (max-width: 900px) {
  .location-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-hero__gallery-full {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .location-hero__gallery-full img:first-child { grid-row: auto; height: 260px; }
  .location-hero__gallery-full img { height: 160px; }
  .location-info-bar__actions { margin-left: 0; width: 100%; }
}

/* ===== Map Page ===== */
.map-page {
  display: flex;
  height: calc(100vh - 64px);
  background: var(--bg);
}
.map-sidebar {
  width: 420px;
  min-width: 420px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.map-sidebar__header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.map-sidebar__search {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 14px;
  color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 14px center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.map-sidebar__search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.map-sidebar__tabs {
  display: flex;
  margin-top: 12px;
  padding: 4px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  gap: 4px;
}
.map-tab {
  flex: 1;
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.map-tab:hover { color: var(--ink); }
.map-tab.active {
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.map-sidebar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.filter-chip {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
}
.filter-chip:hover {
  border-color: var(--border-strong);
  color: var(--ink);
}
.filter-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #FFFFFF;
}
.map-sidebar__list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
.map-result-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  cursor: pointer;
  border-radius: var(--radius);
  background: var(--bg);
  transition: background var(--transition);
  border: 1px solid transparent;
}
.map-result-card:hover { background: var(--bg-alt); }
.map-result-card.active {
  background: var(--bg-alt);
  border-color: var(--border);
}
.map-result-card__img {
  width: 76px;
  height: 64px;
  object-fit: cover;
  background: var(--bg-alt);
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}
.map-result-card__info { flex: 1; min-width: 0; }
.map-result-card__name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 2px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.map-result-card__address {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.map-result-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-result-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.map-result-card__price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 1px;
}
.map-result-card__amenities {
  display: flex;
  gap: 4px;
  color: var(--muted);
  opacity: 0.8;
}

.map-container { flex: 1; position: relative; }
.map-container #map { width: 100%; height: 100%; }

.map-detail {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 380px;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 500;
  overflow: hidden;
  display: none;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.map-detail.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.map-detail__scroll { overflow-y: auto; flex: 1; }
.map-detail__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition);
}
.map-detail__close:hover { background: #FFFFFF; }
.map-detail__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-alt);
  display: block;
}
.map-detail__body { padding: 24px; }
.map-detail__name {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--ink);
}
.map-detail__address {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.map-detail__price {
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.map-detail__price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
.map-detail__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: var(--bg-alt);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}
.map-detail__hours,
.map-detail__transit {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.55;
}
.map-detail__hours strong,
.map-detail__transit strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}
.map-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .map-page { flex-direction: column; height: auto; }
  .map-sidebar {
    width: 100%;
    min-width: 100%;
    height: 55vh;
    order: 2;
    border-right: none;
    border-top: 1px solid var(--border);
  }
  .map-container { height: 55vh; order: 1; }
  .map-detail { width: calc(100% - 24px); top: 12px; left: 12px; }
}

/* ===== About Page — Cinematic Origin Hero ===== */
.about-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 120px;
  background: #0A0E1A;
  color: #F5F5F2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero__bg { position: absolute; inset: 0; z-index: 0; }
.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.55);
  animation: heroZoom 24s ease-out forwards;
  transform-origin: center;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.about-hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.about-hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 14, 26, 0.55) 75%, rgba(10, 14, 26, 0.9) 100%),
    linear-gradient(180deg, rgba(10, 14, 26, 0.65) 0%, rgba(10, 14, 26, 0.2) 40%, rgba(10, 14, 26, 0.25) 60%, rgba(10, 14, 26, 0.95) 100%);
  pointer-events: none;
}
.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.75);
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 900ms ease-out 200ms forwards;
}
.about-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8C877;
  box-shadow: 0 0 0 4px rgba(232, 200, 119, 0.2);
  animation: pulseDot 2.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 200, 119, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(232, 200, 119, 0.06); }
}
.about-hero__sign {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) 350ms forwards;
}
.about-hero__sign-hanger {
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0.45) 100%);
  margin-bottom: -2px;
}
.about-hero__sign-inner {
  display: inline-block;
  width: clamp(300px, 46vw, 580px);
  transform-origin: 50% 0%;
  animation: signSway 7s ease-in-out 1.3s infinite;
  will-change: transform;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}
.about-hero__sign-inner svg,
.about-hero__sign-inner img {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
@keyframes signSway {
  0%, 100% { transform: rotate(-1.2deg); }
  50%      { transform: rotate(1.2deg); }
}
.about-hero__title {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #F5F5F2;
  max-width: 16ch;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 550ms forwards;
  font-feature-settings: "ss01" on;
}
.about-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: #FFFFFF;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.about-hero__lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(245, 245, 242, 0.72);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1100ms ease-out 800ms forwards;
}
.about-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 245, 242, 0.5);
  opacity: 0;
  animation: fadeIn 800ms ease-out 1400ms forwards;
}
.about-hero__scroll svg {
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(6px); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero__bg img,
  .about-hero__sign-inner,
  .about-hero__eyebrow,
  .about-hero__sign,
  .about-hero__title,
  .about-hero__lede,
  .about-hero__scroll,
  .about-hero__scroll svg,
  .about-hero__eyebrow-dot {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 768px) {
  .about-hero { padding: 100px 0 80px; min-height: 90vh; }
  .about-hero__eyebrow { margin-bottom: 40px; }
  .about-hero__sign { margin-bottom: 40px; }
  .about-hero__sign-hanger { height: 32px; }
  .about-hero__title { margin-bottom: 24px; }
  .about-hero__scroll { bottom: 24px; }
}

/* ===== Fade-in ===== */
.fade-in { opacity: 1; transform: none; }
