/* ═══════════════════════════════════════
   Dr. Kambiz Yaraei — Main Stylesheet
   Fonts: Cormorant Garamond + DM Sans
   Colors: See :root CSS variables at top
═══════════════════════════════════════ */

/* ═══════════════════════════════════════════
       CSS CUSTOM PROPERTIES — Design Tokens
    ═══════════════════════════════════════════ */
:root {
  --obsidian: #0D1117;
  --graphite: #1C2333;
  --graphite-2: #242C3D;
  --steel: #4A5568;
  --mist: #F5F4F0;
  --white: #FFFFFF;
  --gold: #B8975A;
  --gold-light: #D4B37A;
  --gold-dim: rgba(184, 151, 90, 0.15);
  --ice: #C8D8E8;
  --text-dark: #0D1117;
  --text-muted: #6B7280;
  --border: rgba(184, 151, 90, 0.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 3px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 40px rgba(184, 151, 90, 0.12);
}

/* ═══════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--obsidian);
  color: var(--mist);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Grain overlay on dark sections */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════
       UTILITY
    ═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--obsidian);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 151, 90, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 1px solid rgba(245, 244, 240, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}



/* ═══════════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-monogram {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-monogram svg {
  width: 22px;
  height: 22px;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mist);
  line-height: 1.2;
}

.nav-title-small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.65);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--mist);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.55rem 1.25rem;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--obsidian) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--mist);
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--obsidian);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--mist);
  letter-spacing: 0.05em;
  transition: color 0.25s;
}

.nav-mobile a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--obsidian);
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 151, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 151, 90, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse at center, rgba(184, 151, 90, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(ellipse at center, rgba(200, 216, 232, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-pre {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-pre::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--mist);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 244, 240, 0.65);
  max-width: 560px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 244, 240, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
  cursor: pointer;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}



/* ═══════════════════════════════════════════
       TRUST BAR
    ═══════════════════════════════════════════ */
#trust-bar {
  background: var(--graphite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.5rem;
  border-right: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.55);
  transition: color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  color: var(--gold);
}

.trust-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}








/* ═══════════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════════ */
#services {
  padding: 7rem 0;
  background: var(--obsidian);
  position: relative;
}

.services-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.services-header .section-heading {
  color: var(--mist);
}

.services-header p {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 244, 240, 0.55);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* 10th card spans full width as featured bottom card */
.services-grid .service-card:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 2rem;
  align-items: start;
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
}

.services-grid .service-card:last-child .service-icon {
  grid-row: 1 / 3;
  align-self: center;
  margin-bottom: 0;
}

.services-grid .service-card:last-child h3 {
  align-self: end;
  margin-bottom: 0.4rem;
}

.services-grid .service-card:last-child p {
  grid-column: 2;
  max-width: 700px;
}

/* Gold left accent on featured card */
.services-grid .service-card:last-child::after {
  display: none;
}

.services-grid .service-card:last-child::before {
  content: 'Featured Service';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}


.service-card {
  background: var(--obsidian);
  padding: 2.5rem 2rem;
  transition: background 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--graphite);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.service-card:hover .service-icon {
  border-color: var(--gold);
}

.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--mist);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(245, 244, 240, 0.5);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════════ */
#about {
  padding: 7rem 0;
  background: var(--mist);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.about-left {
  position: sticky;
  top: 100px;
}

.about-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 340px;
  background: var(--graphite-2);
  overflow: hidden;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(245, 244, 240, 0.2);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-photo-placeholder svg {
  width: 60px;
  height: 60px;
  stroke: rgba(184, 151, 90, 0.3);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-offset-line {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid rgba(184, 151, 90, 0.2);
  z-index: 0;
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  max-width: 340px;
}

.stat-chip {
  background: var(--mist);
  padding: 1.1rem 1rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.3rem;
}

.about-right .section-label {
  color: var(--gold);
}

.about-right .section-heading {
  color: var(--text-dark);
}

.about-bio p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #3a4050;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #3a4050;
  line-height: 1.5;
}

.highlight-row svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ═══════════════════════════════════════════
       IMPACT NUMBERS
    ═══════════════════════════════════════════ */
#impact {
  background: var(--graphite);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.impact-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.impact-item:last-child {
  border-right: none;
}

