/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --cream:       #faf7f2;
  --sand:        #e8dcc8;
  --sand-light:  #f2ebe0;
  --ochre:       #c8863a;
  --ochre-deep:  #a06428;
  --ochre-pale:  rgba(200,134,58,0.10);
  --tile:        #1e3040;
  --tile-dark:   #141f2b;
  --tile-mid:    #2a4357;
  --ink:         #1a1510;
  --smoke:       #6b6057;
  --gold:        #c8a96e;
  --gold-light:  #e2c990;
  --gold-pale:   rgba(200,169,110,0.18);
  --border:      rgba(200,169,110,0.22);
  --border-mid:  rgba(200,169,110,0.40);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', sans-serif;
  --ease:        cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity: 0.5;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   NAVIGATION
============================================================ */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s var(--ease);
}
.main-nav.scrolled { box-shadow: 0 4px 40px rgba(30,48,64,0.08); }

/* ── Desktop: lang + cta in one row ── */
.nav-center-stack {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  position: static;      /* ← ADD THIS */
  transform: none;       /* ← ADD THIS */
}
.nav-container {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  height: 72px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}

/* Wordmark */
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tile); white-space: nowrap; flex-shrink: 0;
}
.nav-logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo span { color: var(--ochre); }

/* Nav links */
.nav-links {
  display: flex; gap: 38px; list-style: none;
}
.nav-links a {
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--smoke); position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--ochre); transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--ochre); }
.nav-links a:hover::after { width: 100%; }

/* Right group */
.nav-right {
  display: flex; align-items: center; gap: 16px;
}

/* Language switcher */
.language-switcher {
  display: flex; gap: 3px;
  background: var(--sand-light); padding: 4px;
  border: 1px solid var(--border); border-radius: 3px;
}
.lang-btn {
  background: transparent; border: none;
  color: var(--smoke); font-family: var(--sans);
  font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.12em; padding: 5px 11px;
  border-radius: 2px; cursor: pointer; transition: all 0.25s;
}
.lang-btn:hover { background: var(--ochre-pale); color: var(--ochre); }
.lang-btn.active {
  background: var(--tile); color: var(--gold-light);
  box-shadow: 0 2px 8px rgba(30,48,64,0.2);
}

/* Nav CTA */
.nav-cta {
  background: var(--tile); color: var(--gold-light) !important;
  padding: 10px 24px; border: 1px solid var(--tile);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.35s var(--ease); white-space: nowrap;
}
.nav-cta:hover {
  background: transparent; color: var(--tile) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--tile); border-radius: 2px;
  transition: all 0.3s var(--ease); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.mobile-drawer.open { max-height: 260px; }
.mobile-drawer ul { list-style: none; padding: 12px 0 20px; }
.mobile-drawer ul li a {
  display: block; padding: 14px 24px;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--smoke); border-bottom: 1px solid var(--border);
  transition: color 0.25s, background 0.25s;
}
.mobile-drawer ul li a:hover { color: var(--ochre); background: var(--ochre-pale); }
.mobile-drawer ul li:last-child a { border-bottom: none; }

/* ============================================================
   SHARED SECTION UTILITIES
============================================================ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--ochre);
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.centered::before { display: none; }
.section-eyebrow.centered::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--ochre);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 300; color: var(--tile);
  line-height: 1.2;
}
.section-title.light { color: var(--sand); }
.section-title em { font-style: italic; color: var(--ochre); }
.section-title.light em { color: var(--gold-light); }

.section-subtitle {
  font-size: 0.98rem; font-weight: 300;
  color: var(--smoke); line-height: 1.82;
  max-width: 520px; margin: 14px auto 0;
}

/* Ornamental divider */
.ornament {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; max-width: 80px;
  height: 1px; background: var(--border-mid);
}
.ornament-sym { color: var(--ochre); font-size: 0.75rem; letter-spacing: 6px; }

/* Shared buttons */
.btn-primary {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ochre); color: var(--cream) !important;
  padding: 17px 40px; border: 1px solid var(--ochre);
  font-family: var(--sans); font-size: 0.73rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.35s var(--ease);
  box-shadow: 0 6px 24px rgba(200,134,58,0.25);
}
.btn-primary:hover {
  background: var(--ochre-deep); border-color: var(--ochre-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,134,58,0.32);
}
.btn-primary.large { padding: 20px 52px; font-size: 0.78rem; }

.btn-arrow { font-size: 1.1rem; transition: transform 0.35s; }
.btn-primary:hover .btn-arrow { transform: translateX(6px); }

.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--tile) !important;
  padding: 15px 38px; border: 1px solid var(--tile);
  font-family: var(--sans); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.35s var(--ease);
}
.btn-secondary:hover {
  background: var(--tile); color: var(--gold-light) !important;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,48,64,0.18);
}

/* Discount badge */
.discount-badge {
  position: absolute; top: -11px; right: -11px;
  background: #c0392b; color: #fff;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 9px;
  box-shadow: 0 2px 10px rgba(192,57,43,0.4);
  animation: pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
  z-index: 5;
}
@keyframes pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============================================================
   HERO — SPLIT SCREEN
============================================================ */
.hero-section {
  min-height: 100vh;
  display: grid; grid-template-columns: 55% 45%;
  padding-top: 72px;
  position: relative; overflow: hidden;
}

