/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%);
  border-bottom: 1px solid transparent;
  transition: background var(--ease-slow), border-color 0.3s, padding 0.3s;
  gap: 20px;
}
nav.scrolled {
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
  padding: 12px 36px;
}
nav.scrolled .nav-links a { text-shadow: none; font-weight: 400; }

.nav-logo { position: absolute; left: 36px; z-index: 1; display: flex; flex-direction: column; text-decoration: none; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity var(--ease-slow), visibility var(--ease-slow); }
nav.scrolled .nav-logo { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-logo-main {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--w-92); line-height: 1;
  transition: color var(--ease-slow);
}
nav.scrolled .nav-logo-main { color: var(--terracotta-nav); }
.nav-logo-sub {
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 300; letter-spacing: 0.2em;
  color: var(--w-60); text-transform: uppercase; margin-top: 4px;
  transition: color var(--ease-slow);
}
.nav-logo-sub span { width: 18px; height: 1px; background: var(--w-50); display: block; transition: background var(--ease-slow); }
nav.scrolled .nav-logo-sub      { color: var(--terracotta-nav); }
nav.scrolled .nav-logo-sub span { background: var(--terracotta-nav); }

.nav-logo svg {
  display: block;
  height: clamp(22px, 2.4vw, 30px);
  width: auto;
}
nav.scrolled .nav-logo svg { height: clamp(20px, 2.1vw, 26px); }

