/* =========================================================
   Pankhurst London — Dubai · Indicative storefront
   Built by quantifyxperts · Dark heritage · 2026
   ========================================================= */

:root {
  --ink: #0A0908;
  --smoke: #1A1715;
  --leather: #2B1C14;
  --bordeaux: #5B0E1A;
  --bordeaux-deep: #3D0710;
  --gold: #C9A45C;
  --gold-warm: #B8893D;
  --ivory: #F2EBDC;
  --ivory-dim: #A89F8E;
  --white: #FFFFFF;

  --max: 1280px;
  --pad-x: clamp(20px, 5vw, 80px);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 800ms;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
*::selection { background: var(--gold); color: var(--ink); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.6;
  color: var(--ivory);
  background:
    radial-gradient(at 20% 30%, rgba(91, 14, 26, 0.18), transparent 50%),
    radial-gradient(at 80% 70%, rgba(201, 164, 92, 0.10), transparent 55%),
    var(--ink);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--gold); }

button { font-family: inherit; cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Typography utilities */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin: 0 0 .5em; color: var(--ivory); }

h1 {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.005em;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

p { margin: 0 0 1em; color: var(--ivory-dim); max-width: 64ch; }
p strong { color: var(--ivory); font-weight: 500; }

/* Container */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--t-med) var(--ease), padding var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.14);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.logo-mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--ivory-dim);
  margin-top: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 14px 26px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-warm) 100%);
  color: var(--ink);
  background-size: 200% 100%;
  background-position: 0% 0%;
}
.btn-primary:hover {
  background-position: 100% 0%;
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 164, 92, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(242, 235, 220, 0.30);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-bordeaux {
  background: var(--bordeaux);
  color: var(--ivory);
  border: 1px solid rgba(201, 164, 92, 0.20);
}
.btn-bordeaux:hover {
  background: var(--bordeaux-deep);
  color: var(--gold);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--ivory);
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
  margin: 0 auto;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 80px 24px 40px;
  transform: translateY(-100%);
  transition: transform var(--t-med) var(--ease);
  pointer-events: none;
}
.mobile-menu[data-open="true"] {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 12px; }
.mobile-tel {
  font-family: var(--mono);
  font-size: 1rem !important;
  color: var(--gold) !important;
  letter-spacing: 0.06em;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media video,
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.04);
  animation: kenBurns 30s var(--ease) infinite alternate;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.45) 0%, rgba(10,9,8,0.15) 30%, rgba(10,9,8,0.85) 100%);
}
@keyframes kenBurns {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}
.hero-inner {
  position: relative;
  width: 100%;
  padding: 0 var(--pad-x) clamp(60px, 10vh, 120px);
  max-width: var(--max);
  margin: 0 auto;
}
.hero h1 {
  margin: 18px 0 28px;
  max-width: 16ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ivory);
  opacity: 0.92;
  max-width: 52ch;
  margin: 0 0 38px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- SECTION SCAFFOLD ---------- */
section {
  padding: clamp(70px, 12vw, 140px) 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.section-head p {
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  color: var(--ivory);
  opacity: 0.85;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BENTLEY SECTION ---------- */
.bentley {
  background: var(--smoke);
  border-top: 1px solid rgba(201, 164, 92, 0.10);
  border-bottom: 1px solid rgba(201, 164, 92, 0.10);
}
.bentley-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.bentley-text blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory);
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 22px;
  margin: 32px 0;
  max-width: 50ch;
  line-height: 1.45;
}
.counter-card {
  background: linear-gradient(135deg, rgba(43, 28, 20, 0.6) 0%, rgba(10, 9, 8, 0.4) 100%);
  border: 1px solid rgba(201, 164, 92, 0.22);
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.counter {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}
.counter-frac {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory-dim);
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.counter-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 18px;
}
.counter-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 164, 92, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
}
.counter-meta span:first-child { color: var(--ivory-dim); }
.counter-meta span:last-child { color: var(--ivory); font-weight: 500; }

/* ---------- STORY SECTION ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 1.2s var(--ease);
}
.story-image:hover img { transform: scale(1.05); }
.story-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,9,8,0.4));
  pointer-events: none;
}
.story-image-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ---------- SERVICES PREVIEW ---------- */
.services-preview {
  background: linear-gradient(180deg, var(--ink) 0%, var(--smoke) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: rgba(43, 28, 20, 0.4);
  border: 1px solid rgba(201, 164, 92, 0.16);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.service-card:hover {
  border-color: rgba(201, 164, 92, 0.42);
  background: rgba(43, 28, 20, 0.6);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 1; }
.service-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ivory);
}
.service-meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--ivory-dim);
  margin: 0;
}
.service-link {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(201, 164, 92, 0.16);
  padding-top: 14px;
}

/* ---------- SETTING ---------- */
.setting {
  position: relative;
  overflow: hidden;
}
.setting-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}
.setting-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.setting-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.setting-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.setting-list li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(201, 164, 92, 0.14);
  font-size: 0.92rem;
}
.setting-list li:last-child { border-bottom: 1px solid rgba(201, 164, 92, 0.14); }
.setting-list dt {
  color: var(--ivory-dim);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}
.setting-list dd {
  margin: 0;
  font-family: var(--mono);
  color: var(--ivory);
}