/* LEFT */
.hero-left {
  background: var(--tile);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 80px;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(200,134,58,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(200,169,110,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(200,169,110,0.05)' stroke-width='0.5'%3E%3Cpolygon points='30,4 56,18 56,42 30,56 4,42 4,18'/%3E%3Cpolygon points='30,14 46,23 46,37 30,46 14,37 14,23'/%3E%3Cline x1='30' y1='4' x2='30' y2='14'/%3E%3Cline x1='56' y1='18' x2='46' y2='23'/%3E%3Cline x1='56' y1='42' x2='46' y2='37'/%3E%3Cline x1='30' y1='56' x2='30' y2='46'/%3E%3Cline x1='4' y1='42' x2='14' y2='37'/%3E%3Cline x1='4' y1='18' x2='14' y2='23'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  animation: fadeInUp 0.9s var(--ease) both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 300; line-height: 1.08;
  color: var(--sand); margin-bottom: 26px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-subtitle {
  font-size: 1rem; font-weight: 300; line-height: 1.82;
  color: rgba(232,220,200,0.72); max-width: 440px; margin-bottom: 44px;
}
.hero-subtitle strong { color: var(--gold-light); font-weight: 500; }

/* Stats */
.hero-stats {
  display: flex; gap: 0;
  padding: 28px 0;
  border-top: 1px solid rgba(200,169,110,0.18);
  border-bottom: 1px solid rgba(200,169,110,0.18);
  margin-bottom: 44px;
}
.stat-item {
  flex: 1; text-align: center; padding: 0 16px;
  border-right: 1px solid rgba(200,169,110,0.14);
}
.stat-item:first-child { padding-left: 0; text-align: left; }
.stat-item:last-child  { border-right: none; }
.stat-number {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: var(--gold-light); line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(200,169,110,0.45);
}

/* CTA group */
.hero-cta-group { margin-bottom: 30px; }
.trust-signals {
  display: flex; gap: 22px; margin-top: 15px;
  font-size: 0.74rem; font-weight: 400;
  color: rgba(200,169,110,0.45); letter-spacing: 0.06em;
}
.payment-methods { margin-top: 24px; }
.payment-methods img { max-width: 200px; opacity: 0.45; filter: brightness(2); }

/* RIGHT */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--tile-dark);
  display: flex; align-items: center; justify-content: center;
}
.hero-right-zellige {
  position: absolute; inset: 0;
  background-color: #162230;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cdefs%3E%3Cstyle%3E.gold%7Bstroke:%23c8a96e;stroke-width:0.6;fill:none%7D.dim%7Bstroke:rgba(200,169,110,0.18);stroke-width:0.4;fill:none%7D.fill-a%7Bfill:rgba(200,134,58,0.07)%7D.fill-b%7Bfill:rgba(30,48,64,0.6)%7D.fill-c%7Bfill:rgba(200,169,110,0.05)%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='fill-a' points='60,34 69,43 80,40 77,51 86,60 77,69 80,80 69,77 60,86 51,77 40,80 43,69 34,60 43,51 40,40 51,43'/%3E%3Cpolygon class='gold' points='60,34 69,43 80,40 77,51 86,60 77,69 80,80 69,77 60,86 51,77 40,80 43,69 34,60 43,51 40,40 51,43'/%3E%3Cpolygon class='fill-c' points='60,42 67,49 75,49 75,57 68,64 75,71 75,79 67,79 60,86 53,79 45,79 45,71 38,64 45,57 45,49 53,49'/%3E%3Cline class='dim' x1='60' y1='0' x2='60' y2='34'/%3E%3Cline class='dim' x1='60' y1='86' x2='60' y2='120'/%3E%3Cline class='dim' x1='0' y1='60' x2='34' y2='60'/%3E%3Cline class='dim' x1='86' y1='60' x2='120' y2='60'/%3E%3Cline class='dim' x1='0' y1='0' x2='40' y2='40'/%3E%3Cline class='dim' x1='80' y1='40' x2='120' y2='0'/%3E%3Cline class='dim' x1='0' y1='120' x2='40' y2='80'/%3E%3Cline class='dim' x1='80' y1='80' x2='120' y2='120'/%3E%3Cpolygon class='fill-a' points='0,0 14,0 0,14'/%3E%3Cpolygon class='fill-a' points='120,0 106,0 120,14'/%3E%3Cpolygon class='fill-a' points='0,120 14,120 0,106'/%3E%3Cpolygon class='fill-a' points='120,120 106,120 120,106'/%3E%3Crect class='dim' x='0' y='0' width='20' height='20' transform='rotate(45,10,10)'/%3E%3Crect class='dim' x='100' y='0' width='20' height='20' transform='rotate(45,110,10)'/%3E%3Crect class='dim' x='0' y='100' width='20' height='20' transform='rotate(45,10,110)'/%3E%3Crect class='dim' x='100' y='100' width='20' height='20' transform='rotate(45,110,110)'/%3E%3Ccircle class='dim' cx='60' cy='60' r='38'/%3E%3Ccircle class='dim' cx='60' cy='60' r='28'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}
.hero-right-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 70% at 50% 52%, transparent 0%, rgba(14,22,32,0.55) 60%, rgba(14,22,32,0.88) 100%);
  pointer-events: none;
}
.hero-right-glow {
  position: absolute;
  width: 340px; height: 420px;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,134,58,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.hero-book-wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.hero-book-mockup {
  width: 440px;
  filter: drop-shadow(0 32px 60px rgba(0,0,0,0.55)) drop-shadow(0 8px 20px rgba(200,134,58,0.18));
  animation: bookFloat 6s ease-in-out infinite;
}
.hero-book-mockup img { width: 100%; border-radius: 6px; transition: opacity 0.35s ease; }

@keyframes bookFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  color: var(--tile);
  padding: 10px 18px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  border-left: 3px solid var(--ochre);
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 3;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.badge-1 { top: 28%; right: 14%; animation-delay: 0s; }
.badge-2 {
  top: 50%; left: 5%; transform: translateY(-50%);
  animation-delay: 1.4s;
  background: var(--ochre); color: var(--cream);
  border-left: none; border-right: 3px solid rgba(255,255,255,0.25);
}
.badge-3 { bottom: 28%; right: 1%; animation-delay: 0.7s; }

/* ============================================================
   MARQUEE
============================================================ */
.marquee-wrap {
  background: var(--tile-dark);
  border-top: 1px solid rgba(200,169,110,0.12);
  border-bottom: 1px solid rgba(200,169,110,0.12);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 18px;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(200,169,110,0.55); white-space: nowrap;
}
.marquee-dot { font-size: 0.4rem; color: var(--ochre); }

/* ============================================================
   BOOK SELECTOR
============================================================ */
.book-selector-section {
  background: var(--sand-light);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.selector-label {
  text-align: center;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 32px;
}
.book-thumbnails { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.book-thumb {
  cursor: pointer; text-align: center;
  padding: 18px 20px; border: 1px solid var(--border);
  background: var(--cream); transition: all 0.35s var(--ease);
}
.book-thumb:hover { transform: translateY(-8px); box-shadow: 0 14px 36px rgba(30,48,64,0.10); }
.book-thumb.active {
  border-color: var(--ochre);
  box-shadow: 0 8px 28px rgba(200,134,58,0.18);
  transform: translateY(-5px);
}
.book-thumb img { width: 150px; border-radius: 3px; margin-bottom: 14px; }
.thumb-label {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--tile);
}
.book-thumb.active .thumb-label { color: var(--ochre); }


/* ============================================================
   PROBLEM SECTION
============================================================ */
.problem-section { padding: 110px 0; background: var(--cream); }

.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 22px; margin-bottom: 44px;
}
.problem-card {
  background: var(--cream);
  border: 1px solid var(--border); border-top: none;
  padding: 36px 30px; position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--ochre);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(30,48,64,0.09); }