.nav-links {
  display: flex; gap: 0; list-style: none; flex-wrap: nowrap;
  flex: 1; justify-content: space-between;
  padding: 0 4rem 0 8rem;
}
nav.scrolled .nav-links { padding: 0 4rem 0 12rem; }
.nav-links a {
  font-family: var(--font-serif); font-size: 1rem; font-weight: 500; font-style: normal;
  letter-spacing: 0.05em; color: #fff; text-decoration: none; white-space: nowrap;
  transition: color 0.3s, text-shadow 0.3s; position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 0 14px rgba(0,0,0,0.25);
}
.nav-links a::after {
  content:""; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: #fff;
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.nav-links a:hover,
.nav-links a.active                  { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after           { transform: scaleX(1); }
nav.scrolled .nav-links a            { color: var(--charcoal); }
nav.scrolled .nav-links a::after     { background: var(--terracotta-nav); }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active     { color: var(--terracotta-nav); }

/* ============================================================
   CLOCK WIDGET
   ============================================================ */
.nav-clock {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 300;
  color: var(--w-85); letter-spacing: 0.06em;
  transition: color var(--ease-slow); white-space: nowrap;
  width: 8.3125rem; height: 1.875rem; aspect-ratio: 133/30;
}
nav.scrolled .nav-clock { display: none; }
.nav-clock-top       { display: flex; align-items: center; gap: 10px; }
.nav-clock-time,
.nav-clock-weather {
  color: #FFF; text-align: center; font-family: var(--font-sans);
  font-size: 1.25rem; font-style: normal; font-weight: 400; line-height: normal;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 0 14px rgba(0,0,0,0.25);
}
.nav-clock-divider   { width: 1px; height: 22px; background: #fff; box-shadow: 0 0 6px rgba(0,0,0,0.4); transition: background var(--ease-slow), box-shadow var(--ease-slow); }
nav.scrolled .nav-clock-divider { background: var(--border); box-shadow: none; }
.nav-clock-city {
  color: #FFF; text-align: center; font-family: var(--font-sans);
  font-size: 0.625rem; font-style: normal; font-weight: 400;
  line-height: normal; letter-spacing: 0.075rem; text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}

/* ============================================================
   MOBILE NAV (hamburger + drawer) — only visible on mobile
   ============================================================ */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
  flex-shrink: 0; z-index: calc(var(--z-drawer) + 1); position: relative;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.45);
  transition: background var(--ease-slow), transform 0.3s, opacity 0.3s, box-shadow var(--ease-slow);
}
nav.scrolled .nav-hamburger span        { background: var(--charcoal); box-shadow: none; }
.nav-hamburger.open span                { background: #fff; box-shadow: none; }
.nav-hamburger.open span:nth-child(1)   { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2)   { opacity: 0; }
.nav-hamburger.open span:nth-child(3)   { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-drawer {
  display: flex; position: fixed; inset: 0; z-index: var(--z-drawer);
  background: var(--charcoal);
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-mobile-drawer.open { opacity: 1; pointer-events: all; }
.nav-mobile-drawer ul   { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0; }
.nav-mobile-drawer ul a {
  font-family: var(--font-serif); font-size: clamp(24px, 6vw, 36px);
  font-weight: 400; font-style: italic;
  color: var(--w-70); text-decoration: none;
  letter-spacing: 0.04em; display: block; padding: 10px 0;
  transition: color 0.2s;
}
.nav-mobile-drawer ul a:hover,
.nav-mobile-drawer ul a.active { color: var(--terracotta-light); }
.nav-mobile-drawer-sub {
  margin-top: 44px; font-family: var(--font-sans);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--w-20);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 33.5625rem;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 33.5625rem; object-fit: cover; object-position: center 40%;
}
.hero-overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 33.5625rem;
  background: #D9D9D8;
  mix-blend-mode: multiply;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  color: #fff; padding: 0 24px;
  animation: fadeUp 1.1s ease both 0.2s;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
}
.hero-wordmark { width: 27.625rem; max-width: 100%; height: auto; }
.hero-title {
  font-family: var(--font-serif); font-size: clamp(64px, 10vw, 130px);
  font-weight: 300; letter-spacing: 0.02em; line-height: 1; margin-bottom: 12px;
}
.hero-tagline {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 300; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--w-60); margin-bottom: 60px;
}
.hero-tagline span { width: 36px; height: 1px; background: var(--w-35); }
.hero-arrow {
  position: absolute; bottom: 6.875rem; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 60px; height: 60px;
  border: 1.5px solid #fff; border-radius: 50%;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; animation: bounce 2.2s ease-in-out infinite;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.hero-arrow:hover { border-color: #fff; background: rgba(0,0,0,0.5); box-shadow: 0 6px 22px rgba(0,0,0,0.45); }
.hero-arrow svg   { color: #fff; width: 22px; height: 22px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4)); transition: color 0.2s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-group--center { justify-content: center; }
.btn-group--mt-lg  { margin-top: var(--space-10); }   /* 48px */
.btn-group--mt-xl  { margin-top: var(--space-11); }   /* 56px */
.btn-group--mt-xxl { margin-top: var(--space-12); }   /* 64px */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; font-family: var(--font-sans);
  font-size: 11px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; transition: all var(--ease); border-radius: 100px;
}
.btn-primary        { background: var(--terracotta); color: #fff; }
.btn-primary:hover  { background: var(--terracotta-dark); }
.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover  { background: var(--charcoal); color: #fff; }

/* ============================================================
   BOOKING MODAL  —  Netlify Forms lead capture
   ============================================================ */
.booking-modal {
  position: fixed; inset: 0; z-index: calc(var(--z-nav) + 10);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--ease-slow), visibility var(--ease-slow);
}
.booking-modal.open { opacity: 1; visibility: visible; pointer-events: auto; }
.booking-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,8,6,0.55);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.booking-modal-dialog {
  position: relative;
  width: 100%; max-width: 440px; max-height: 90vh; overflow-y: auto;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 36px 36px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  transform: translateY(12px);
  transition: transform var(--ease-slow);
}
.booking-modal.open .booking-modal-dialog { transform: translateY(0); }
.booking-modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; line-height: 1; color: var(--warm-gray);
  transition: color var(--ease);
}
.booking-modal-close:hover { color: var(--terracotta); }
.booking-modal-eyebrow {
  font-family: var(--font-sans); font-size: 9px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 10px;
}
.booking-modal-title {
  font-family: var(--font-serif); font-size: 1.75rem; font-weight: 400;
  color: var(--terracotta-nav); margin-bottom: 8px; line-height: 1.1;
}
.booking-modal-sub {
  font-size: 14px; color: var(--charcoal-mid); line-height: 1.6;
  margin-bottom: 26px;
}
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.booking-field { display: flex; flex-direction: column; gap: 6px; }
.booking-field > span {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal-mid);
}
.booking-field > span em { font-style: italic; text-transform: none; color: var(--warm-gray); letter-spacing: 0; }
.booking-field input,
.booking-field textarea {
  font-family: var(--font-sans); font-size: 14px; color: var(--charcoal);
  background: #fff; border: 1px solid var(--border); border-radius: 4px;
  padding: 11px 12px; width: 100%;
  transition: border-color var(--ease);
}
.booking-field input:focus,
.booking-field textarea:focus { outline: none; border-color: var(--terracotta); }
.booking-field textarea { resize: vertical; }
.booking-submit { margin-top: 8px; width: 100%; }
.booking-hp { position: absolute; left: -9999px; }
.booking-modal-success { text-align: center; padding: 20px 0 8px; }
.booking-modal-success .btn { margin-top: 20px; }

/* ============================================================
   EYEBROW  —  small, uppercase, tracked label
   ============================================================ */
.eyebrow {
  text-align: center;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}
.eyebrow--gap-lg { margin-bottom: var(--space-10); }   /* 48px after */

/* ============================================================
   STAT-ROW  —  unified pattern for left-bordered key/value rows
   Replaces .std-row, .std-exp-row, .market-stat
   ============================================================ */
.stat-row-group         { border-left: 0.0625rem solid var(--terracotta); }
.stat-row-group--accent { border-left-color: var(--terracotta); }

.stat-row {
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 22px 32px;
}
.stat-row:last-child    { border-bottom: none; }

/* Column-template modifiers */
.stat-row--label-120    { grid-template-columns: 120px 1fr; }
.stat-row--label-260    { grid-template-columns: 260px 1fr; gap: var(--space-10); padding: 36px 0 36px 28px; align-items: start; }

/* Density modifier (compact rows only — narrows pad without overriding column-specific padding) */
.stat-row--expanded     { padding: 34px 32px; align-items: start; }

/* ============================================================
   SECTION HEADER (.section-h + .section-sub + .section-rule)
   ============================================================ */
.section-h    { color: #BB4E27; font-family: var(--font-serif); font-size: 3rem; font-style: normal; font-weight: 400; line-height: normal; text-transform: capitalize; margin-bottom: 6px; }
.section-h--centered { text-align: center; }
.section-sub  { color: #222; font-family: var(--font-serif); font-size: 2rem; font-style: normal; font-weight: 400; line-height: normal; margin-bottom: 18px; }
.section-sub--accent  { font-family: var(--font-serif); font-style: italic; font-size: clamp(14px, 1.5vw, 18px); }
.section-sub--services { font-size: 1.6rem; }
.section-rule { width: 34px; height: 2px; background: var(--terracotta); opacity: 0.45; margin-bottom: 52px; }
.section-rule--centered { margin: 18px auto 52px; }
.section-rule--between  { margin: 8px 0 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal); color: var(--w-45);
  padding: var(--space-12) var(--space-14); text-align: center;
}
.footer-logo {
  font-family: var(--font-serif); font-size: 24px; font-weight: 400; letter-spacing: 0.16em;
  color: var(--w-88); margin-bottom: 6px;
}
.footer-sub {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta-light); margin-bottom: 36px;
}
.footer-sub span { width: 18px; height: 1px; background: var(--terracotta-light); }
.footer-links     { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; list-style: none; margin-bottom: 36px; }
.footer-links a   { font-size: 11px; letter-spacing: 0.06em; color: var(--w-38); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy      { font-size: 11px; color: var(--w-20); }
