/* ═══════════════════════════════════════════════
   AMAVI SALON — LUXURY DESIGN SYSTEM
   amavisalons.in
   ═══════════════════════════════════════════════ */

/* ───────────────────────────────
   1. CUSTOM PROPERTIES
─────────────────────────────── */
:root {
  /* Brand palette — drawn from salon interiors */
  --emerald:       #2C4A3E;
  --emerald-deep:  #1E3831;
  --emerald-light: #3D6B5A;
  --gold:          #C4954A;
  --gold-light:    #DEB97A;
  --cream:         #F7F2EB;
  --cream-warm:    #EDE6DA;
  --white:         #FEFEFC;
  --charcoal:      #1C1C1C;
  --charcoal-mid:  #242424;
  --muted:         #8A8680;
  --border:        #E2DAD0;
  --walnut:        #6B3A2A;

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;
  --sp-3xl: 128px;

  /* Transitions */
  --ease:   cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
}

/* ───────────────────────────────
   2. RESET
─────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }
address { font-style: normal; }

/* ───────────────────────────────
   3. TYPOGRAPHY GLOBALS
─────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

p {
  color: var(--muted);
  line-height: 1.75;
}

/* Shared label / eyebrow */
.label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.label-light {
  color: rgba(196, 149, 74, 0.85);
}

/* ───────────────────────────────
   4. SCROLL REVEAL
─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ───────────────────────────────
   5. NAVIGATION
─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  /* Starts transparent over hero */
  background: transparent;
}

.nav.scrolled {
  background: rgba(254, 254, 252, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(28, 28, 28, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
}

/* Logo — white on hero, dark on scroll */
.nav-logo {
  color: var(--white);
  flex-shrink: 0;
  transition: color 0.35s var(--ease);
}

.nav.scrolled .nav-logo {
  color: var(--charcoal);
}

/* Nav links */
.nav-links {
  display: none;
  gap: 40px;
  color: rgba(254, 254, 252, 0.85);
  transition: color 0.35s var(--ease);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav.scrolled .nav-links {
  color: var(--charcoal);
}

.nav-links li a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.nav-links li a:hover {
  opacity: 0.55;
}

/* Book CTA */
.nav-book {
  display: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 11px 24px;
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
}

@media (min-width: 900px) {
  .nav-book { display: inline-flex; }
}

.nav-book:hover {
  background: var(--gold-light);
}

/* Ham */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.35s var(--ease), transform 0.25s var(--ease), opacity 0.25s;
}

.nav.scrolled .nav-toggle span {
  background: var(--charcoal);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav-toggle.open span:nth-child(2) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(28, 28, 28, 0.08);
}

.mobile-nav[hidden] { display: none; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.mobile-nav ul li a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
}

.mobile-nav-cta {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ───────────────────────────────
   6. HERO
─────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

/* Gradient overlay — lighter top, darker bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(28, 28, 28, 0.15) 0%,
    rgba(28, 28, 28, 0.08) 35%,
    rgba(28, 28, 28, 0.55) 70%,
    rgba(28, 28, 28, 0.80) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 clamp(32px, 7vw, 120px) clamp(64px, 10vh, 120px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196, 149, 74, 0.9);
  margin-bottom: 20px;
  animation: heroFadeUp 0.9s var(--ease-out) 0.2s both;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(38px, 6.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 40px;
  animation: heroFadeUp 0.9s var(--ease-out) 0.4s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
  animation: heroFadeUp 0.9s var(--ease-out) 0.6s both;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(254, 254, 252, 0.45);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeUp 1s var(--ease-out) 1s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───────────────────────────────
   7. MARQUEE
─────────────────────────────── */
.marquee-wrap {
  background: var(--emerald-deep);
  overflow: hidden;
  padding: 0;
  height: 44px;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 235, 0.6);
  padding: 0 24px;
}

.marquee-track .marquee-dot {
  color: var(--gold);
  padding: 0;
  font-size: 14px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───────────────────────────────
   8. BRAND STATEMENT
─────────────────────────────── */
.statement {
  background: var(--cream);
  padding: var(--sp-3xl) var(--sp-md);
  text-align: center;
}

.statement-inner {
  max-width: 760px;
  margin: 0 auto;
}

.statement-text {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: var(--sp-lg);
  letter-spacing: -0.01em;
}

.statement-text em {
  font-style: italic;
  color: var(--emerald);
}

.statement-sub {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto var(--sp-xl);
}

/* Metrics row */
.statement-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-xl);
  margin-top: var(--sp-xl);
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 56px);
}

