/* ============================================================
   EcoEcho Homepage Redesign · Editorial Travel Zine
   Phase 3.1 , Hero + Shell
   ============================================================ */

/* ----- 0 · RESET ----- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; tab-size: 4; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }

ul, ol { list-style: none; }

a { color: inherit; text-decoration: none; }

button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--tulip);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----- 1 · TOKENS ----- */
:root {
  /* color */
  --ink: #1a1612;
  --ink-muted: #5c5650;
  --paper: #f5f1ea;
  --paper-raised: #ffffff;
  --paper-deep: #ebe6dc;
  --tulip: #c9462c;
  --tulip-hover: #a83a23;
  --sky: #3a5f7d;
  --moss: #2c5e2e;
  --line: rgba(26, 22, 18, 0.12);
  --line-strong: rgba(26, 22, 18, 0.24);

  /* typography */
  --font-display: "Fraunces", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --t-hero: clamp(44px, 6vw + 1rem, 108px);
  --t-display: clamp(40px, 5vw + 0.5rem, 88px);
  --t-h2: clamp(32px, 3.5vw + 0.5rem, 64px);
  --t-h3: clamp(22px, 1.5vw + 0.5rem, 32px);
  --t-lede: clamp(18px, 0.5vw + 1rem, 22px);
  --t-body: 17px;
  --t-small: 14px;
  --t-meta: 12px;

  /* spacing (4px rhythm) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* layout */
  --container: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
  --nav-h: 72px;

  /* motion */
  --easing: cubic-bezier(0.2, 0.6, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----- 2 · UTIL ----- */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  background: var(--ink);
  color: var(--paper);
  padding: var(--sp-3) var(--sp-4);
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.2s var(--easing);
}
.skip-link:focus-visible { top: var(--sp-4); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.meta {
  font-family: var(--font-mono);
  font-size: var(--t-meta);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ----- 3 · NAV ----- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
/* v2.1.38 + v2.1.57: logged-in users see the WP admin bar (32px desktop,
   46px mobile). homepage.css loads AFTER main.css so we re-declare the
   offset here. v2.1.57: bumped specificity (body.admin-bar header.site-nav)
   + !important so the rule wins against any later rule that resets top to 0. */
body.admin-bar header.site-nav,
body.admin-bar .site-nav { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar header.site-nav,
  body.admin-bar .site-nav { top: 46px !important; }
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: var(--nav-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-width: 0;
}

.site-nav__brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
  padding-bottom: 2px;
}
.site-nav__brand-dot {
  position: absolute;
  right: -2px;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tulip);
}
.site-nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-nav__brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.site-nav__brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.site-nav__menu ul {
  display: flex;
  align-items: center;
  gap: clamp(var(--sp-4), 1.5vw, var(--sp-8));
}
.site-nav__menu a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: var(--sp-2) 0;
}
.site-nav__menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--tulip);
  transition: width 0.25s var(--easing), left 0.25s var(--easing);
}
.site-nav__menu a:hover::after,
.site-nav__menu a:focus-visible::after {
  width: 100%;
  left: 0;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.site-nav__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--easing), transform 0.2s var(--easing);
}
.site-nav__whatsapp:hover { background: var(--tulip); transform: translateY(-1px); }
.site-nav__whatsapp svg { flex-shrink: 0; }

.site-nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.site-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s var(--easing), opacity 0.2s var(--easing);
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav__mobile {
  display: none;
  padding: var(--sp-4) var(--gutter) var(--sp-8);
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.site-nav__mobile[hidden] { display: none; }
.site-nav__mobile:not([hidden]) { display: block; }
.site-nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.site-nav__mobile a {
  display: block;
  padding: var(--sp-4) 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
}
.site-nav__mobile-contact {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-muted);
}

@media (max-width: 960px) {
  .site-nav__menu { display: none; }
  .site-nav__whatsapp span { display: none; }
  .site-nav__whatsapp { padding: 10px; }
  .site-nav__toggle { display: inline-flex; }
}

