:root {
  --navy: #0b1629;
  --navy-mid: #132038;
  --navy-light: #1e3254;
  --cream: #f5f0e8;
  --cream-mid: #ede7d9;
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --white: #ffffff;
  --text-cream: #e8e2d6;
  --text-muted: #8a97b0;
  --text-dim: #4a5568;
  --border: rgba(201,168,76,0.2);
  --border-light: rgba(255,255,255,0.08);
  --glow: 0 0 80px rgba(201,168,76,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text-cream);
  line-height: 1.7;
}

body::before {
  content: '';
  position: fixed;
  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: 1000;
  opacity: 0.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVIGATION ── */
.site-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.availability-banner {
  background: rgba(201,168,76,0.07);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  font-weight: 500;
}
.avail-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 8px;
  animation: pulse-dot 2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
header {
  background: rgba(11, 22, 41, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
header.scrolled {
  padding: 13px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: none;
  mix-blend-mode: lighten;
  display: block;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 170px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,50,84,0.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  gap: 32px;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.hero-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}
.hero-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-card-body {
  padding: 24px 28px 28px;
}
.hero-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.hero-card-role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.2);
}

/* ── SECTION COMMON ── */
section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  justify-content: center;
}
.page-hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 20px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ── SERVICES ── */
.services-section { background: var(--navy-mid); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.service-card {
  background: var(--navy-mid);
  padding: 36px 32px;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: var(--navy-light); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(201,168,76,0.15); }
.service-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ── SERVICES TEASER (landing page) ── */
.services-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-teaser-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.service-teaser-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.service-teaser-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  border-radius: 14px 14px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-teaser-card:hover::before { opacity: 1; }
.service-teaser-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.service-teaser-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-teaser-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}
.services-teaser-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-photo {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
  position: relative;
  z-index: 2;
}
.about-decoration {
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: -20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  z-index: 1;
}
.about-score {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 3;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
}
.score-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.score-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.about-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}
.about-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  background: radial-gradient(circle at center, rgba(201,168,76,0.2), transparent);
}

/* ── WHY ── */
.why-section { background: var(--navy-mid); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  padding: 36px 28px;
  background: var(--navy);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.why-numeral {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}
.t-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.3s;
}
.t-card:hover { border-color: var(--border); }
.t-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,168,76,0.1);
  position: absolute;
  top: 10px; left: 18px;
  font-style: italic;
}
.t-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-cream);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.t-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── CONTACT ── */
.contact-section { background: var(--navy-mid); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail a { color: var(--cream); transition: color 0.2s; }
.contact-detail a:hover { color: var(--gold-light); }
.contact-divider {
  border-top: 1px solid var(--border-light);
  margin: 28px 0;
}
.contact-form {
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}
.form-row { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 300;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { cursor: pointer; color: var(--cream); }
.form-select option { background: var(--navy-mid); }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  font-size: 0.88rem;
}
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success.show { display: block; }
.success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.success-text { font-size: 0.9rem; color: var(--text-muted); }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
}
.step { padding: 0 32px; text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s;
}
.step:hover .step-num { border-color: var(--gold); }
.step-num-inner {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ── PRICING ── */
.pricing-section { background: var(--navy-mid); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.pricing-card {
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 36px 28px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { border-color: var(--border); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--border); background: var(--navy-light); }
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.pricing-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.pricing-card:hover .pricing-top-line,
.pricing-card.featured .pricing-top-line { opacity: 1; }
.pricing-plan {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.65;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.price-currency {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  align-self: flex-start;
  margin-top: 6px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
  font-weight: 300;
  font-style: italic;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  margin-top: 56px;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:first-child, .faq-item:nth-child(2) { border-top: 1px solid var(--border-light); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
}
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.25s;
}
.faq-item.open .faq-icon {
  background: rgba(201,168,76,0.1);
  border-color: var(--border);
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.16,1,.3,1), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 14px; }

/* ── CTA BAND (inner pages) ── */
.cta-band {
  background: var(--navy-mid);
  padding: 90px 0;
  text-align: center;
}
.cta-band .section-label { justify-content: center; }
.cta-band .section-title { text-align: center; }
.cta-band-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.8;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── LANGUAGES STRIP ── */
.languages-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.lang-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-cream);
  font-weight: 400;
}
.lang-flag { font-size: 1rem; line-height: 1; }

/* ── FOOTER ── */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-copy {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 300;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 420px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-teaser-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 380px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .t-scroll { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(2) { border-top: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-teaser-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .t-scroll { grid-template-columns: 1fr; }
  .hero-proof { gap: 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .page-hero { padding: 130px 0 60px; }
}