.metric-n {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-l {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.metric-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

@media (max-width: 640px) {
  .statement-metrics { gap: 24px 0; }
  .metric { padding: 0 20px; }
  .metric-divider { display: none; }
}

/* ───────────────────────────────
   9. THE SPACE
─────────────────────────────── */
.space {
  background: var(--white);
  padding: var(--sp-3xl) 0 0;
}

.space-label {
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: 40px;
}

.space-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .space-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* Primary image — large */
.space-primary {
  position: relative;
  overflow: hidden;
}

.space-primary img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 30% center;
  display: block;
}

/* Secondary column: text + image */
.space-secondary {
  display: flex;
  flex-direction: column;
}

.space-text {
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
}

.space-text h2 {
  margin-bottom: 28px;
}

.space-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.space-secondary-img {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 360px;
}

.space-secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.8s var(--ease);
}

.space-secondary-img:hover img {
  transform: scale(1.04);
}

/* Photo caption */
.space-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(28, 28, 28, 0.7));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.space-caption span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(254, 254, 252, 0.7);
}

.space-caption span:first-child {
  font-weight: 500;
  color: rgba(254, 254, 252, 0.95);
}

/* ───────────────────────────────
   10. SERVICES
─────────────────────────────── */
.services {
  background: var(--white);
  padding: var(--sp-3xl) clamp(24px, 5vw, 80px);
}

.section-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto var(--sp-2xl);
}

.section-header h2 {
  margin-bottom: 0;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.service-card:hover {
  background: var(--cream);
}

.service-num {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: 0;
}

.service-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.service-card ul {
  margin-bottom: 20px;
}

.service-card ul li {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}

.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 6px;
}

.service-price {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.service-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.service-link:hover { opacity: 0.65; }

/* ───────────────────────────────
   11. DAVINES
─────────────────────────────── */
.davines {
  background: var(--emerald);
  padding: var(--sp-3xl) clamp(24px, 5vw, 80px);
}

.davines-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 900px) {
  .davines-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.davines-text .section-header {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.davines-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.davines-text p {
  color: rgba(247, 242, 235, 0.65);
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 20px;
}

/* Outline button — light version */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196, 149, 74, 0.4);
  padding: 14px 30px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(196, 149, 74, 0.1);
}

.davines-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
}

.davines-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  transition: transform 0.8s var(--ease);
}

.davines-img:hover img {
  transform: scale(1.04);
}

/* Davines badge */
.davines-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(30, 56, 49, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 149, 74, 0.3);
  padding: 14px 18px;
  text-align: center;
  border-radius: var(--r-sm);
}

.davines-badge-text {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.9;
}

/* ───────────────────────────────
   12. CONSULTATION JOURNEY
─────────────────────────────── */
.journey {
  background: var(--charcoal-mid);
  padding: var(--sp-3xl) clamp(24px, 5vw, 80px);
}

.journey .section-header {
  color: var(--cream);
}

.journey .section-header h2 {
  color: var(--cream);
}

.journey .section-header p {
  color: rgba(247, 242, 235, 0.5);
}

.h2.light, h2.light {
  color: var(--cream);
}

.journey-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .journey-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.journey-step {
  padding: 48px 40px;
  border-top: 1px solid rgba(196, 149, 74, 0.15);
  border-right: 1px solid rgba(196, 149, 74, 0.08);
}