/* ----- 4 · BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background 0.2s var(--easing), color 0.2s var(--easing), transform 0.15s var(--easing), box-shadow 0.2s var(--easing);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--tulip);
  color: var(--paper);
  box-shadow: 0 1px 0 var(--tulip-hover), 0 4px 14px -6px rgba(201, 70, 44, 0.55);
}
.btn--primary:hover {
  background: var(--tulip-hover);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 var(--tulip-hover), 0 8px 18px -6px rgba(201, 70, 44, 0.55);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding-inline: var(--sp-4);
  position: relative;
}
.btn--ghost::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 1.5px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 0.25s var(--easing), background 0.25s var(--easing);
}
.btn--ghost:hover { color: var(--tulip); }
.btn--ghost:hover::after { background: var(--tulip); transform: scaleX(1.05); }

/* ----- 5 · HERO ----- */
.hero {
  padding-top: var(--sp-16);
  padding-bottom: 0;
  position: relative;
}

.hero__grid {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: var(--sp-16);
}

.hero__text { max-width: 720px; }

.hero__meta {
  font-family: var(--font-mono);
  font-size: var(--t-meta);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}
.hero__meta-sep { opacity: 0.5; }

.hero__display {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: var(--t-hero);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-6);
}
.hero__display br { display: block; }

.hero__rule {
  display: block;
  width: 96px;
  height: 3px;
  background: var(--tulip);
  margin-bottom: var(--sp-8);
  border-radius: 2px;
}

.hero__h1 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 1.6vw + 0.75rem, 30px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink-muted);
  margin-bottom: var(--sp-6);
  max-width: 26ch;
}

.hero__lede {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-lede);
  line-height: 1.55;
  color: var(--ink);
  max-width: 42ch;
  margin-bottom: var(--sp-10);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
  max-width: 620px;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero__stars {
  color: var(--tulip);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

/* hero photo plate */
.hero__plate {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transform: rotate(0.8deg);
}

.hero__plate-frame {
  position: relative;
  background: var(--paper-raised);
  padding: 14px 14px 60px;
  box-shadow: 0 2px 4px rgba(26, 22, 18, 0.04),
              0 14px 38px -16px rgba(26, 22, 18, 0.22),
              0 40px 70px -30px rgba(26, 22, 18, 0.18);
  border: 1px solid var(--line);
}
.hero__plate-frame::after {
  content: "EcoEcho · Spring '26";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-muted);
}
.hero__plate-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(1.05);
}

.hero__plate-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  gap: var(--sp-3);
  padding-inline: var(--sp-2);
}
.hero__plate-caption span:first-child {
  color: var(--tulip);
  font-weight: 500;
}

/* hero ticker */
.hero__ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding-block: 14px;
}
.hero__ticker-inner {
  display: flex;
  gap: var(--sp-6);
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  width: max-content;
}
.hero__ticker-inner span { flex-shrink: 0; }
.hero__ticker-inner span:nth-child(odd):not(:empty) {
  color: var(--ink);
  font-weight: 500;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero { padding-top: var(--sp-10); }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sp-12);
    padding-bottom: var(--sp-12);
  }
  .hero__plate {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
    transform: rotate(-0.6deg);
  }
  .hero__plate-frame img { aspect-ratio: 4 / 5; }
  .hero__meta { margin-bottom: var(--sp-4); }
  .hero__display { margin-bottom: var(--sp-4); }
  .hero__rule { margin-bottom: var(--sp-4); }
  .hero__h1 { margin-bottom: var(--sp-4); }
  .hero__lede { margin-bottom: var(--sp-8); }
  .hero__ctas { margin-bottom: var(--sp-8); }
  .hero__ctas .btn { flex: 1; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
}

/* ----- 6 · PROOF BAND (above-fold trust) ----- */
.proof {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(48px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}
.proof::before,
.proof::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(245, 241, 234, 0.14);
}
.proof::before { top: 24px; }
.proof::after { bottom: 24px; }

.proof__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}

.proof__rating {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
}
.proof__stars {
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--tulip);
}
.proof__score {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.proof__score-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
}

.proof__platforms {
  padding-top: var(--sp-2);
}
.proof__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.48);
  margin-bottom: var(--sp-4);
}
.proof__platforms ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.proof__platforms a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.12);
  transition: border-color 0.2s var(--easing), padding-left 0.2s var(--easing);
}
.proof__platforms li:last-child a { border-bottom: 0; }
.proof__platforms a:hover {
  border-color: var(--tulip);
  padding-left: 8px;
}
.proof__platform {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.proof__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.6);
}