.problem-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
  color: rgba(200,169,110,0.15); line-height: 1; margin-bottom: 18px;
}
.problem-card h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  color: var(--tile); margin-bottom: 10px;
}
.problem-card p { color: var(--smoke); font-size: 0.9rem; font-weight: 300; line-height: 1.75; }

.solution-callout {
  background: var(--tile); padding: 40px 48px;
  display: flex; align-items: center; gap: 32px;
  position: relative; overflow: hidden;
}
.solution-callout::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--ochre);
}
.solution-callout::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 100% 50%, rgba(200,134,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.solution-icon { font-size: 2.4rem; flex-shrink: 0; }
.solution-text {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 300;
  font-style: italic; color: var(--sand); line-height: 1.6;
}
.solution-text strong { color: var(--gold-light); font-style: normal; font-weight: 400; }

/* ============================================================
   WHY DIFFERENT
============================================================ */
.why-different-section { padding: 110px 0; background: #fff; }
.why-header { text-align: center; margin-bottom: 72px; }

.feature-large {
  background: var(--tile); padding: 64px 72px;
  text-align: center; margin-bottom: 24px;
  position: relative; overflow: hidden;
}
.feature-large::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(200,134,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.feature-large::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(200,169,110,0.04)' stroke-width='0.5'%3E%3Cpolygon points='30,4 56,18 56,42 30,56 4,42 4,18'/%3E%3Cpolygon points='30,14 46,23 46,37 30,46 14,37 14,23'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.feature-large-inner { position: relative; z-index: 1; }
.feature-icon-large { font-size: 3rem; margin-bottom: 22px; }
.feature-large h3 {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--sand); margin-bottom: 16px;
}
.feature-large p {
  font-size: 1rem; font-weight: 300; line-height: 1.82;
  color: rgba(232,220,200,0.72); max-width: 680px; margin: 0 auto;
}

.feature-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.feature-small {
  background: var(--cream);
  border: 1px solid var(--border); border-top: 3px solid var(--gold);
  padding: 38px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature-small:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(30,48,64,0.09); }
.feature-icon-small { font-size: 2rem; margin-bottom: 14px; }
.feature-small h4 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  color: var(--tile); margin-bottom: 10px;
}
.feature-small p { color: var(--smoke); font-size: 0.9rem; font-weight: 300; line-height: 1.75; }

/* ============================================================
   WHAT'S INSIDE
============================================================ */
.whats-inside-section { padding: 110px 0; background: var(--sand-light); }
.inside-header { text-align: center; margin-bottom: 72px; }

.content-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
  gap: 26px;
}
.content-item {
  background: var(--cream);
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
  padding: 40px 32px; position: relative;
  transition: all 0.35s var(--ease);
}
.content-item:hover {
  transform: translateY(-8px); border-left-color: var(--ochre);
  box-shadow: 0 16px 44px rgba(30,48,64,0.1);
}
.content-number {
  position: absolute; top: -18px; right: 24px;
  background: var(--tile); color: var(--gold-light);
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  box-shadow: 0 4px 16px rgba(30,48,64,0.22);
}
.content-item h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--tile); margin-bottom: 12px;
}
.content-item p { color: var(--smoke); font-weight: 300; line-height: 1.78; font-size: 0.9rem; }

/* ============================================================
   PREVIEW
============================================================ */
.preview-section { padding: 110px 0; background: var(--cream); }
.preview-header { text-align: center; margin-bottom: 64px; }

.preview-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 20px;
}
.preview-grid img {
  width: 100%; height: 100%; object-fit: cover;
  box-shadow: 0 6px 24px rgba(30,48,64,0.09);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.preview-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 44px rgba(30,48,64,0.16);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { padding: 110px 0; background: var(--sand-light); }
.testi-header { text-align: center; margin-bottom: 72px; }

.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 24px;
}
.testimonial-card.featured { grid-column: 1 / -1; }

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border); border-top: 3px solid var(--gold);
  padding: 44px 42px; position: relative;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.testimonial-card:not(.featured):hover {
  border-top-color: var(--ochre);
  box-shadow: 0 14px 36px rgba(30,48,64,0.1);
  transform: translateY(-4px);
}
.testimonial-card.featured {
  background: var(--tile);
  border-top-color: var(--ochre); border-color: transparent;
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 60px;
}
.featured-badge {
  position: absolute; top: -12px; left: 40px;
  background: var(--ochre); color: var(--cream);
  padding: 5px 16px;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.quote-mark {
  font-family: var(--serif); font-size: 7rem; line-height: 0.8;
  color: var(--ochre); opacity: 0.25; margin-bottom: 14px;
}
.testimonial-card.featured .quote-mark { color: var(--gold-light); }

.testimonial-text {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 300;
  font-style: italic; color: var(--ink); line-height: 1.75; margin-bottom: 28px;
}
.testimonial-card.featured .testimonial-text {
  color: rgba(232,220,200,0.82); font-size: 1.35rem;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 14px; }

.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--tile); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 300;
  border: 1px solid var(--border-mid); flex-shrink: 0;
}
.testimonial-card.featured .author-avatar {
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,169,110,0.25);
}
.author-name {
  font-weight: 600; font-size: 0.88rem; color: var(--tile); margin-bottom: 3px;
}
.testimonial-card.featured .author-name { color: var(--sand); }
.author-title { font-size: 0.78rem; font-weight: 300; color: var(--smoke); }
.testimonial-card.featured .author-title { color: rgba(232,220,200,0.45); }
.author-source { font-size: 0.7rem; color: rgba(107,96,87,0.5); margin-top: 2px; }
.testimonial-card.featured .author-source { color: rgba(200,169,110,0.3); }

.featured-meta {
  text-align: right; display: flex; flex-direction: column;
  align-items: flex-end; justify-content: flex-end; gap: 8px;
}
.featured-meta-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
  color: rgba(200,169,110,0.15); line-height: 1;
}
.featured-meta-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(200,169,110,0.3);
}

/* ============================================================
   BONUS
============================================================ */
.bonus-section { padding: 110px 0; background: var(--cream); }
.bonus-header { text-align: center; margin-bottom: 72px; }

.bonus-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px;
}
.bonus-card {
  background: var(--sand-light);
  border: 1px solid var(--border);
  padding: 36px 28px; text-align: center;
  position: relative; transition: all 0.35s var(--ease);
}
.bonus-card::after {
  content: ''; position: absolute; inset: -1px;
  border: 1px solid var(--ochre); opacity: 0;
  transition: opacity 0.35s;
}
.bonus-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(30,48,64,0.1); }
.bonus-card:hover::after { opacity: 1; }
.bonus-value {
  position: absolute; top: 14px; right: 14px;
  background: var(--ochre); color: var(--cream);
  padding: 4px 12px; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.bonus-card img { border-radius: 3px; margin: 0 auto 22px; max-width: 200px; }
.bonus-card h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  color: var(--tile); margin-bottom: 10px;
}
.bonus-card p { color: var(--smoke); font-size: 0.88rem; font-weight: 300; line-height: 1.75; margin-bottom: 18px; }
.bonus-link {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--ochre); display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s, color 0.3s;
  position: relative;
    z-index: 999;
  
}
.bonus-link:hover { gap: 12px; color: var(--ochre-deep); }
.phone-mockup { width: 180px; height: auto; display: block; margin: 0 auto; }

/* ============================================================
   PRICING
============================================================ */
.pricing-section { padding: 110px 0; background: var(--sand-light); }
.pricing-box {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.pricing-left h2 {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: var(--tile); margin-bottom: 36px; line-height: 1.2;
}
.pricing-features { list-style: none; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 0; font-size: 0.95rem; font-weight: 300;
  color: var(--ink); border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--ochre); font-weight: 600; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.pricing-right {
  background: var(--tile); padding: 48px 44px;
  position: relative; overflow: hidden;
}
.pricing-right::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ochre), var(--gold-light));
}
.pricing-right::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(200,134,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.price-header { text-align: center; margin-bottom: 36px; position: relative; z-index: 1; }
.price-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(200,169,110,0.4); margin-bottom: 16px;
}
.price-amount {
  display: flex; align-items: flex-start; justify-content: center; gap: 4px;
}
.currency {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--gold-light); margin-top: 12px;
}
.amount {
  font-family: var(--serif); font-size: 5.5rem; font-weight: 300;
  color: var(--sand); line-height: 1;
}
.cents {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--gold-light); margin-top: 12px;
}
.price-note {
  font-size: 0.68rem; letter-spacing: 0.12em;
  color: rgba(200,169,110,0.35); margin-top: 8px;
}
.purchase-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; background: var(--ochre); color: var(--cream) !important;
  padding: 18px 40px; border: 1px solid var(--ochre);
  font-family: var(--sans); font-size: 0.73rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 24px;
  transition: all 0.35s var(--ease);
  box-shadow: 0 6px 24px rgba(200,134,58,0.2);
}
.purchase-btn:hover {
  background: var(--ochre-deep); border-color: var(--ochre-deep);
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,134,58,0.28);
}
.purchase-btn svg { transition: transform 0.35s; }
.purchase-btn:hover svg { transform: translateX(5px); }
.payment-options img { max-width: 200px; margin: 0 auto; opacity: 0.38; filter: brightness(3); }

/* ============================================================
   JOURNAL SECTION
============================================================ */
.journal-section { padding: 110px 0; background: var(--tile); }
.journal-header { text-align: center; margin-bottom: 72px; }
.journal-header .section-title { color: var(--sand); }
.journal-header .section-title em { color: var(--gold-light); }
.journal-header .section-subtitle { color: rgba(232,220,200,0.5); }
.journal-header .section-eyebrow { color: var(--gold); }
.journal-header .section-eyebrow::after { background: var(--gold); }
.journal-header .ornament::before,
.journal-header .ornament::after { background: rgba(200,169,110,0.25); }
.journal-header .ornament-sym { color: var(--gold); }

.journal-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
  margin-bottom: 56px;
}

.journal-card {
  background: var(--tile-mid);
  border: 1px solid rgba(200,169,110,0.12);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.journal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.journal-card-img-wrap {
  position: relative; display: block;
  height: 220px; overflow: hidden;
}
.journal-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.journal-card:hover .journal-card-img-wrap img { transform: scale(1.07); }

.journal-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,31,43,0.85) 0%, transparent 55%);
}
.journal-tag {
  position: absolute; bottom: 16px; left: 18px;
  background: var(--ochre); color: var(--cream);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 12px;
}

.journal-card-body { padding: 28px 28px 32px; }

.journal-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.journal-date, .journal-read {
  font-size: 0.68rem; font-weight: 400;
  color: rgba(200,169,110,0.4); letter-spacing: 0.06em;
}
.journal-dot { color: rgba(200,169,110,0.2); font-size: 0.5rem; }

.journal-card-title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  color: var(--sand); line-height: 1.35; margin-bottom: 14px;
}

.journal-card-excerpt {
  font-size: 0.88rem; font-weight: 300; line-height: 1.78;
  color: rgba(232,220,200,0.48); margin-bottom: 22px;
}

.journal-read-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ochre); transition: gap 0.3s, color 0.3s;
}
.journal-read-link span { transition: transform 0.3s; }
.journal-read-link:hover { color: var(--gold-light); gap: 12px; }

.journal-footer { text-align: center; }
.journal-footer .btn-secondary {
  color: var(--sand) !important;
  border-color: rgba(232,220,200,0.3);
}
.journal-footer .btn-secondary:hover {
  background: var(--ochre); color: var(--cream) !important;
  border-color: var(--ochre);
}

/* ============================================================
   SERVICES
============================================================ */
.services-section { padding: 110px 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 64px; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px; margin-bottom: 52px;
}
.service-card {
  overflow: hidden; height: 280px;
  box-shadow: 0 4px 20px rgba(30,48,64,0.07);
  transition: all 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(30,48,64,0.15); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover img { transform: scale(1.07); }

/* ============================================================
   FAQ
============================================================ */
.faq-section { padding: 110px 0; background: var(--sand-light); }
.faq-header { text-align: center; margin-bottom: 72px; }

.faq-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 22px; max-width: 1000px; margin: 0 auto;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--border); border-left: 3px solid var(--ochre);
  padding: 32px 28px; transition: box-shadow 0.3s, transform 0.3s;
}
.faq-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(30,48,64,0.08); }
.faq-item h4 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  color: var(--tile); margin-bottom: 12px;
}
.faq-item p { color: var(--smoke); font-weight: 300; line-height: 1.78; font-size: 0.9rem; }

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta-section {
  padding: 140px 0; background: var(--tile);
  color: var(--sand); text-align: center;
  position: relative; overflow: hidden;
}
.final-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(200,134,58,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 20%, rgba(200,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-section::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(200,169,110,0.04)' stroke-width='0.5'%3E%3Cpolygon points='30,4 56,18 56,42 30,56 4,42 4,18'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.final-cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.final-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.final-eyebrow::before, .final-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

.final-trust {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 28px;
  font-size: 0.72rem; font-weight: 400;
  color: rgba(200,169,110,0.35); letter-spacing: 0.08em;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #0f1a23; padding: 48px 0 30px;
  border-top: 1px solid rgba(200,169,110,0.08);
}
.footer-container {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(200,169,110,0.08);
}
.footer-wordmark {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(232,220,200,0.45);
}
.footer-wordmark span { color: var(--ochre); }
.footer-links {
  display: flex; gap: 32px; list-style: none; flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(200,169,110,0.3);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copyright {
  text-align: center; font-size: 0.68rem;
  color: rgba(200,169,110,0.18); letter-spacing: 0.1em;
}

/* ============================================================
   SERVICES PAGE — PAGE HERO
============================================================ */
.page-hero {
  min-height: 420px;
  padding-top: 72px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--tile-dark);
}
.page-hero-zellige {
  position: absolute; inset: 0;
  background-color: #162230;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cdefs%3E%3Cstyle%3E.gold%7Bstroke:%23c8a96e;stroke-width:0.6;fill:none%7D.dim%7Bstroke:rgba(200,169,110,0.18);stroke-width:0.4;fill:none%7D.fill-a%7Bfill:rgba(200,134,58,0.07)%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='fill-a' points='60,34 69,43 80,40 77,51 86,60 77,69 80,80 69,77 60,86 51,77 40,80 43,69 34,60 43,51 40,40 51,43'/%3E%3Cpolygon class='gold' points='60,34 69,43 80,40 77,51 86,60 77,69 80,80 69,77 60,86 51,77 40,80 43,69 34,60 43,51 40,40 51,43'/%3E%3Cline class='dim' x1='60' y1='0' x2='60' y2='34'/%3E%3Cline class='dim' x1='60' y1='86' x2='60' y2='120'/%3E%3Cline class='dim' x1='0' y1='60' x2='34' y2='60'/%3E%3Cline class='dim' x1='86' y1='60' x2='120' y2='60'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}
.page-hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 90% at 50% 50%, rgba(14,22,32,0.35) 0%, rgba(14,22,32,0.80) 100%);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: 80px 24px;
  max-width: 720px;
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300; color: var(--sand);
  line-height: 1.08; margin: 18px 0 20px;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-subtitle {
  font-size: 1rem; font-weight: 300;
  color: rgba(232,220,200,0.6); max-width: 480px;
  margin: 0 auto; line-height: 1.82;
}

/* ============================================================
   SERVICES PAGE — FILTER BAR
============================================================ */
.services-filter-wrap {
  background: var(--sand-light);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 72px; z-index: 90;
}
.services-filter-inner {
  max-width: 1240px; margin: 0 auto; padding: 18px 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }

.svc-filter-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--smoke); font-family: var(--sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 20px; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.svc-filter-btn:hover { border-color: var(--ochre); color: var(--ochre); }
.svc-filter-btn.active {
  background: var(--tile); color: var(--gold-light);
  border-color: var(--tile);
}

.svc-search-box {
  position: relative; min-width: 220px;
}
.svc-search-box input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--sans); font-size: 0.82rem;
  color: var(--ink); outline: none;
  transition: border-color 0.3s;
}
.svc-search-box input:focus { border-color: var(--ochre); }
.svc-search-icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); font-size: 0.8rem;
  pointer-events: none; color: var(--smoke);
}

/* ============================================================
   SERVICES PAGE — LAYOUT
============================================================ */
.svc-page-container {
  max-width: 1240px; margin: 0 auto;
  padding: 80px 48px 120px;
}
.svc-section { margin-bottom: 100px; }
.svc-section-header { margin-bottom: 48px; }

/* ============================================================
   SERVICES PAGE — PRODUCT CARDS (Digital)
============================================================ */
.svc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.svc-product-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-top-color 0.35s;
  position: relative; overflow: hidden;
}
.svc-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(30,48,64,0.12);
  border-top-color: var(--ochre);
}

.svc-product-img {
  position: relative; height: 260px;
  overflow: hidden; background: var(--sand-light);
}
.svc-product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.svc-product-card:hover .svc-product-img img { transform: scale(1.07); }

/* Badges */
.svc-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; z-index: 2;
}
.svc-badge--gold   { background: var(--ochre);  color: var(--cream); }
.svc-badge--green  { background: #2e7d5e;        color: #fff; }
.svc-badge--red    { background: #c0392b;        color: #fff; }
.svc-badge--purple { background: #6c3483;        color: #fff; }

/* Quick view */
.svc-quick-view {
  position: absolute; bottom: -48px; left: 0; right: 0;
  background: rgba(30,48,64,0.95);
  color: var(--gold-light); padding: 13px;
  text-align: center; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: bottom 0.3s var(--ease); z-index: 3;
  display: block;
}
.svc-product-card:hover .svc-quick-view { bottom: 0; }

/* Card body */
.svc-product-body {
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; flex: 1;
}
.svc-product-cat {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 8px;
}
.svc-product-title {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  color: var(--tile); line-height: 1.35; margin-bottom: 10px;
}
.svc-product-desc {
  font-size: 0.88rem; font-weight: 300;
  color: var(--smoke); line-height: 1.72;
  margin-bottom: 16px; flex: 1;
}
.svc-product-rating {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.svc-stars   { color: var(--gold); font-size: 0.85rem; }
.svc-rating-count { font-size: 0.78rem; color: rgba(107,96,87,0.5); }

.svc-product-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
  gap: 12px;
}
.svc-price {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  color: var(--tile);
}
.svc-old-price {
  font-size: 0.95rem; color: rgba(107,96,87,0.4);
  text-decoration: line-through; margin-right: 6px;
}
.svc-buy-btn {
  background: var(--tile); color: var(--gold-light) !important;
  padding: 9px 20px; border: 1px solid var(--tile);
  font-family: var(--sans); font-size: 0.65rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.3s var(--ease); white-space: nowrap;
  display: inline-block;
}
.svc-buy-btn:hover {
  background: var(--ochre); border-color: var(--ochre);
  transform: translateY(-2px);
}
.svc-buy-btn--full {
  width: 100%; text-align: center; margin-top: 16px;
  padding: 12px 20px;
}

/* ============================================================
   SERVICES PAGE — BANNER DIVIDER
============================================================ */
.svc-banner {
  background: var(--tile);
  padding: 56px 64px;
  margin: 60px 0;
  position: relative; overflow: hidden;
}
.svc-banner::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--ochre);
}
.svc-banner::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(200,134,58,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.svc-banner-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.svc-banner-text h2 {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--sand); margin: 10px 0 12px;
}
.svc-banner-text h2 em { font-style: italic; color: var(--gold-light); }
.svc-banner-text p {
  font-size: 0.95rem; font-weight: 300;
  color: rgba(232,220,200,0.55); max-width: 420px;
}

/* ============================================================
   SERVICES PAGE — INSURANCE CARD (full-width)
============================================================ */
.svc-insurance-card {
  display: grid; grid-template-columns: 420px 1fr;
  border: 1px solid var(--border); border-top: 3px solid var(--ochre);
  background: var(--cream); overflow: hidden;
  margin-bottom: 40px;
  transition: box-shadow 0.35s;
}
.svc-insurance-card:hover { box-shadow: 0 16px 44px rgba(30,48,64,0.1); }
.svc-insurance-img {
  position: relative; height: 340px; overflow: hidden;
}
.svc-insurance-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.svc-insurance-card:hover .svc-insurance-img img { transform: scale(1.05); }
.svc-insurance-img .svc-badge { top: 16px; left: 16px; }
.svc-insurance-body {
  padding: 44px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-insurance-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0;
}
.svc-feature-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0;
}
.svc-feature-tag {
  background: var(--sand-light); color: var(--tile);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; padding: 6px 14px;
  border: 1px solid var(--border);
}
.svc-insurance-trust {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(107,96,87,0.5); margin-bottom: 24px;
  font-style: italic;
}

/* ============================================================
   SERVICES PAGE — TOUR CARDS
============================================================ */
.svc-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.svc-tour-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-top-color 0.35s;
  overflow: hidden;
}
.svc-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(30,48,64,0.12);
  border-top-color: var(--ochre);
}

.svc-tour-img {
  position: relative; height: 220px; overflow: hidden;
}
.svc-tour-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.svc-tour-card:hover .svc-tour-img img { transform: scale(1.07); }
.svc-tour-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,31,43,0.5) 0%, transparent 60%);
}
.svc-tour-badges {
  position: absolute; top: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 3;
}
.svc-wishlist {
  width: 34px; height: 34px;
  background: rgba(250,247,242,0.92);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  transition: all 0.3s;
}
.svc-wishlist:hover { background: var(--ochre); color: var(--cream); }

.svc-tour-body {
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; flex: 1;
}
.svc-tour-rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}

/* ============================================================
   RESPONSIVE — 1080px
============================================================ */
@media (max-width: 1080px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 480px; display: flex; }
  .hero-left { padding: 100px 48px 80px; }
  .feature-row { grid-template-columns: 1fr; }
  .pricing-box { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-card.featured { grid-template-columns: 1fr; gap: 0; }
  .featured-meta { display: none; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px (MOBILE)
============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-container { padding: 0 20px; height: 64px; }
  .nav-links { display: none; } /* hidden — use drawer */
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }
  .nav-logo-text { display: none; } /* hide text, keep SVG icon */
  .nav-cta { padding: 8px 14px; font-size: 0.62rem; }

  /* Container */
  .container { padding: 0 20px; }

  /* Hero — centered on mobile */
  .hero-left { padding: 90px 24px 64px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-stats {
    flex-direction: column; gap: 18px;
    align-items: center; text-align: center;
  }
  .stat-item {
    border-right: none; padding: 0;
    text-align: center; width: 100%;
    border-bottom: 1px solid rgba(200,169,110,0.14);
    padding-bottom: 18px;
  }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .stat-item:first-child { text-align: center; padding-left: 0; }
  .hero-cta-group { display: flex; flex-direction: column; align-items: center; }
  .trust-signals { justify-content: center; }
  .payment-methods { display: flex; justify-content: center; }

  /* General */
  .feature-large { padding: 40px 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { grid-column: 1; }
  .services-grid .service-card:nth-child(n+4) { display: none; }
  .service-card { height: auto; }
  .solution-callout { flex-direction: column; gap: 16px; padding: 32px 28px; }
  .final-trust { flex-direction: column; gap: 10px; align-items: center; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-container { padding: 0 20px; }
  .journal-grid { grid-template-columns: 1fr; }
  .floating-badge { display: none; }

  /* Services page */
  .services-filter-inner { padding: 14px 20px; }
  .svc-page-container { padding: 48px 20px 80px; }
  .svc-insurance-card { grid-template-columns: 1fr; }
  .svc-insurance-img { height: 240px; }
  .svc-insurance-body { padding: 28px 24px; }
  .svc-banner { padding: 36px 28px; }
  .svc-banner-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .svc-tours-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .btn-primary { padding: 15px 28px; font-size: 0.68rem; }
  .hero-title { font-size: 2.4rem; }
  .book-thumb img { width: 110px; }
  .nav-right { gap: 10px; }
}
/* ============================================================
   EXPERIENCES PAGE — PAGE HERO
   (append this entire block to the bottom of style.css)
============================================================ */

/* ── Page Hero ── */
.page-hero {
  min-height: 440px;
  padding-top: 72px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--tile-dark);
}
.page-hero-zellige {
  position: absolute; inset: 0;
  background-color: #162230;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cdefs%3E%3Cstyle%3E.g%7Bstroke:%23c8a96e;stroke-width:0.6;fill:none%7D.d%7Bstroke:rgba(200,169,110,0.15);stroke-width:0.4;fill:none%7D.f%7Bfill:rgba(200,134,58,0.07)%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='f' points='60,34 69,43 80,40 77,51 86,60 77,69 80,80 69,77 60,86 51,77 40,80 43,69 34,60 43,51 40,40 51,43'/%3E%3Cpolygon class='g' points='60,34 69,43 80,40 77,51 86,60 77,69 80,80 69,77 60,86 51,77 40,80 43,69 34,60 43,51 40,40 51,43'/%3E%3Cline class='d' x1='60' y1='0' x2='60' y2='34'/%3E%3Cline class='d' x1='60' y1='86' x2='60' y2='120'/%3E%3Cline class='d' x1='0' y1='60' x2='34' y2='60'/%3E%3Cline class='d' x1='86' y1='60' x2='120' y2='60'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}
.page-hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 90% at 50% 50%, rgba(14,22,32,0.3) 0%, rgba(14,22,32,0.82) 100%);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: 88px 24px;
  max-width: 720px;
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300; color: var(--sand);
  line-height: 1.08; margin: 18px 0 20px;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-subtitle {
  font-size: 1rem; font-weight: 300;
  color: rgba(232,220,200,0.55);
  max-width: 460px; margin: 0 auto; line-height: 1.82;
}

/* ── Tab Bar ── */
.tab-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 900;
}
.tab-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: stretch;
}
.tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--ochre);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.tab-btn:hover  { color: var(--tile); }
.tab-btn.active { color: var(--tile); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-btn-icon {
  width: 32px; height: 32px;
  background: var(--sand-light);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background 0.3s, border-color 0.3s;
}
.tab-btn.active .tab-btn-icon,
.tab-btn:hover  .tab-btn-icon {
  background: var(--tile);
  border-color: var(--tile);
}
.tab-btn-label { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.tab-btn-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; }
.tab-btn-sub {
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: none;
  color: var(--smoke); opacity: 0.7;
}
.tab-btn.active .tab-btn-sub { opacity: 0.6; }

.tab-divider {
  width: 1px;
  background: var(--border);
  margin: 12px 0;
  align-self: stretch;
}

/* ── Tab Panels ── */
.tab-panel {
  display: none;
  animation: tabFadeIn 0.45s var(--ease) both;
}
.tab-panel.active { display: block; }

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

/* ── Experiences Panel (dark tile bg) ── */
.experiences-panel {
  background: var(--tile-dark);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.experiences-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(200,169,110,0.05)' stroke-width='0.5'%3E%3Cpolygon points='30,4 56,18 56,42 30,56 4,42 4,18'/%3E%3Cpolygon points='30,14 46,23 46,37 30,46 14,37 14,23'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.experiences-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(200,134,58,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.experiences-panel .container { position: relative; z-index: 1; }

.exp-section-header { margin-bottom: 52px; }
.exp-section-header .section-eyebrow { color: var(--gold); }
.exp-section-header .section-eyebrow::before { background: var(--gold); }
.exp-section-header .section-title { color: var(--sand); }
.exp-section-header .section-title em { color: var(--gold-light); }

/* Insurance highlight card */
.insurance-highlight {
  background: rgba(200,134,58,0.08);
  border: 1px solid rgba(200,134,58,0.22);
  border-left: 4px solid var(--ochre);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.insurance-highlight:hover { background: rgba(200,134,58,0.13); }
.insurance-highlight::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 100% 50%, rgba(200,134,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.insurance-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}
.insurance-body { flex: 1; }
.insurance-badge {
  display: inline-block;
  background: var(--tile-mid);
  color: var(--gold);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(200,169,110,0.2);
}
.insurance-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 300;
  color: var(--sand); margin-bottom: 8px;
}
.insurance-body p {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(232,220,200,0.6);
  line-height: 1.7; max-width: 520px;
}
.insurance-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px;
}
.insurance-tags span {
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(200,169,110,0.7);
  padding: 5px 12px;
  border: 1px solid rgba(200,169,110,0.18);
}
.insurance-cta { flex-shrink: 0; }

/* Experience category label */
.exp-category-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(200,169,110,0.4);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.exp-category-label::before,
.exp-category-label::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(200,169,110,0.12);
}

/* Offer cards — dark variant */
.offer-grid-dark {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.offer-card-dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,110,0.14);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s, background 0.3s;
}
.offer-card-dark:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
  border-color: rgba(200,134,58,0.35);
  background: rgba(255,255,255,0.06);
}
.offer-card-dark-image {
  position: relative; height: 210px; overflow: hidden;
}
.offer-card-dark-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease);
  filter: brightness(0.88);
}
.offer-card-dark:hover .offer-card-dark-image img {
  transform: scale(1.07); filter: brightness(1);
}
.offer-card-dark-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--ochre); color: var(--cream);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px;
}
.offer-card-dark-body {
  padding: 26px 24px;
  display: flex; flex-direction: column; flex: 1; gap: 10px;
}
.offer-card-dark-location {
  font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ochre);
}
.offer-card-dark-title {
  font-family: var(--serif);
  font-size: 1.18rem; font-weight: 400;
  color: var(--sand); line-height: 1.3;
}
.offer-card-dark-desc {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(232,220,200,0.5);
  line-height: 1.7; flex: 1;
}
.offer-card-dark-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.offer-card-dark-tags span {
  font-size: 0.63rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(200,169,110,0.6);
  background: rgba(200,169,110,0.06);
  border: 1px solid rgba(200,169,110,0.14);
  padding: 4px 10px;
}
.offer-card-dark-rating {
  font-size: 0.8rem; color: var(--gold); font-weight: 600;
}
.offer-card-dark-rating span {
  color: rgba(200,169,110,0.4);
  font-weight: 300; font-size: 0.75rem; margin-left: 4px;
}
.offer-card-dark-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold-light) !important;
  border: 1px solid rgba(200,169,110,0.3);
  padding: 10px 20px;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.35s var(--ease);
  align-self: flex-start;
}
.offer-card-dark-cta:hover {
  background: var(--ochre); border-color: var(--ochre);
  color: var(--cream) !important; gap: 14px;
}

/* ── Digital Panel (cream bg) ── */
.digital-panel {
  background: var(--cream);
  padding: 80px 0 100px;
}
.digital-section-header { margin-bottom: 48px; }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-top-color 0.3s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30,48,64,0.12);
  border-top-color: var(--ochre);
}
.product-card-image {
  position: relative; height: 260px;
  overflow: hidden; background: var(--sand-light);
}
.product-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }

.product-badge-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px;
}
.product-badge-tag.bestseller { background: var(--ochre);  color: var(--cream); }
.product-badge-tag.new        { background: var(--tile);   color: var(--gold-light); }
.product-badge-tag.sale       { background: #c0392b;       color: #fff; }

.product-quick-view {
  position: absolute; bottom: -48px; left: 0; right: 0;
  background: rgba(30,48,64,0.95);
  color: var(--gold-light);
  padding: 13px; text-align: center;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: bottom 0.35s var(--ease); z-index: 3;
  display: block;
}
.product-card:hover .product-quick-view { bottom: 0; }

.product-card-body {
  padding: 26px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.product-tag {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 9px;
}
.product-name {
  font-family: var(--serif);
  font-size: 1.18rem; font-weight: 400;
  color: var(--tile); line-height: 1.35; margin-bottom: 9px;
}
.product-desc {
  font-size: 0.86rem; font-weight: 300;
  line-height: 1.72; color: var(--smoke);
  flex: 1; margin-bottom: 14px;
}
.product-stars {
  font-size: 0.86rem; color: var(--gold);
  margin-bottom: 16px; letter-spacing: 1px;
}
.product-stars span {
  color: var(--smoke); font-size: 0.78rem;
  letter-spacing: 0; margin-left: 4px;
}
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
  gap: 10px;
}
.product-price {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 300; color: var(--tile);
}
.old-price {
  font-size: 0.88rem;
  color: rgba(107,96,87,0.45);
  text-decoration: line-through;
  margin-right: 5px;
  font-family: var(--sans); font-weight: 300;
}
.product-buy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tile); color: var(--gold-light) !important;
  padding: 9px 18px; border: 1px solid var(--tile);
  font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.35s var(--ease);
}
.product-buy-btn:hover {
  background: var(--ochre); border-color: var(--ochre);
  color: var(--cream) !important;
}

/* Bundle Banner inside digital panel */
.digital-bundle-banner {
  background: var(--tile);
  padding: 64px;
  text-align: center;
  position: relative; overflow: hidden;
  margin: 72px 0 0;
}
.digital-bundle-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(200,169,110,0.04)' stroke-width='0.5'%3E%3Cpolygon points='30,4 56,18 56,42 30,56 4,42 4,18'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.digital-bundle-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200,134,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.digital-bundle-banner-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .tab-bar-inner { padding: 0 24px; }
  .offer-grid-dark { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
  .tab-bar-inner { padding: 0 12px; overflow-x: auto; }
  .tab-btn { padding: 18px 20px; }
  .tab-btn-sub { display: none; }

  .page-hero-content { padding: 72px 20px; }
  .page-hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .experiences-panel,
  .digital-panel { padding: 52px 0 72px; }

  .insurance-highlight { flex-direction: column; gap: 20px; padding: 28px 22px; }
  .insurance-cta { align-self: flex-start; }

  .offer-grid-dark { grid-template-columns: 1fr; }
  .product-grid    { grid-template-columns: 1fr; }
  .digital-bundle-banner { padding: 44px 24px; }

 .nav-container {
    position: relative; }  /* add this */
    .nav-center-stack {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    
  }
  
}


@media (max-width: 480px) {
  .tab-btn-icon { display: none; }
  .tab-btn { padding: 16px 14px; font-size: 0.65rem; }
}
/* ============================================================
   BOOK SELECTOR — MOBILE FIX
   Keeps the 3 book thumbnails in a single horizontal row
   on all mobile screen sizes
============================================================ */
@media (max-width: 768px) {
  .book-selector-section {
    padding: 36px 0;
  }
  .book-thumbnails {
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
    align-items: flex-end;
    padding: 0 16px;
  }
  .book-thumb {
    padding: 10px;
    flex: 0 0 auto;
  }
  .book-thumb img {
    width: 88px;
    margin-bottom: 8px;
  }
  .thumb-label {
    font-size: 0.6rem;
  }
}

@media (max-width: 400px) {
  .book-thumbnails {
    gap: 8px;
    padding: 0 10px;
  }
  .book-thumb {
    padding: 8px 6px;
  }
  .book-thumb img {
    width: 70px;
  }
  .thumb-label {
    font-size: 0.55rem;
    letter-spacing: 0.06em;
  }
}
#pricing {
  scroll-margin-top: 80px;
}