/* ---------- REVIEWS ---------- */
.reviews {
  background: var(--smoke);
  border-top: 1px solid rgba(201, 164, 92, 0.10);
  border-bottom: 1px solid rgba(201, 164, 92, 0.10);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
.review-card {
  background: rgba(10, 9, 8, 0.55);
  border: 1px solid rgba(201, 164, 92, 0.18);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -8px; left: 18px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.review-text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory);
  margin: 22px 0 18px;
  line-height: 1.5;
}
.review-author {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.review-stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
  flex-wrap: wrap;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 164, 92, 0.16);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 12px;
}

/* ---------- CTA CLOSER ---------- */
.cta-closer {
  text-align: center;
  background: linear-gradient(180deg, var(--bordeaux-deep) 0%, var(--ink) 100%);
  border-top: 1px solid rgba(201, 164, 92, 0.16);
}
.cta-closer h2 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  margin-bottom: 18px;
}
.cta-closer h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.cta-closer-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(201, 164, 92, 0.14);
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .logo { font-size: 1.3rem; }
.footer-brand p {
  margin-top: 18px;
  max-width: 32ch;
  font-size: 0.88rem;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; color: var(--ivory-dim); }
.footer-col a { color: var(--ivory-dim); }
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-mono {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ivory);
}
.footer-bottom {
  border-top: 1px solid rgba(201, 164, 92, 0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--ivory-dim);
}
.footer-bottom a { color: var(--ivory-dim); }

/* ---------- SERVICES PAGE ---------- */
.page-hero {
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(at 30% 20%, rgba(91, 14, 26, 0.30), transparent 50%),
    var(--ink);
  border-bottom: 1px solid rgba(201, 164, 92, 0.10);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 7vw, 6rem);
  max-width: 16ch;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.page-hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--ivory);
  opacity: 0.85;
  max-width: 50ch;
  margin: 20px 0 0;
}

.services-full {
  padding-top: clamp(60px, 8vw, 100px);
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card-large {
  background: rgba(43, 28, 20, 0.4);
  border: 1px solid rgba(201, 164, 92, 0.16);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--t-med) var(--ease);
  position: relative;
}
.service-card-large:hover {
  border-color: rgba(201, 164, 92, 0.40);
  background: rgba(43, 28, 20, 0.6);
}
.service-card-large h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
}
.service-card-large .service-meta {
  font-size: 0.9rem;
}
.service-card-large .service-desc {
  color: var(--ivory);
  opacity: 0.85;
  font-size: 1rem;
  line-height: 1.55;
}
.service-card-large .btn {
  margin-top: 10px;
  align-self: flex-start;
}

.services-strip {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--bordeaux-deep) 100%);
}

/* ---------- BOOK PAGE ---------- */
.book-stepper {
  max-width: 800px;
  margin: 0 auto;
}
.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 18px; left: 5%; right: 5%;
  height: 1px;
  background: rgba(201, 164, 92, 0.18);
  z-index: 0;
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--smoke);
  border: 1px solid rgba(201, 164, 92, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
}
.step.active .step-num {
  background: var(--gold);
  color: var(--ink);
}
.step-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: center;
}
.step.active .step-label { color: var(--ivory); }

.book-section {
  background: rgba(43, 28, 20, 0.3);
  border: 1px solid rgba(201, 164, 92, 0.14);
  padding: clamp(28px, 4vw, 52px);
  margin-bottom: 22px;
}
.book-section h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 20px;
}
.service-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--smoke);
  border: 1px solid rgba(201, 164, 92, 0.16);
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  font-size: 0.92rem;
}
.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.chip input { display: none; }
.chip.selected,
.chip:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201, 164, 92, 0.10);
  color: var(--ivory);
}
.chip-name { font-weight: 500; }
.chip-meta { font-family: var(--mono); font-size: 0.78rem; color: var(--gold); }

.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.book-form label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 8px;
}
.book-form input,
.book-form textarea,
.book-form select {
  width: 100%;
  background: var(--ink);
  border: 1px solid rgba(201, 164, 92, 0.18);
  color: var(--ivory);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.96rem;
  border-radius: 2px;
  transition: border-color var(--t-fast) var(--ease);
}
.book-form input:focus,
.book-form textarea:focus,
.book-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.book-form .full { grid-column: 1 / -1; }
.book-cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.book-note {
  font-size: 0.82rem;
  color: var(--ivory-dim);
  margin: 0;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}
.time-slot {
  text-align: center;
  background: var(--smoke);
  border: 1px solid rgba(201, 164, 92, 0.16);
  padding: 12px 8px;
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--ivory);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.time-slot:hover { border-color: var(--gold); color: var(--gold); }
.time-slot.selected {
  border-color: var(--gold);
  background: rgba(201, 164, 92, 0.12);
  color: var(--ivory);
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.contact-item {
  background: rgba(43, 28, 20, 0.3);
  border: 1px solid rgba(201, 164, 92, 0.14);
  padding: 22px 24px;
}
.contact-item dt {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-item dd {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ivory);
}
.contact-item .mono { font-family: var(--mono); }

.map-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(201, 164, 92, 0.18);
  filter: invert(0.92) hue-rotate(180deg) saturate(0.4);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav .btn-nav { display: none; }
  .bentley-grid,
  .story-grid,
  .setting-grid,
  .reviews-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .book-form { grid-template-columns: 1fr; }
  .service-chips { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { min-height: 92vh; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.6rem); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { gap: 8px; }
  .step-label { font-size: 0.62rem; }
  .review-stats { gap: 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video,
  .hero-media img,
  .reveal,
  .nav,
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Accessibility focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
