/* GOLDORO — Upholstered Platform Bed Frames */
/* Palette: cream base, warm taupe, muted gold accent, deep charcoal */

:root {
  --bg: #FAF6EE;
  --bg-alt: #F2EBDC;
  --bg-dark: #2C2826;
  --surface: #FFFFFF;
  --surface-warm: #F7F0E2;
  --ink: #2C2826;
  --ink-soft: #5C544D;
  --ink-mute: #8A7F73;
  --line: #E5DCC9;
  --line-soft: #EFE8D8;
  --gold: #C5A572;
  --gold-deep: #A68855;
  --gold-soft: #E8D5B5;
  --taupe: #C9B9A4;
  --blush: #E8D5C4;
  --rose-warm: #D9B59C;
  --shadow-sm: 0 2px 8px rgba(44, 40, 38, 0.06);
  --shadow-md: 0 8px 28px rgba(44, 40, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(44, 40, 38, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  line-height: 1.18;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--gold-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .25s ease;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: #fff;
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
}
.logo span { color: var(--gold-deep); }
.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-menu a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-deep); }
.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 9px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--gold-deep); color: #fff !important; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .2s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 246, 238, 0.4) 0%, rgba(250, 246, 238, 0.85) 100%),
    var(--bg-alt);
  padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--gold-soft) 0px, transparent 1px),
    radial-gradient(circle at 80% 70%, var(--blush) 0px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(197, 165, 114, 0.12);
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.7rem);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.hero-bullets li {
  padding-left: 28px;
  position: relative;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(197, 165, 114, 0.18);
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero-badge-rating {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-deep);
  font-weight: 500;
}
.hero-badge-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* ─── Trust strip ─── */
.trust-strip {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.75);
}

/* ─── Section base ─── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt {
  background: var(--surface-warm);
}
.section-dark {
  background: var(--bg-dark);
  color: var(--bg);
}
.section-dark h2, .section-dark h3 { color: var(--bg); }
.section-dark p { color: rgba(250, 246, 238, 0.78); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section-title {
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 60ch;
}
.section-dark .section-subtitle { color: rgba(250, 246, 238, 0.78); }
.section-dark .section-eyebrow { color: var(--gold); }

/* ─── Products grid (in tovars.php) ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.product-card a {
  display: block;
  color: var(--ink);
  padding: 0;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--surface-warm);
}
.product-card .product-body {
  padding: 20px 22px 24px;
}
.product-card .product-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.35;
  min-height: 3em;
  color: var(--ink);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.product-reviews {
  color: var(--ink-mute);
  font-weight: 400;
}
.product-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.product-bullets li {
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.4;
}
.product-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background .25s;
}
.product-card:hover .product-cta {
  background: var(--gold-deep);
}

/* ─── Benefits grid ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.benefit-card {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  transition: transform .3s ease, border-color .3s;
  position: relative;
}
.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--blush));
  color: var(--ink);
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.benefit-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.6;
}

/* ─── How it works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  box-shadow: 0 0 0 6px rgba(197, 165, 114, 0.12);
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.92rem;
  margin: 0;
}

/* ─── Features zigzag ─── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.feature-block.reverse {
  direction: rtl;
}
.feature-block.reverse > * { direction: ltr; }
.feature-block + .feature-block {
  border-top: 1px solid var(--line-soft);
}
.feature-text h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 18px;
}
.feature-text p {
  font-size: 1.02rem;
  margin-bottom: 22px;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.feature-bullets li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.feature-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--gold-deep);
  font-weight: 700;
  width: 22px;
  height: 22px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ─── Reviews ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--surface);
  padding: 28px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold-soft);
  line-height: 1;
  font-weight: 500;
}
.review-stars {
  color: var(--gold-deep);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.review-text {
  font-size: 0.96rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

/* ─── Conversion: fears ─── */
.fears-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.fear-card {
  background: var(--surface);
  padding: 28px 26px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.fear-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.fear-card p {
  font-size: 0.94rem;
  margin-bottom: 14px;
}
.fear-stat {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--gold-deep);
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(197, 165, 114, 0.12);
  border-radius: 999px;
}

/* ─── Comparison table ─── */
.comparison-wrap {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 720px;
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
.comparison-table thead th {
  background: var(--bg-alt);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.comparison-table thead th.brand-col {
  background: var(--gold);
  color: var(--ink);
}
.comparison-table td.brand-val {
  background: rgba(197, 165, 114, 0.08);
  font-weight: 600;
  color: var(--ink);
}
.comparison-table tbody tr:hover {
  background: var(--bg-alt);
}

/* ─── Mission values ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 28px;
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid rgba(197, 165, 114, 0.18);
  border-radius: var(--radius-md);
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ─── Personas (who-its-for) ─── */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.persona-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  position: relative;
}
.persona-emoji {
  width: 48px;
  height: 48px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.persona-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.persona-card p {
  font-size: 0.92rem;
  margin: 0;
}
.not-for {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border-left: 3px solid var(--ink);
}
.not-for h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.not-for ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.not-for li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.not-for li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--ink);
  font-weight: 700;
}