.journey-step:first-child { padding-left: 0; }
.journey-step:last-child { border-right: none; padding-right: 0; }

@media (max-width: 767px) {
  .journey-step { padding: 36px 0; border-right: none; border-bottom: 1px solid rgba(196, 149, 74, 0.1); }
  .journey-step:last-child { border-bottom: none; }
  .journey-step:first-child { padding-left: 0; }
}

.journey-n {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: rgba(196, 149, 74, 0.14);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.journey-step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: 0;
}

.journey-step p {
  font-size: 14px;
  color: rgba(247, 242, 235, 0.5);
  line-height: 1.78;
}

.journey-cta {
  max-width: 1100px;
  margin: 64px auto 0;
  text-align: center;
}

/* Buttons */
.btn-primary-light {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 16px 40px;
  border-radius: 2px;
  transition: background 0.22s var(--ease), transform 0.18s var(--ease);
}

.btn-primary-light:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-primary-light--sm {
  padding: 13px 28px;
  font-size: 11px;
}

/* ───────────────────────────────
   13. TESTIMONIALS
─────────────────────────────── */
.testimonials {
  background: var(--white);
  padding: var(--sp-3xl) clamp(24px, 5vw, 80px);
}

.testi-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 2px solid var(--border);
}

@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-card:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .testi-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
  }
  .testi-card:last-child { border-bottom: none; }
}

.testi-stars {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
}

.testi-card blockquote {
  flex: 1;
}

.testi-card blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
}

.testi-card footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testi-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.testi-service {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.testi-cta {
  max-width: 1200px;
  margin: 48px auto 0;
  text-align: center;
}

/* Outline button — dark */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid rgba(28, 28, 28, 0.25);
  padding: 14px 32px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ───────────────────────────────
   14. FULL-WIDTH BANNER
─────────────────────────────── */
.banner {
  position: relative;
  height: clamp(300px, 45vh, 520px);
  overflow: hidden;
}

.banner-img {
  position: absolute;
  inset: 0;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.55);
}

.banner-text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(24px, 6vw, 80px);
}

.banner-text p {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

.banner-text p em {
  font-style: italic;
  color: var(--gold-light);
}

/* ───────────────────────────────
   15. TEAM
─────────────────────────────── */
.team {
  background: var(--cream);
  padding: var(--sp-3xl) clamp(24px, 5vw, 80px);
}

.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.team-member {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .team-member {
    grid-template-columns: 280px 1fr;
    gap: 64px;
  }
  .team-member--alt {
    grid-template-columns: 1fr 280px;
  }
  .team-member--alt .team-photo {
    order: 2;
  }
  .team-member--alt .team-bio {
    order: 1;
  }
}

/* Team headshots */
.team-photo {
  width: 100%;
  max-width: 280px;
}

.team-headshot {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-sm);
  display: block;
}

/* Bio */
.team-bio h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.team-title {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.team-creds {
  margin-bottom: 24px;
}

.team-creds li {
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0 7px 16px;
  border-left: 2px solid var(--border);
  margin-bottom: 6px;
  line-height: 1.5;
}

.team-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  border: none;
  padding: 0;
  margin: 0 0 24px;
  line-height: 1.65;
}

.team-quote::before { content: '"'; }
.team-quote::after  { content: '"'; }

.team-book {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s;
}

.team-book:hover { opacity: 0.6; }

/* ───────────────────────────────
   16. INSTAGRAM
─────────────────────────────── */
.instagram {
  background: var(--white);
  padding: var(--sp-3xl) clamp(24px, 5vw, 80px);
}

.ig-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

behold-widget {
  --columns: 4;
  --gap: 4px;
  --border-radius: 0px;
  display: block;
  width: 100%;
}

@media (max-width: 599px) {
  behold-widget { --columns: 3; }
}

.ig-cta {
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: center;
}