.impact-item:hover {
  background: rgba(184, 151, 90, 0.04);
}

.impact-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.45);
}

/* ═══════════════════════════════════════════
       QUALIFICATIONS
    ═══════════════════════════════════════════ */
#qualifications {
  padding: 7rem 0;
  background: var(--obsidian);
  position: relative;
}

.qual-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4.5rem;
}

.qual-header .section-label {
  justify-content: center;
}

.qual-header .section-heading {
  color: var(--mist);
}

.qual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.qual-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.qual-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.qual-card:hover::after {
  opacity: 1;
}

.qual-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mist);
  margin-bottom: 0.4rem;
}

.qual-card-sub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.qual-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qual-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(245, 244, 240, 0.65);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(184, 151, 90, 0.07);
}

.qual-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qual-list-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.qual-list-item span:last-child {
  flex: 1;
  line-height: 1.45;
}

.qual-list-item span:last-child {
  flex: 1;
  line-height: 1.45;
}

.qual-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 0.2rem 0;
  border: 1px solid rgba(184, 151, 90, 0.3);
  white-space: nowrap;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  text-align: center;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════ */
#testimonials {
  padding: 7rem 0;
  background: var(--mist);
}

.testimonials-header {
  max-width: 560px;
  margin-bottom: 4rem;
}

.testimonials-header .section-heading {
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 2.5rem;
  position: relative;
  transition: box-shadow 0.35s, transform 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #3a4050;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testimonial-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.testimonial-role {
  font-size: 0.72rem;
  color: var(--steel);
  margin-top: 0.2rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
#faq {
  padding: 7rem 0;
  background: var(--obsidian);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.faq-left .section-heading {
  color: var(--mist);
}

.faq-left p {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245, 244, 240, 0.5);
  font-weight: 300;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--mist);
  transition: color 0.25s;
  user-select: none;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.35s, opacity 0.35s;
}

.faq-icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(245, 244, 240, 0.55);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
       BOOKING
    ═══════════════════════════════════════════ */
#booking {
  padding: 7rem 0;
  background: var(--graphite-2);
  border-top: 1px solid var(--border);
}

.booking-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.booking-header .section-label {
  justify-content: center;
}

.booking-header .section-heading {
  color: var(--mist);
}

.booking-header p {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 244, 240, 0.55);
  font-weight: 300;
}

.booking-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.booking-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(245, 244, 240, 0.5);
}

.booking-trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}

.booking-widget-wrap {
  background: var(--graphite);
  border: 1px solid var(--border);
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.booking-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 480px;
}

.booking-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: 0.7;
}

.booking-placeholder h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--mist);
  margin-bottom: 0.75rem;
}

.booking-placeholder p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(245, 244, 240, 0.45);
  margin-bottom: 1.5rem;
}

.booking-placeholder code {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  background: rgba(184, 151, 90, 0.1);
  color: var(--gold);
  padding: 0.75rem 1.25rem;
  display: block;
  border: 1px solid var(--border);
  text-align: left;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
       PHASE 4 GUIDE (shown inline as a section)
    ═══════════════════════════════════════════ */
#integration-guide {
  padding: 5rem 0;
  background: var(--obsidian);
  border-top: 1px solid var(--border);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.guide-left .section-heading {
  color: var(--mist);
  font-size: 1.8rem;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.guide-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mist);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.83rem;
  line-height: 1.75;
  color: rgba(245, 244, 240, 0.5);
  font-weight: 300;
}

.step-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
#footer {
  background: var(--graphite);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-brand .nav-monogram {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(245, 244, 240, 0.45);
  font-weight: 300;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(245, 244, 240, 0.5);
  font-weight: 300;
  transition: color 0.25s;
}

.footer-col ul a:hover {
  color: var(--mist);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(245, 244, 240, 0.5);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(245, 244, 240, 0.3);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.72rem;
  color: rgba(245, 244, 240, 0.3);
  letter-spacing: 0.08em;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════
       FLOATING CTA (Mobile)
    ═══════════════════════════════════════════ */
#floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--gold);
  color: var(--obsidian);
  text-align: center;
  padding: 1.1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  cursor: pointer;
}

#floating-cta.show {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */