/* ============================================================
   MARCO SAGER CONSULTING — styles.css  v2
   Warm #1C1917 · Gold #CA8A04 · Cormorant + Montserrat
   ============================================================ */

:root {
  --bg:         #0d0d14;
  --bg-2:       #12121c;
  --bg-3:       #181824;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim:   #8a6e2f;
  --text:       #e8e4dc;
  --text-muted: #8a8275;
  --text-faint: #4a473f;
  --border:     rgba(201,168,76,0.18);
  --glass:      rgba(18,18,28,0.7);
  --glass-blur: blur(16px) saturate(1.3);
  --shadow:     0 24px 64px rgba(0,0,0,0.45);
  --serif:      'Cormorant', Georgia, serif;
  --sans:       'Montserrat', system-ui, sans-serif;
  --nav-h:      72px;
  --max-w:      1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== GRAIN OVERLAY ===== */
.grain-overlay {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.5;
}

/* ===== CHAPTER TRACK ===== */
.chapter-track {
  position: fixed; right: 1.75rem; top: 50%;
  transform: translateY(-50%);
  z-index: 89;
  display: flex; flex-direction: column; gap: 0.7rem;
  opacity: 0; transition: opacity 0.4s;
}
.chapter-track.visible { opacity: 1; }
.chapter-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bg-3);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer; padding: 0;
  border: none;
}
.chapter-dot.active {
  background: var(--gold);
  transform: scale(1.9);
}
.chapter-dot:hover:not(.active) { background: var(--text-faint); transform: scale(1.4); }

/* ===== UTILS ===== */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-header { text-align: center; margin-bottom: 4rem; }

/* ===== SCROLL REVEAL ===== */
.reveal-up {
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(13,13,20,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-color: var(--border);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
}
.logo-sig {
  width: 48px; height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(1.1);
}
.logo-divider {
  width: 1px; height: 36px;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
  margin: 0 0.1rem;
}
.logo-text-group { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-menu {
  display: flex; align-items: center; gap: 0.2rem;
  flex-shrink: 0;
}
.nav-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(202,138,4,0.07);
}
.nav-right {
  display: flex; align-items: center; gap: 1.25rem;
  justify-content: flex-end;
}
.lang-toggle { display: flex; align-items: center; gap: 0.35rem; }
.lang-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  padding: 0.2rem 0.1rem;
  transition: color 0.2s;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }
.lang-sep { color: var(--text-faint); font-size: 0.7rem; }
.btn-book {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 30px; height: 30px; flex-shrink: 0;
}
.hamburger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(202,138,4,0.3);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.9rem 1.8rem;
  border-radius: 2px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.btn-outline:hover {
  color: var(--gold);
  border-color: rgba(202,138,4,0.45);
  background: rgba(202,138,4,0.05);
}

/* ===== HERO ===== */
.hero {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
.hero-photo-side {
  flex: 0 0 50%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-photo-side::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 55%, var(--bg) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 28%);
  pointer-events: none;
  z-index: 2;
}
.hero-photo-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  justify-content: center;
}
.hero-photo {
  height: 92%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: brightness(0.88) contrast(1.06) saturate(0.88);
  transition: transform 8s ease-out;
}
.hero-photo.loaded { transform: scale(1.02); }
.hero-photo-caption {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  z-index: 3;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-photo-caption::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.hero-content-side {
  flex: 0 0 50%;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 4rem 4rem 3rem;
  position: relative;
  z-index: 2;
}
.hero-animate {
  animation: heroIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.eyebrow-line {
  display: block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.hero-headline em { display: block; font-style: italic; color: var(--gold); }
.hero-subtext {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 450px;
  margin: 1.75rem 0 0;
}
.hero-stats {
  display: flex; align-items: center;
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-col {
  display: flex; flex-direction: column;
  align-items: center; flex: 1;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.hero-buttons { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.hero-social {
  display: flex; align-items: center; gap: 0.85rem;
  margin-top: 1.75rem;
}
.hero-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s, border-color 0.2s;
}
.hero-social-link:hover { color: var(--gold); border-color: var(--gold); }
.hero-social-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-left: 0.25rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex; align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 1.75rem;
}
.trust-item i { color: var(--gold); font-size: 0.78rem; }
.trust-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }

/* ===== SERVICES ===== */
.services-section { padding: 7rem 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  border-right: 1px solid var(--border);
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(202,138,4,0.5), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover::after { opacity: 1; }
.service-card:nth-child(2n) { border-right: none; }
.service-card:nth-child(1),
.service-card:nth-child(2) { border-bottom: 1px solid var(--border); }
.service-card:last-child { border-bottom: none; }
.service-card:hover { background: rgba(60,56,54,0.75); }
.service-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover .service-icon {
  border-color: rgba(202,138,4,0.5);
  background: rgba(202,138,4,0.07);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
}
.service-card p { font-size: 0.88rem; line-height: 1.78; color: var(--text-muted); flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.5rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.8rem; }

/* ===== ABOUT ===== */
.about-section { padding: 7rem 0; background: var(--bg); }
.about-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: auto;
  max-height: 780px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 4px;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--bg);
  padding: 1.25rem 1.75rem;
  border-radius: 3px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem; font-weight: 700; line-height: 1;
}
.badge-txt {
  display: block;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 0.25rem;
}
.about-right { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text { font-size: 0.95rem; line-height: 1.88; color: var(--text-muted); }
.about-langs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }
.lang-badge {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(41,37,36,0.4);
}

/* ===== PERSONAL STORY TIMELINE ===== */
.story-section { padding: 7rem 0; background: var(--bg-3); }
.story-timeline {
  display: flex; flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.story-timeline::before {
  content: '';
  position: absolute;
  left: 90px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.story-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.story-item:last-child { border-bottom: none; }
.story-item::before {
  content: '';
  position: absolute;
  left: calc(90px - 5px);
  top: 2.8rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg-3);
}
.story-year {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  padding-top: 0.15rem;
  text-align: right;
  line-height: 1.4;
}
.story-content h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.story-content h3 em { font-style: italic; color: var(--gold); }
.story-content p {
  font-size: 0.9rem;
  line-height: 1.82;
  color: var(--text-muted);
}

/* ===== WHY MARCO ===== */
.why-section { padding: 7rem 0; background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.why-item {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 3rem 2.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.why-item:nth-child(2n) { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-item:hover { background: rgba(60,56,54,0.75); }
.why-num {
  font-family: var(--serif);
  font-size: 3rem; font-weight: 600;
  color: rgba(202,138,4,0.14);
  line-height: 1; margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.why-item:hover .why-num { color: rgba(202,138,4,0.3); }
.why-item h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: var(--text); }
.why-item p { font-size: 0.88rem; line-height: 1.78; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 7rem 0; background: var(--bg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.t-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.t-card:hover { border-color: rgba(202,138,4,0.4); transform: translateY(-4px); }
.t-card::before {
  content: '\201C';
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--serif); font-size: 4.5rem; line-height: 1;
  color: rgba(202,138,4,0.12); pointer-events: none;
}
.t-text { font-family: var(--serif); font-size: 1.05rem; font-style: italic; line-height: 1.75; color: var(--text); flex: 1; }
.t-author { display: flex; align-items: center; gap: 0.85rem; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--bg); flex-shrink: 0;
}
.t-info { display: flex; flex-direction: column; }
.t-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.t-loc { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ===== ORIGIN STORY QUOTE ===== */
.origin-section { padding: 8rem 0; background: var(--bg-2); }
.origin-inner {
  max-width: 860px;
  margin: 0 auto;
  padding-left: 3.5rem;
  border-left: 2px solid var(--gold);
  position: relative;
}
.origin-inner .section-eyebrow { margin-bottom: 2.5rem; }
.origin-inner .section-eyebrow::before { display: none; }
.origin-quote { margin-bottom: 3rem; }
.origin-quote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.68;
  color: var(--text);
}
.origin-attribution {
  display: flex; align-items: center; gap: 1rem;
}
.origin-attr-line {
  width: 32px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.origin-name {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text);
}
.origin-loc {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.06em;
}

/* ===== CLIENT CASE STUDIES ===== */
.cases-section { padding: 7rem 0; background: var(--bg); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color 0.3s, transform 0.3s;
}
.case-card:hover {
  border-color: rgba(202,138,4,0.48);
  transform: translateY(-4px);
}
.case-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(202,138,4,0.3);
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  align-self: flex-start;
}
.case-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.case-story {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
  flex: 1;
}
.case-outcome {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.case-outcome-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.case-outcome-val {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* ===== BOOK + THAI BY HEART SECTION ===== */
.book-section {
  padding: 5rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.book-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(202,138,4,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.book-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  position: relative; z-index: 1;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.book-half {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem;
}
.book-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}
.book-cover-img {
  height: 200px;
  width: auto;
  border-radius: 3px;
  filter: drop-shadow(-10px 16px 40px rgba(0,0,0,0.6));
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.book-cover-wrap:hover .book-cover-img { transform: scale(1.03) rotate(-1deg); }
.book-cover-wrap { perspective: 800px; flex-shrink: 0; }
.book-cover {
  width: 130px; height: 180px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-15deg);
  filter: drop-shadow(-10px 16px 32px rgba(0,0,0,0.65));
  transition: transform 0.5s;
}
.book-cover-wrap:hover .book-cover { transform: rotateY(-5deg); }
.book-spine {
  position: absolute;
  left: -14px; top: 0; bottom: 0;
  width: 14px;
  background: linear-gradient(to right, #3d2a08, #7a5c20);
  transform-origin: right center;
  transform: rotateY(-90deg);
  border-radius: 1px 0 0 1px;
}
.book-face {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0e1428 0%, #1C1917 50%, #150f05 100%);
  border: 1px solid rgba(202,138,4,0.35);
  border-radius: 0 2px 2px 0;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 1rem;
  gap: 0.4rem;
  overflow: hidden;
}
.book-face::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(202,138,4,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.book-face::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.book-cover-eyebrow { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.book-cover-title { font-family: var(--serif); font-size: 0.85rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.book-cover-sub { font-size: 0.48rem; color: var(--text-muted); font-style: italic; line-height: 1.3; }
.book-content { display: flex; flex-direction: column; gap: 0.85rem; }
.book-badge {
  display: inline-block;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(202,138,4,0.35);
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  align-self: flex-start;
}
.book-title {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500;
  color: var(--text); line-height: 1.25;
}
.book-subtitle { font-size: 0.88rem; color: var(--text-muted); }
.book-text { font-size: 0.88rem; line-height: 1.78; color: var(--text-muted); max-width: 340px; }
.book-cta {
  display: inline-flex; align-items: center;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
  margin-top: 0.5rem;
}
.book-cta:hover { color: var(--gold-light); }
.tbh-block { display: flex; flex-direction: column; gap: 1.5rem; }
.tbh-eyebrow {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem;
}
.tbh-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }
.tbh-name-row {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none;
}
.tbh-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--border);
  flex-shrink: 0;
}
.tbh-avatar-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.tbh-brand-name {
  font-family: var(--serif);
  font-size: 1.75rem; font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.tbh-name-row:hover .tbh-brand-name { color: var(--gold); }
.tbh-stats { display: flex; gap: 2.5rem; }
.tbh-stat { display: flex; flex-direction: column; gap: 0.25rem; transition: opacity 0.2s; cursor: pointer; }
.tbh-stat:hover { opacity: 0.75; }
.tbh-icon { font-size: 0.72rem; color: var(--gold); margin-bottom: 0.15rem; }
.tbh-stat-num {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 600;
  color: var(--text); line-height: 1;
}
.tbh-stat-label {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== THAI BY HEART FOOTER LINK ===== */
.footer-tbh {
  grid-column: 1 / -1;
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
  padding: 1.25rem 0;
  margin-bottom: 0.5rem;
}
.footer-tbh-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-tbh-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color 0.2s;
}
.footer-tbh-link:hover { color: var(--gold-light); }
.footer-tbh-sep { color: var(--text-faint); }
.footer-tbh-sub {
  font-size: 0.72rem;
  color: var(--text-faint);
  font-style: italic;
}

/* Nav Thai by Heart link */
.nav-link--tbh {
  color: var(--gold) !important;
  border: 1px solid rgba(202,138,4,0.25);
  border-radius: 3px;
  margin-left: 0.5rem;
}
.nav-link--tbh:hover {
  background: rgba(202,138,4,0.08) !important;
  border-color: rgba(202,138,4,0.5);
}

/* ===== BOOKING CTA ===== */
.booking-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.booking-bg { position: absolute; inset: 0; z-index: 0; }
.booking-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(202,138,4,0.06) 0%, transparent 70%);
}
.booking-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(202,138,4,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.booking-content {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto; text-align: center;
}
.booking-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.15;
  color: var(--text); margin-bottom: 1.25rem;
}
.booking-headline em { font-style: italic; color: var(--gold); }
.booking-sub {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-muted);
  max-width: 520px; margin: 0 auto 3rem;
}
.contact-form { display: flex; flex-direction: column; gap: 0.85rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-input, .form-textarea {
  width: 100%;
  background: rgba(41,37,36,0.55);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1.1rem;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 400;
  color: var(--text); outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-input:focus, .form-textarea:focus {
  border-color: rgba(202,138,4,0.55);
  background: rgba(60,56,54,0.55);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-input--full { grid-column: 1 / -1; }
.btn-submit { align-self: center; margin-top: 0.5rem; }
.booking-alts {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem;
}
.alt-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted); transition: color 0.2s;
}
.alt-link:hover { color: var(--gold); }
.alt-link i { font-size: 0.95rem; }
.alt-sep { color: var(--text-faint); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 3rem 0 6rem; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-sig {
  width: 44px; height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.75;
}
.footer-logo-divider {
  width: 1px; height: 32px;
  background: var(--gold-dim);
  opacity: 0.5;
  flex-shrink: 0;
  margin: 0 0.1rem;
}
.footer-logo-name { display: block; font-family: var(--serif); font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.footer-logo-sub { display: block; font-size: 0.54rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dim); }
.footer-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.25rem; }
.footer-links a { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); padding: 0.25rem 0.6rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; align-items: center; gap: 0.75rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--text-faint);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover { color: var(--gold); border-color: rgba(202,138,4,0.4); background: rgba(202,138,4,0.06); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: 0.67rem; color: var(--text-faint);
}
.lang-toggle--footer .lang-btn,
.lang-toggle--footer .lang-sep { font-size: 0.65rem; }

/* ===== STICKY BOTTOM BAR ===== */
.wa-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: #0a0a10;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 0.85rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.wa-bar.hidden { transform: translateY(100%); }
.wa-bar-left { display: flex; flex-direction: column; gap: 0.15rem; }
.wa-bar-title {
  font-size: 0.92rem; font-weight: 500;
  color: var(--text); letter-spacing: 0.01em;
}
.wa-bar-sub {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.wa-bar-right { display: flex; align-items: center; gap: 0.85rem; }
.wa-bar-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.wa-bar-icon:hover { background: #1ebe5d; transform: scale(1.05); }
.wa-bar-book {
  display: inline-flex; align-items: center;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 0.6rem 1.5rem; border-radius: 3px;
  white-space: nowrap; text-decoration: none;
  transition: background 0.2s;
}
.wa-bar-book:hover { background: var(--gold-light); }
.wa-bar-close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1;
  color: var(--text-muted);
  cursor: pointer; background: none; border: none;
  transition: color 0.2s; flex-shrink: 0; margin-left: 0.25rem;
}
.wa-bar-close:hover { color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .origin-inner { padding-left: 2rem; }
  .book-inner { grid-template-columns: 1fr; }
  .book-divider { width: auto; height: 1px; align-self: auto; }
  .book-half { flex-direction: column; align-items: flex-start; }
  .book-cover-wrap { display: flex; justify-content: flex-start; }
  .story-timeline::before { left: 70px; }
  .story-item { grid-template-columns: 70px 1fr; }
  .story-item::before { left: calc(70px - 5px); }
  .hero { flex-direction: column; }
  .hero-photo-side { flex: none; width: 100%; height: 60vh; min-height: auto; }
  .hero-photo-side::after {
    background: linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
  }
  .hero-photo-wrap { align-items: flex-start; }
  .hero-photo { height: 100%; width: 100%; object-fit: cover; object-position: top center; }
  .hero-content-side { flex: none; width: 100%; padding: 3rem 2rem 5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .service-card:last-child { border-bottom: none !important; }
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { max-height: 520px; }
  .about-badge { bottom: -1rem; right: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-column: 1 / -1; }
  .chapter-track { display: none; }
}

@media (max-width: 640px) {
  .wa-bar { padding: 0.75rem 1.25rem; }
  .wa-bar-title { font-size: 0.8rem; }
}

@media (max-width: 768px) {
  .story-timeline::before { display: none; }
  .story-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .story-item::before { display: none; }
  .story-year { text-align: left; padding-bottom: 0.25rem; }
  .footer-tbh { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  :root { --nav-h: 64px; }
  .nav-container { display: flex; justify-content: space-between; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,13,20,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem 2rem;
    gap: 0.25rem;
    display: none;
    z-index: 899;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 0.85rem; padding: 0.65rem 0.75rem; }
  .btn-book { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .trust-inner { flex-direction: column; gap: 0.5rem; }
  .trust-sep { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .origin-inner { padding-left: 1.5rem; border-left-width: 1.5px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.6rem; }
  .section-title { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .about-img { max-height: 380px; }
  .about-badge {
    position: static;
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.25rem; border-radius: 3px;
    margin-top: 1rem; width: 100%; justify-content: center;
  }
  .badge-num { font-size: 1.8rem; }
}