/* ───────────────────────────────
   17. FAQ
─────────────────────────────── */
.faq {
  background: var(--cream);
  padding: var(--sp-3xl) clamp(24px, 5vw, 80px);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 900px) {
  .faq-inner {
    grid-template-columns: 280px 1fr;
    gap: 80px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s;
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--muted);
}

/* ───────────────────────────────
   18. FIND US
─────────────────────────────── */
.find-us {
  background: var(--emerald-deep);
  padding: 0;
}

.find-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}

@media (min-width: 900px) {
  .find-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.find-map {
  min-height: 320px;
}

.find-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.find-info {
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px);
}

.find-info h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.find-detail {
  margin-bottom: 28px;
}

.find-detail-label {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.find-detail address,
.find-detail p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(247, 242, 235, 0.65);
}

.find-detail a {
  color: rgba(247, 242, 235, 0.65);
  transition: color 0.2s;
}

.find-detail a:hover {
  color: var(--gold-light);
}

.find-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-outline-light--sm {
  padding: 12px 24px;
  font-size: 10px;
}

/* ───────────────────────────────
   19. FINAL CTA
─────────────────────────────── */
.final-cta {
  background: var(--cream-warm);
  padding: var(--sp-3xl) clamp(24px, 5vw, 80px);
  text-align: center;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.final-cta > .final-cta-inner > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 44px;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--emerald);
  padding: 18px 44px;
  border-radius: 2px;
  transition: background 0.22s var(--ease), transform 0.18s var(--ease);
}

.btn-hero:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid rgba(28, 28, 28, 0.2);
  padding: 18px 36px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ───────────────────────────────
   20. FOOTER
─────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: var(--sp-2xl) clamp(24px, 5vw, 64px) 0;
  border-top: 1px solid rgba(196, 149, 74, 0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; }
}

/* Brand column */
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(247, 242, 235, 0.45);
  margin: 20px 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 149, 74, 0.25);
  border-radius: 50%;
  color: rgba(247, 242, 235, 0.55);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* Column headings */
.footer-col-head {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Column lists */
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-contact-list li a {
  font-size: 13px;
  color: rgba(247, 242, 235, 0.5);
  transition: color 0.15s, padding-left 0.15s;
  display: inline-block;
}

.footer-col ul li a:hover,
.footer-contact-list li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-address {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(247, 242, 235, 0.5);
  margin-bottom: 8px;
}

.footer-hours {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(196, 149, 74, 0.55);
  margin-bottom: 0;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-book {
  display: inline-block;
  padding: 11px 22px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  border-radius: 2px;
  transition: background 0.2s;
}

.footer-book:hover { background: var(--gold-light); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 24px 0 32px;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer-copy {
  font-size: 11px;
  color: rgba(247, 242, 235, 0.25);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(247, 242, 235, 0.3);
  transition: color 0.15s;
}

.footer-legal a:hover { color: var(--gold); }

/* ───────────────────────────────
   21. MOBILE STICKY BAR
─────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(196, 149, 74, 0.15);
  height: 54px;
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 767px) {
  .mobile-bar { display: block; }
  body { padding-bottom: 54px; }
}

.mobile-bar-inner {
  display: flex;
  height: 54px;
}

.mb-book, .mb-call, .mb-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}

.mb-book {
  background: var(--gold);
  color: var(--charcoal);
  flex: 1.4;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.mb-book:hover { background: var(--gold-light); color: var(--charcoal); }

.mb-call {
  color: rgba(247, 242, 235, 0.7);
  border-right: 1px solid rgba(196, 149, 74, 0.1);
}

.mb-call:hover { background: rgba(196, 149, 74, 0.08); color: var(--cream); }

.mb-wa {
  color: rgba(247, 242, 235, 0.7);
}

.mb-wa:hover { background: rgba(196, 149, 74, 0.08); color: var(--cream); }

/* ───────────────────────────────
   22. ACCESSIBILITY
─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ───────────────────────────────
   23. SELECTION
─────────────────────────────── */
::selection {
  background: rgba(196, 149, 74, 0.2);
  color: var(--charcoal);
}