.proof__quote {
  position: relative;
  padding-top: var(--sp-2);
}
.proof__quote::before {
  content: "“";
  position: absolute;
  top: -36px;
  left: -12px;
  font-family: var(--font-display);
  font-size: 160px;
  line-height: 1;
  color: var(--tulip);
  opacity: 0.35;
  pointer-events: none;
}
.proof__quote blockquote {
  margin: 0;
}
.proof__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 1.8vw + 0.5rem, 30px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--paper);
  max-width: 36ch;
  margin: 0;
}
.proof__quote figcaption {
  margin-top: var(--sp-6);
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.7);
}
.proof__quote-src { color: rgba(245, 241, 234, 0.45); }

.proof__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  padding-bottom: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
  border-bottom: 1.5px solid var(--tulip);
  transition: color 0.2s var(--easing), border-color 0.2s var(--easing);
}
.proof__link:hover {
  color: var(--tulip);
}
.proof__link span { transition: transform 0.2s var(--easing); }
.proof__link:hover span { transform: translateX(3px); }

@media (max-width: 900px) {
  .proof__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sp-10);
  }
  .proof__rating { flex-direction: row; align-items: baseline; gap: var(--sp-4); }
  .proof__score { font-size: 80px; }
  .proof__quote::before { top: -24px; font-size: 100px; }
}

/* ----- 7 · SECTION META (shared) ----- */
.section-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tulip);
  margin-bottom: var(--sp-8);
  display: inline-block;
  border-bottom: 1px solid var(--tulip);
  padding-bottom: 6px;
}

/* ----- 7.1 · VIBE CHECK ----- */
.vibe {
  padding-block: clamp(72px, 8vw, 128px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.vibe__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.vibe__lead { position: sticky; top: calc(var(--nav-h) + 24px); }
.vibe__h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(48px, 5vw + 0.75rem, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--sp-6);
}
.vibe__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1vw + 0.75rem, 28px);
  line-height: 1.4;
  color: var(--ink-muted);
  margin-bottom: var(--sp-10);
  max-width: 22ch;
}
.vibe__cta { align-self: flex-start; }

.vibe__list {
  display: flex;
  flex-direction: column;
}
.vibe__list li {
  display: grid;
  grid-template-columns: 64px 72px 1fr;
  align-items: start;
  gap: var(--sp-4);
  padding: clamp(28px, 2vw + 0.5rem, 44px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.3s var(--easing);
}
.vibe__list li:first-child { border-top: 1px solid var(--line); }
.vibe__list li:hover { padding-left: 8px; }
.vibe__list li:hover .vibe__idx { color: var(--tulip); }

.vibe__idx {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  padding-top: 6px;
  transition: color 0.2s var(--easing);
}
.vibe__emoji {
  font-size: clamp(36px, 3vw + 0.5rem, 52px);
  line-height: 1;
  padding-top: 4px;
}
.vibe__list p {
  font-family: var(--font-body);
  font-size: clamp(16px, 0.3vw + 0.95rem, 18px);
  line-height: 1.6;
  color: var(--ink);
}

@media (max-width: 900px) {
  .vibe__inner { grid-template-columns: minmax(0, 1fr); gap: var(--sp-10); }
  .vibe__lead { position: static; }
  .vibe__list li {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: var(--sp-2) var(--sp-3);
  }
  .vibe__idx { grid-column: 1 / -1; padding-top: 0; margin-bottom: 4px; }
  .vibe__emoji { grid-row: 2; }
  .vibe__list p { grid-row: 2; }
}

/* ----- 7.2 · WHAT WE DO ----- */
.what {
  padding-block: clamp(72px, 8vw, 128px);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.what::before {
  content: "03";
  position: absolute;
  right: -6vw;
  top: 4vw;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42vw;
  line-height: 0.8;
  color: var(--ink);
  opacity: 0.03;
  pointer-events: none;
}
.what__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}
.what__pull {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(44px, 6vw + 0.5rem, 108px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: clamp(48px, 5vw, 96px);
  max-width: 14ch;
}
.what__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.what__body {
  font-family: var(--font-body);
  font-size: clamp(17px, 0.3vw + 1rem, 19px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 58ch;
}
.what__body::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.5em;
  line-height: 0.85;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--tulip);
}

.what__card {
  padding: clamp(24px, 2vw + 0.5rem, 36px);
  background: var(--paper-raised);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.what__card-line {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}
.what__card-line .hero__stars { font-size: 16px; }

.what__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.what__tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.what__cta { align-self: flex-start; }

@media (max-width: 900px) {
  .what__grid { grid-template-columns: minmax(0, 1fr); }
  .what__pull { margin-bottom: var(--sp-10); }
}

/* ----- 7.3 · ABOUT THE HOST ----- */
.host {
  padding-block: clamp(72px, 8vw, 128px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.host__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.host__portrait {
  position: relative;
  margin: 0;
  max-width: 520px;
  justify-self: start;
  transform: rotate(-0.5deg);
}
.host__portrait-frame {
  background: var(--paper-raised);
  padding: 12px 12px 56px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 4px rgba(26, 22, 18, 0.04),
              0 18px 42px -18px rgba(26, 22, 18, 0.22);
  position: relative;
}
.host__portrait-frame::after {
  content: "Iliadis Antonis"; /* v2.1.41 , em-dash removed (no-em-dash rule) */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-muted);
}
.host__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.05);
  display: block;
}
.host__portrait figcaption {
  margin-top: var(--sp-4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-left: var(--sp-2);
}

.host__text { max-width: 560px; }
.host__h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(44px, 5vw + 0.5rem, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-8);
}
.host__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 0.8vw + 1rem, 26px);
  line-height: 1.45;
  color: var(--ink-muted);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--line);
}
.host__body {
  font-family: var(--font-body);
  font-size: clamp(17px, 0.3vw + 1rem, 19px);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: var(--sp-6);
}
.host__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.host__signature span:first-child { color: var(--tulip); font-size: 36px; line-height: 0.5; }

@media (max-width: 900px) {
  .host__inner { grid-template-columns: minmax(0, 1fr); gap: var(--sp-10); }
  .host__portrait { max-width: 380px; margin: 0 auto; }
}

/* ----- 7.4 · REAL FEEDBACK ----- */
.feedback {
  padding-block: clamp(80px, 9vw, 140px);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.feedback__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.feedback__head { max-width: 720px; margin-bottom: clamp(40px, 4vw, 64px); }
.feedback__h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(48px, 5vw + 0.5rem, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}
.feedback__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 1vw + 0.75rem, 30px);
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.feedback__disclaimer {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.7;
}

.feedback__aggregate {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  padding: clamp(20px, 2vw, 28px) 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 5vw, 72px);
  flex-wrap: wrap;
}
.feedback__aggregate-stars {
  font-family: var(--font-body);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--tulip);
}
.feedback__aggregate-score {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(36px, 2.5vw + 0.5rem, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.feedback__aggregate-text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.feedback__platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1vw, 20px);
  margin-bottom: clamp(64px, 7vw, 112px);
}
.feedback__platforms a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name name"
    "stars score"
    "count count"
    "cta cta";
  align-items: baseline;
  row-gap: 8px;
  column-gap: var(--sp-3);
  padding: clamp(20px, 2vw, 28px);
  background: var(--paper-raised);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--easing), border-color 0.25s var(--easing), box-shadow 0.25s var(--easing);
}
.feedback__platforms a:hover {
  transform: translateY(-3px);
  border-color: var(--tulip);
  box-shadow: 0 14px 28px -16px rgba(26, 22, 18, 0.22);
}
.feedback__platform-name {
  grid-area: name;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.feedback__platform-stars { grid-area: stars; color: var(--tulip); font-size: 15px; letter-spacing: 0.08em; }
.feedback__platform-score {
  grid-area: score;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.feedback__platform-count {
  grid-area: count;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.feedback__platform-cta {
  grid-area: cta;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--tulip);
  margin-top: var(--sp-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.feedback__quotes {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 5vw, 88px);
  margin-bottom: clamp(48px, 5vw, 80px);
}
.feedback__quote {
  position: relative;
  max-width: 820px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.feedback__quote--right {
  margin-left: auto;
  justify-items: end;
  text-align: right;
}
.feedback__quote--right blockquote p { margin-left: auto; }
.feedback__quote--right figcaption { justify-content: flex-end; }

.feedback__quote-idx {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--tulip);
  letter-spacing: 0.02em;
  padding-top: 10px;
  border-top: 2px solid var(--tulip);
  min-width: 40px;
}

.feedback__quote blockquote { margin: 0; }
.feedback__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 1.6vw + 0.75rem, 38px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 30ch;
}
.feedback__quote figcaption {
  margin-top: var(--sp-4);
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.feedback__quote-src { opacity: 0.7; }

.feedback__cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .feedback__platforms { grid-template-columns: minmax(0, 1fr); }
  .feedback__quote,
  .feedback__quote--right {
    margin-left: 0;
    text-align: left;
    justify-items: start;
    grid-template-columns: 40px 1fr;
    gap: var(--sp-4);
  }
  .feedback__quote--right blockquote p { margin-left: 0; }
  .feedback__quote--right figcaption { justify-content: flex-start; }
}

/* ----- 7.5 · FIELD NOTES ----- */
.field {
  padding-block: clamp(72px, 8vw, 128px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.field__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.field__head {
  margin-bottom: clamp(40px, 4vw, 72px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
}
.field__h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(44px, 5vw + 0.5rem, 80px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.field__h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 0.55em;
  display: block;
  margin-top: 4px;
  letter-spacing: -0.01em;
}

/* v2.1.37: auto-fill grid scales gracefully from 6 to 15+ tiles (multi-row wrap). */
.field__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: clamp(16px, 1.5vw, 28px);
  row-gap: clamp(28px, 2.5vw, 44px);
}
.field__tile {
  background: var(--paper-raised);
  padding: 10px 10px 44px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 4px rgba(26, 22, 18, 0.04),
              0 12px 28px -14px rgba(26, 22, 18, 0.22);
  position: relative;
  transform: rotate(var(--r, 0deg));
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing), z-index 0s 0.3s;
  z-index: 1;
}
.field__tile:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.02);
  box-shadow: 0 2px 4px rgba(26, 22, 18, 0.04),
              0 24px 48px -16px rgba(26, 22, 18, 0.32);
  z-index: 2;
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
.field__tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(1.05);
}
.field__tile-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-muted);
}

.field__follow {
  margin-top: clamp(32px, 3vw, 56px);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field__follow a {
  color: var(--ink);
  border-bottom: 1.5px solid var(--tulip);
  padding-bottom: 2px;
  margin-left: var(--sp-2);
  transition: color 0.2s var(--easing);
}
.field__follow a:hover { color: var(--tulip); }

@media (max-width: 900px) {
  .field__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .field__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ----- 7.6 · TOURS SHARED (Private + Small Group) ----- */
.tours {
  padding-block: clamp(80px, 8vw, 140px);
  border-top: 1px solid var(--line);
}
.tours--private { background: var(--paper); }
.tours--group {
  background: var(--ink);
  color: var(--paper);
}

.tours__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.tours__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(48px, 5vw, 88px);
  padding-bottom: clamp(24px, 2vw, 40px);
  border-bottom: 2px solid currentColor;
}
.tours__h2 {
  grid-column: 1;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(44px, 5vw + 0.5rem, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.tours__h2 em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.75;
}
.tours__lede {
  grid-column: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1vw + 0.75rem, 28px);
  line-height: 1.4;
  opacity: 0.8;
  margin-top: var(--sp-4);
  max-width: 32ch;
}
.tours__head-meta {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  align-self: flex-end;
}
.tours__head-meta span { display: flex; align-items: center; gap: var(--sp-2); }
.tours--group .tours__head-meta .hero__stars,
.tours--private .tours__head-meta .hero__stars { color: var(--tulip); }

.tours__head-cta {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: var(--sp-6);
}
.tours--group .tours__head-cta { color: var(--paper); }
.tours--group .tours__head-cta::after { background: var(--paper); }
.tours--group .tours__head-cta:hover { color: var(--tulip); }
.tours--group .tours__head-cta:hover::after { background: var(--tulip); }

.tours__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
}

/* ----- 7.7 · TOUR CARD ----- */
.card {
  background: var(--paper-raised);
  color: var(--ink);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing), border-color 0.3s var(--easing);
}
.tours--group .card {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(245, 241, 234, 0.14);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(26, 22, 18, 0.35);
  border-color: var(--tulip);
}
.card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-deep);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
}
.card:hover .card__media img { transform: scale(1.04); }

.card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: var(--tulip);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.card__badge--eco { background: var(--moss); }

.card__body {
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  flex: 1;
}
.card__type {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.card__h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 72;
  font-weight: 500;
  font-size: clamp(22px, 1.2vw + 0.75rem, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.85;
}
.card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--sp-4) 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-color: var(--line);
  margin-top: auto;
}
.tours--group .card__details { border-color: rgba(245, 241, 234, 0.14); }
.card__details li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 13px;
  opacity: 0.9;
}

.card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-3);
}
.card__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.card__price em {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 2px;
}
.card__price small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}
.card__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--tulip);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--tulip);
  transition: transform 0.2s var(--easing);
}
.card:hover .card__cta { transform: translateX(3px); }

@media (max-width: 1100px) {
  .tours__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .tours__grid { grid-template-columns: minmax(0, 1fr); }
  .tours__head {
    grid-template-columns: minmax(0, 1fr);
  }
  .tours__head-meta {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sp-2) var(--sp-4);
  }
  .tours__head-cta { grid-column: 1; }
}

/* ----- 7.8 · THE ECOECHO DIFFERENCE ----- */
.diff {
  padding-block: clamp(80px, 8vw, 140px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.diff__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.diff__head {
  max-width: 820px;
  margin-bottom: clamp(48px, 5vw, 88px);
  padding-bottom: clamp(32px, 3vw, 56px);
  border-bottom: 2px solid var(--ink);
}
.diff__h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(44px, 5vw + 0.5rem, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-6);
}
.diff__h2 em { font-style: italic; font-weight: 400; color: var(--ink-muted); }
.diff__lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 0.5vw + 1rem, 22px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 52ch;
}

.diff__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 48px);
  counter-reset: none;
}
.diff__cols li {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
  position: relative;
}
.diff__num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(80px, 7vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--tulip);
  margin-bottom: var(--sp-2);
}
.diff__h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 1.3vw + 0.75rem, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.diff__cols p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 32ch;
}
.diff__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--sp-2);
}
.diff__tags li {
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  display: inline-block;
}

@media (max-width: 900px) {
  .diff__cols { grid-template-columns: minmax(0, 1fr); gap: var(--sp-12); }
}

/* ----- 7.9 · MID-PAGE CTA ----- */
.bigcta {
  padding-block: clamp(96px, 10vw, 180px);
  background: var(--tulip);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bigcta::before,
.bigcta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(245, 241, 234, 0.2);
}
.bigcta::before { top: 32px; }
.bigcta::after { bottom: 32px; }
.bigcta__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.bigcta__meta {
  color: rgba(245, 241, 234, 0.7);
  border-color: rgba(245, 241, 234, 0.5);
}
.bigcta__h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(48px, 6vw + 0.5rem, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: var(--sp-4);
}
.bigcta__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 1vw + 0.75rem, 30px);
  color: rgba(245, 241, 234, 0.85);
  margin-bottom: clamp(32px, 3vw, 56px);
}
.bigcta__btn {
  background: var(--paper);
  color: var(--ink);
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 0 rgba(26, 22, 18, 0.25);
  transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), background 0.2s var(--easing);
}
.bigcta__btn:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 0 rgba(26, 22, 18, 0.35);
}

/* ----- 7.10 · FAQ ----- */
.faq {
  padding-block: clamp(80px, 8vw, 140px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.faq__head {
  margin-bottom: clamp(40px, 4vw, 72px);
  padding-bottom: clamp(24px, 2vw, 40px);
  border-bottom: 2px solid var(--ink);
}
.faq__h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  font-size: clamp(44px, 5vw + 0.5rem, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.faq__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1vw + 0.75rem, 26px);
  color: var(--ink-muted);
}

.faq__list { display: flex; flex-direction: column; }
.faq__list li { border-bottom: 1px solid var(--line); }
.faq__list li:first-child { border-top: 1px solid var(--line); }

.faq details { padding: 0; }
.faq summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-6);
  padding: clamp(20px, 2vw, 28px) 0;
  cursor: pointer;
  list-style: none;
  transition: padding-left 0.25s var(--easing);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { padding-left: 8px; }