/* ─── Use cases ─── */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.use-case-card {
  background: var(--surface);
  padding: 28px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  transition: border-color .3s, transform .3s;
}
.use-case-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.use-case-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.use-case-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.use-case-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ─── Timeline (what-you-get) ─── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  z-index: 0;
}
.timeline-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.timeline-marker {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px var(--bg);
}
.timeline-when {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.timeline-step p {
  font-size: 0.92rem;
  margin: 0;
  text-align: left;
}

/* ─── Expert pick ─── */
.expert-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
  background: var(--surface);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
}
.expert-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
}
.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 14px 0 4px;
  text-align: center;
}
.expert-title {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.expert-quote {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}
.expert-tips {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.expert-tips li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--ink-soft);
}
.expert-tips li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold);
}
.expert-picks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.expert-pick-tag {
  background: var(--bg-alt);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink);
  border: 1px solid var(--line);
}
.expert-disclosure {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8rem;
  color: var(--ink-mute);
  font-style: italic;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 40px 22px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  position: relative;
  font-weight: 500;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  color: var(--gold-deep);
  font-weight: 300;
  transition: transform .3s;
}
.faq-item.open .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0 0 24px;
}
.faq-answer p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
  transition: transform .35s;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Newsletter ─── */
.newsletter {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0;
}
.newsletter-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.newsletter h2 {
  color: var(--bg);
  margin-bottom: 14px;
}
.newsletter p {
  color: rgba(250, 246, 238, 0.78);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(250, 246, 238, 0.2);
  background: rgba(250, 246, 238, 0.08);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.newsletter-input::placeholder { color: rgba(250, 246, 238, 0.5); }
.newsletter-input:focus { outline: 2px solid var(--gold); }

/* ─── Footer ─── */
.site-footer {
  background: #1F1B18;
  color: rgba(250, 246, 238, 0.72);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  color: var(--bg);
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: rgba(250, 246, 238, 0.7);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.5);
}
.affiliate-disclosure {
  font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.55);
  max-width: 720px;
  line-height: 1.6;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(250, 246, 238, 0.08);
}

/* ─── Cookie banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 540px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: none;
  align-items: center;
  gap: 18px;
  font-size: 0.88rem;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { margin: 0; color: rgba(250, 246, 238, 0.85); }
.cookie-accept {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-accept:hover { background: var(--gold-deep); color: #fff; }

/* ─── Sticky CTA bar ─── */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 16px 24px;
  z-index: 90;
  transition: bottom .35s;
  box-shadow: 0 -8px 30px rgba(44, 40, 38, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sticky-cta.visible { bottom: 0; }
.sticky-cta-text {
  font-size: 0.9rem;
}
.sticky-cta a {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}
.sticky-cta a:hover { background: var(--gold-deep); color: #fff; }
.sticky-close {
  background: none;
  border: none;
  color: rgba(250, 246, 238, 0.6);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0 4px;
}

/* ─── Inner page hero ─── */
.page-hero {
  background: var(--bg-alt);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto;
}

/* ─── Contact form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { font-size: 0.96rem; margin-bottom: 10px; }
.contact-form {
  background: var(--surface);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-success {
  display: none;
  background: #E8F5E5;
  color: #2D5A2A;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-size: 0.92rem;
}
.form-success.visible { display: block; }

/* ─── Legal pages ─── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}
.legal-content h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}
.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 28px;
}
.legal-content p { color: var(--ink-soft); }
.legal-meta {
  background: var(--bg-alt);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .hero-inner, .about-grid, .feature-block, .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature-block.reverse { direction: ltr; }
  .feature-block { padding: 30px 0; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .timeline::before { display: none; }
  .timeline-step { text-align: left; display: grid; grid-template-columns: 60px 1fr; align-items: start; gap: 20px; padding: 0; }
  .timeline-step p { font-size: 0.96rem; }
  .timeline-marker { margin: 0; }
  .expert-block {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 26px;
  }
  .expert-photo { max-width: 220px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section { padding: 70px 0; }
}

@media (max-width: 720px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 72px);
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 28px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transition: right .3s;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 50px 0 70px; }
  .section-head { margin-bottom: 40px; }
  .newsletter-form { flex-direction: column; }
  .sticky-cta { padding: 14px 18px; }
  .sticky-cta-text { font-size: 0.82rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