.faq details[open] summary { padding-left: 8px; }

.faq__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--tulip);
  min-width: 52px;
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 0.7vw + 0.75rem, 24px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq__plus {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s var(--easing), border-color 0.25s var(--easing);
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--easing), background 0.25s var(--easing);
}
.faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] .faq__plus {
  background: var(--tulip);
  border-color: var(--tulip);
}
.faq details[open] .faq__plus::before,
.faq details[open] .faq__plus::after {
  background: var(--paper);
}
.faq details[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__a {
  padding: 0 0 clamp(24px, 2.5vw, 36px) 60px;
  max-width: 70ch;
}
.faq__a p {
  font-family: var(--font-body);
  font-size: clamp(16px, 0.3vw + 0.95rem, 18px);
  line-height: 1.65;
  color: var(--ink);
}

.faq__foot {
  margin-top: clamp(32px, 3vw, 56px);
  padding-top: clamp(24px, 2vw, 40px);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1vw + 0.75rem, 26px);
  color: var(--ink-muted);
}
.faq__foot a {
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
  border-bottom: 1.5px solid var(--tulip);
  padding-bottom: 3px;
  margin-left: var(--sp-2);
  transition: color 0.2s var(--easing);
}
.faq__foot a:hover { color: var(--tulip); }

@media (max-width: 600px) {
  .faq summary { grid-template-columns: auto 1fr; gap: var(--sp-4); }
  .faq__plus { grid-column: 1; grid-row: 2; justify-self: start; }
  .faq__a { padding-left: 0; }
}

/* ----- 8 · PLACEHOLDER STUBS (deprecated) ----- */
.stub { display: none; }

/* ----- 9 · FOOTER (editorial masthead) ----- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(64px, 7vw, 112px);
}
.site-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 5vw, 80px);
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
  padding-bottom: clamp(32px, 3vw, 56px);
  border-bottom: 1px solid rgba(245, 241, 234, 0.14);
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.site-footer__brand .site-nav__brand-mark { background: var(--paper); color: var(--ink); }
.site-footer__brand .site-nav__brand-name { color: var(--paper); }
.site-footer__brand .site-nav__brand-sub { color: rgba(245, 241, 234, 0.55); }
.site-footer__tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw + 0.5rem, 36px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 28ch;
  color: var(--paper);
  justify-self: end;
  text-align: right;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 72px);
}
.site-footer__col h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(245, 241, 234, 0.14);
}
.site-footer__col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer__col a {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--paper);
  transition: color 0.2s var(--easing);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.site-footer__col a:hover { color: var(--tulip); }
.site-footer__col li { font-family: var(--font-body); font-size: 15px; color: rgba(245, 241, 234, 0.85); display: flex; align-items: center; gap: var(--sp-2); }
.site-footer__col li a { font-family: var(--font-body); font-size: 15px; }

.site-footer__whats {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.55);
}
.site-footer__whats a {
  color: var(--paper);
  font-family: var(--font-body);
  border-bottom: 1.5px solid var(--tulip);
  padding-bottom: 2px;
  margin-left: 4px;
}

.site-footer__social { flex-direction: row !important; gap: var(--sp-3) !important; margin-top: var(--sp-6); }
.site-footer__social a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 999px;
  color: var(--paper);
}
.site-footer__social a:hover { background: var(--tulip); border-color: var(--tulip); color: var(--paper); }

.site-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: clamp(24px, 2vw, 40px);
  border-top: 1px solid rgba(245, 241, 234, 0.14);
}
.site-footer__legal {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 234, 0.45);
}
.site-footer__bottom-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.7);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.site-footer__bottom-cta .hero__stars { color: var(--tulip); letter-spacing: 0.1em; font-size: 12px; }
.site-footer__bottom-cta a {
  color: var(--paper);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1.5px solid var(--tulip);
  padding-bottom: 2px;
  margin-left: var(--sp-2);
}

@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: minmax(0, 1fr); }
  .site-footer__tagline { justify-self: start; text-align: left; }
  .site-footer__cols { grid-template-columns: minmax(0, 1fr); }
}
