/* =================================================================
   Guatemalan Concierge — Website
   Shared page styles. Depends on ../colors_and_type.css
   Aesthetic: colonial cartography meets contemporary luxury.
   ================================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* =================================================================
   Atoms
   ================================================================= */

.gc-eyebrow {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-quetzal);
  margin: 0 0 var(--space-4);
  display: block;
}
.gc-eyebrow--gold { color: var(--color-gold); }
.gc-eyebrow--teal { color: var(--color-quetzal); }
.gc-eyebrow--muted { color: var(--text-inverse-muted); }

.gc-display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--color-parchment);
  margin: 0 0 var(--space-8);
}
.gc-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin: 0 0 var(--space-6);
  text-wrap: balance;
}
.gc-h1--inverse { color: var(--color-parchment); }
.gc-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.005em;
  color: var(--color-navy);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}
.gc-h2--inverse { color: var(--color-parchment); }
.gc-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}

.gc-prose {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 65ch;
  margin: 0 0 var(--space-6);
}
.gc-prose--inverse { color: var(--text-inverse-muted); }
.gc-prose--narrow  { max-width: 50ch; }
.gc-prose--lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--color-gold-light);
}
.gc-prose--lead-dark {
  color: var(--color-quetzal-deep);
}

.gc-deck {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  color: var(--color-gold-light);
  margin: 0 0 var(--space-8);
}
.gc-deck--dark { color: var(--color-quetzal); }

/* Gold double-rule divider */
.gc-rule {
  width: 56px; height: 1px; background: var(--color-gold);
  margin: 0 0 var(--space-4); position: relative;
}
.gc-rule--center { margin-left: auto; margin-right: auto; }
.gc-rule::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--color-gold);
}

.gc-star { color: var(--color-red); }

/* Buttons */
.gc-btn {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
  display: inline-flex; align-items: center; gap: 12px;
  transition: transform var(--dur-quick) var(--ease-soft),
              background-color var(--dur-quick) var(--ease-soft),
              color var(--dur-quick) var(--ease-soft),
              border-color var(--dur-quick) var(--ease-soft);
}
.gc-btn--sm { padding: 11px 22px; font-size: 11px; }
.gc-btn--primary { background: var(--color-red); color: var(--color-parchment); }
.gc-btn--primary:hover { background: var(--color-red-hover); transform: translateY(-1px); }
.gc-btn--secondary { color: var(--color-gold); border-color: var(--color-gold); }
.gc-btn--secondary:hover { background: rgba(201,168,76,0.10); }
.gc-btn--ghost { color: var(--color-navy); border-color: var(--color-navy); }
.gc-btn--ghost:hover { background: var(--color-navy); color: var(--color-parchment); }
.gc-btn:active { transform: scale(0.985); }
.gc-btn:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 4px; }
.gc-btn__arrow { font-family: var(--font-display); font-size: 17px; line-height: 0; }

.gc-arrow-link {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
  position: relative;
}
.gc-arrow-link--navy { color: var(--color-navy); }
.gc-arrow-link__u { position: relative; }
.gc-arrow-link__u::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: currentColor; width: 0; transition: width 300ms ease;
}
.gc-arrow-link:hover .gc-arrow-link__u::after { width: 100%; }
.gc-arrow-link__a { transition: transform var(--dur-base) var(--ease-soft); font-family: var(--font-display); }
.gc-arrow-link:hover .gc-arrow-link__a { transform: translateX(5px); }

/* =================================================================
   Photographic plate (graded placeholder) + image-slot drop-zones
   ================================================================= */
.gc-plate {
  position: relative; overflow: hidden; background: var(--color-navy);
}
.gc-plate__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(1.05) contrast(1.04) brightness(0.95) sepia(0.05);
}
.gc-plate__duotone {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    linear-gradient(0deg, rgba(15,84,73,0.30) 0%, rgba(15,84,73,0.0) 55%),
    linear-gradient(180deg, rgba(28,42,74,0.18), rgba(13,17,23,0.10));
  mix-blend-mode: multiply;
}
.gc-plate__grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background-image: url('../assets/grain.svg'); background-size: 300px;
  opacity: 0.10; mix-blend-mode: overlay;
}

/* image-slot, when used as a graded slot */
.gc-slot {
  display: block; background: var(--color-navy);
  filter: saturate(1.05) contrast(1.04) brightness(0.95) sepia(0.05);
}

/* =================================================================
   Sections
   ================================================================= */
.gc-section {
  padding: clamp(72px, 11vw, 128px) var(--gutter);
  position: relative;
}
.gc-section--tight { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.gc-section--dark {
  background: var(--color-obsidian);
  color: var(--color-parchment);
}
.gc-section--navy {
  background: var(--color-navy);
  color: var(--color-parchment);
}
.gc-section--light { background: var(--bg-light); }
.gc-section__topo {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url('../assets/topo-pattern.svg');
  background-size: 720px; opacity: 0.05;
}
.gc-section__grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url('../assets/grain.svg'); background-size: 300px;
  opacity: 0.5; mix-blend-mode: multiply;
}
.gc-wrap { max-width: var(--content-wide); margin: 0 auto; position: relative; z-index: 1; }
.gc-wrap--wide { max-width: var(--content-max); }
.gc-wrap--narrow { max-width: var(--content-narrow); }

.gc-section__head { max-width: 760px; margin: 0 0 var(--space-16); position: relative; z-index: 1; }
.gc-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* =================================================================
   Page hero (interior pages) — compact cinematic band
   ================================================================= */
.gc-phero {
  position: relative; min-height: 62vh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--color-obsidian);
  padding: 0;
}
.gc-phero__overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13,17,23,0.55) 0%, rgba(13,17,23,0.18) 38%, rgba(13,17,23,0.82) 100%),
    rgba(15,84,73,0.14);
}
.gc-phero__content {
  position: relative; z-index: 3; width: 100%;
  max-width: var(--content-wide); margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px, 7vw, 88px);
}
.gc-phero__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(46px, 7vw, 92px); line-height: 0.98;
  letter-spacing: -0.02em; color: var(--color-parchment); margin: 0;
}
.gc-phero__deck {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(19px, 2vw, 25px); line-height: 1.5;
  color: var(--color-gold-light); max-width: 52ch; margin: var(--space-6) 0 0;
}

/* Breadcrumbs */
.gc-crumbs {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-inverse-muted);
  margin-bottom: var(--space-6);
}
.gc-crumbs a { color: var(--color-gold); transition: color var(--dur-quick) ease; }
.gc-crumbs a:hover { color: var(--color-gold-light); }
.gc-crumbs__sep { color: rgba(201,168,76,0.5); }
.gc-crumbs--light { color: var(--color-ash); }
.gc-crumbs--light a { color: var(--color-quetzal); }

/* Inside a page-hero, breadcrumbs are hidden visually.
   SEO value is preserved via JSON-LD BreadcrumbList in <head>. */
.gc-phero .gc-crumbs,
header.gc-section .gc-crumbs {
  display: none;
}

/* =================================================================
   Cards (experiences / regions / guides)
   ================================================================= */
.gc-grid { display: grid; gap: var(--space-8); position: relative; z-index: 1; }
.gc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gc-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .gc-grid--3, .gc-grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .gc-grid--2, .gc-grid--3, .gc-grid--4 { grid-template-columns: 1fr; }
}

.gc-card {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.18);
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-soft), transform var(--dur-base) var(--ease-soft);
}
.gc-card:hover { border-color: var(--color-gold); }
.gc-card--premium { border-left: 2px solid var(--color-gold); }
.gc-card--light { border-color: var(--border-subtle); background: var(--bg-card); }
.gc-card--light:hover { border-color: var(--color-gold); }

.gc-card__media { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.gc-card__media .gc-plate { position: absolute; inset: 0; }
.gc-card__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(0.95) sepia(0.05);
  transition: transform 600ms var(--ease-soft);
}
.gc-card:hover .gc-card__img { transform: scale(1.05); }

.gc-card__body { padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.gc-card__title {
  font-family: var(--font-display); font-weight: 500; font-size: 27px;
  line-height: 1.15; margin: 0; color: var(--color-parchment);
}
.gc-card--light .gc-card__title { color: var(--color-navy); }
.gc-card__desc {
  font-family: var(--font-body); font-size: 14px; line-height: 1.7;
  color: var(--text-inverse-muted); margin: 0 0 var(--space-4);
}
.gc-card--light .gc-card__desc { color: var(--text-body); }
.gc-card__link {
  font-family: var(--font-label); font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold);
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  transition: transform var(--dur-base) var(--ease-soft);
}
.gc-card:hover .gc-card__link { transform: translateX(4px); }
.gc-card__meta {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  display: flex; gap: 14px; align-items: center;
}

/* =================================================================
   Pull quote
   ================================================================= */
.gc-quote {
  margin: var(--space-12) 0; padding: var(--space-8) 0;
  border-top: 1px solid var(--color-gold); border-bottom: 1px solid var(--color-gold);
  position: relative;
}
.gc-quote::before, .gc-quote::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--color-gold); }
.gc-quote::before { top: 4px; }
.gc-quote::after { bottom: 4px; }
.gc-quote__text {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.35; color: var(--color-navy);
  margin: var(--space-2) 0 var(--space-6);
}
.gc-quote--inverse .gc-quote__text { color: var(--color-parchment); }
.gc-quote__attr {
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-ash);
}
.gc-quote--inverse .gc-quote__attr { color: var(--text-inverse-muted); }
.gc-quote__star { color: var(--color-red); margin: 0 8px; font-size: 9px; }

/* =================================================================
   Stat / authority strip
   ================================================================= */
.gc-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
@media (max-width: 760px) { .gc-pillars { grid-template-columns: 1fr; gap: var(--space-12); } }
.gc-pillar { border-top: 1px solid rgba(201,168,76,0.4); padding-top: var(--space-6); }
.gc-pillar__k {
  font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 5vw, 60px);
  line-height: 1; color: var(--color-gold); margin: 0 0 var(--space-3);
}
.gc-pillar__t {
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-parchment); margin: 0 0 var(--space-3);
}
.gc-pillar__d { font-family: var(--font-body); font-size: 14px; line-height: 1.7; color: var(--text-inverse-muted); margin: 0; }

/* =================================================================
   FAQ / accordion (also a GEO answer surface)
   ================================================================= */
.gc-faq { border-top: 1px solid var(--border-subtle); }
.gc-faq__item { border-bottom: 1px solid var(--border-subtle); }
.gc-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: var(--space-6) 44px var(--space-6) 0; position: relative;
  font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 2vw, 24px);
  line-height: 1.3; color: var(--color-navy);
  transition: color var(--dur-quick) ease;
}
.gc-faq__q:hover { color: var(--color-quetzal); }
.gc-faq__q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 300; font-size: 30px; color: var(--color-gold);
  transition: transform var(--dur-base) var(--ease-soft);
}
.gc-faq__item.is-open .gc-faq__q::after { content: "\2013"; }
.gc-faq__a {
  overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-cinema);
}
.gc-faq__a-inner {
  padding: 0 56px var(--space-8) 0;
  font-family: var(--font-body); font-size: 15px; line-height: 1.85; color: var(--text-body);
  max-width: 70ch;
}
.gc-faq--inverse { border-color: rgba(201,168,76,0.2); }
.gc-faq--inverse .gc-faq__item { border-color: rgba(201,168,76,0.2); }
.gc-faq--inverse .gc-faq__q { color: var(--color-parchment); }
.gc-faq--inverse .gc-faq__q:hover { color: var(--color-gold-light); }
.gc-faq--inverse .gc-faq__a-inner { color: var(--text-inverse-muted); }

/* =================================================================
   Article / longform body (guides)
   ================================================================= */
.gc-article { max-width: var(--content-narrow); margin: 0 auto; }
.gc-article p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.85;
  color: var(--text-body); margin: 0 0 var(--space-6); max-width: 68ch;
}
.gc-article h2 {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15; color: var(--color-navy); margin: var(--space-16) 0 var(--space-4);
  letter-spacing: -0.01em;
}
.gc-article h3 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2vw, 26px);
  color: var(--color-navy); margin: var(--space-12) 0 var(--space-3);
}
.gc-article .gc-eyebrow { margin-top: var(--space-8); }
.gc-article ul, .gc-article ol { margin: 0 0 var(--space-6); padding-left: 0; list-style: none; max-width: 68ch; }
.gc-article li {
  font-family: var(--font-body); font-size: 17px; line-height: 1.8; color: var(--text-body);
  padding-left: 30px; position: relative; margin-bottom: var(--space-3);
}
.gc-article li::before {
  content: "\2605"; color: var(--color-red); font-size: 9px;
  position: absolute; left: 4px; top: 9px;
}
.gc-article ol { counter-reset: gc; }
.gc-article ol li::before {
  counter-increment: gc; content: counter(gc, decimal-leading-zero);
  font-family: var(--font-label); font-size: 11px; color: var(--color-gold);
  top: 5px; left: 0;
}
.gc-article a.gc-inline {
  color: var(--color-quetzal); border-bottom: 1px solid rgba(26,122,110,0.35);
  transition: border-color var(--dur-quick) ease;
}
.gc-article a.gc-inline:hover { border-color: var(--color-quetzal); }
.gc-article blockquote {
  margin: var(--space-12) 0; padding: var(--space-2) 0 var(--space-2) var(--space-8);
  border-left: 2px solid var(--color-gold);
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.4; color: var(--color-navy);
}
.gc-article figure { margin: var(--space-12) 0; }
.gc-article figcaption {
  font-family: var(--font-body); font-size: 12px; color: var(--text-muted);
  margin-top: var(--space-3); font-style: italic;
}

/* Key-facts box (answer-shaped for GEO) */
.gc-keyfacts {
  border: 1px solid var(--border-subtle); border-left: 2px solid var(--color-gold);
  background: var(--bg-card); padding: var(--space-8); margin: var(--space-8) 0 var(--space-12);
}
.gc-keyfacts dt {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-ash); margin-top: var(--space-4);
}
.gc-keyfacts dt:first-of-type { margin-top: 0; }
.gc-keyfacts dd {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--text-body); margin: 4px 0 0;
}

/* Table of contents (article aside) */
.gc-toc {
  position: sticky; top: 110px;
  font-family: var(--font-body);
}
.gc-toc__t {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-ash); margin-bottom: var(--space-4);
}
.gc-toc a {
  display: block; font-size: 13px; line-height: 1.5; color: var(--text-muted);
  padding: 7px 0 7px 16px; border-left: 1px solid var(--border-subtle);
  transition: color var(--dur-quick) ease, border-color var(--dur-quick) ease;
}
.gc-toc a:hover, .gc-toc a.is-on { color: var(--color-navy); border-color: var(--color-gold); }

/* =================================================================
   Reveal-on-scroll
   ================================================================= */
.gc-reveal { opacity: 0; transform: translateY(24px); transition: opacity 900ms var(--ease-cinema), transform 900ms var(--ease-cinema); }
.gc-reveal.is-in { opacity: 1; transform: none; }
.gc-reveal[data-delay="1"] { transition-delay: 120ms; }
.gc-reveal[data-delay="2"] { transition-delay: 240ms; }
.gc-reveal[data-delay="3"] { transition-delay: 360ms; }

/* =================================================================
   Home hero
   ================================================================= */
.gc-home-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--color-obsidian);
}
.gc-home-hero__plate { position: absolute; inset: 0; }
.gc-home-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(1.05) contrast(1.04) brightness(0.92) sepia(0.05);
  transform: scale(1.04); animation: gcDrift 32s ease-in-out infinite alternate;
}
@keyframes gcDrift { from { transform: scale(1.04); } to { transform: scale(1.12) translateY(-2%); } }
.gc-home-hero__duotone {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(15,84,73,0.30), rgba(15,84,73,0) 55%);
  mix-blend-mode: multiply;
}
.gc-home-hero__grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url('../assets/grain.svg'); background-size: 300px; opacity: 0.09; mix-blend-mode: overlay;
}
.gc-home-hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(95deg, rgba(13,17,23,0.78) 0%, rgba(13,17,23,0.46) 42%, rgba(13,17,23,0.12) 78%, rgba(13,17,23,0) 100%),
              linear-gradient(180deg, rgba(13,17,23,0.30), rgba(13,17,23,0.55));
}
.gc-home-hero__content {
  position: relative; z-index: 3; width: 100%;
  max-width: var(--content-wide); margin: 0 auto;
  padding: 120px clamp(20px, 4vw, 48px) clamp(96px, 12vh, 160px);
  animation: gcFadeRise 1100ms var(--ease-cinema) both;
}
.gc-home-hero__content .gc-display { max-width: 16ch; line-height: 0.86; margin-bottom: var(--space-6); }
.gc-home-hero__content .gc-deck { max-width: 40ch; }
.gc-home-hero__cta { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.gc-home-hero__scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3; }
.gc-home-hero__scroll-line {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(180deg, transparent, var(--color-gold));
  animation: gcPulse 2.4s ease-in-out infinite;
}
@keyframes gcPulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }
@keyframes gcFadeRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* =================================================================
   Destination feature grid (home + destinations index)
   ================================================================= */
.gc-dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); position: relative; z-index: 1; }
@media (max-width: 900px) { .gc-dest-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.gc-dest { display: block; group: dest; }
.gc-dest__media { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.gc-dest__img { transition: transform 700ms var(--ease-soft); }
.gc-dest:hover .gc-dest__img { transform: scale(1.06); }
.gc-dest__cap { padding: var(--space-6) 0 0; }
.gc-dest__idx {
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.22em; color: var(--color-gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.gc-dest__idx::before { content: ""; width: 26px; height: 1px; background: var(--color-gold); }
.gc-dest__region {
  display: block; font-family: var(--font-label); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-inverse-muted); margin: 16px 0 8px;
}
.gc-dest__name {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1; color: var(--color-parchment); margin: 0 0 12px;
}
.gc-dest__teaser {
  font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: var(--text-inverse-muted);
  margin: 0 0 18px; max-width: 32ch;
}

/* =================================================================
   Philosophy split (home)
   ================================================================= */
.gc-philo { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 82vh; background: var(--color-navy); }
@media (max-width: 900px) { .gc-philo { grid-template-columns: 1fr; } }
.gc-philo__text {
  display: flex; align-items: center;
  padding: clamp(64px, 9vw, 128px) clamp(24px, 6vw, 96px);
  position: relative;
}
.gc-philo__text::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url('../assets/topo-pattern.svg'); background-size: 640px; opacity: 0.05;
}
.gc-philo__inner { position: relative; z-index: 1; max-width: 56ch; }
.gc-philo__media { position: relative; min-height: 420px; }
@media (max-width: 900px) { .gc-philo__media { min-height: 380px; order: -1; } }

/* Destination detail: intro + facts, footer nav */
.gc-dest-intro { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
@media (max-width: 880px) { .gc-dest-intro { grid-template-columns: 1fr; } }
.gc-dest-foot { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
@media (max-width: 720px) { .gc-dest-foot { grid-template-columns: 1fr; } .gc-dest-foot > div:last-child { text-align: left !important; } }
.gc-next-dest {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 16px;
  font-family: var(--font-display);
}
.gc-next-dest span:first-child {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-ash);
}
.gc-next-dest strong {
  font-weight: 400; font-size: clamp(28px, 3vw, 40px); color: var(--color-navy); line-height: 1;
  transition: color var(--dur-quick) ease;
}
.gc-next-dest:hover strong { color: var(--color-quetzal); }

/* Inquiry page layout */
.gc-inquire-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 96px); align-items: start; margin-top: var(--space-8); }
@media (max-width: 880px) { .gc-inquire-grid { grid-template-columns: 1fr; } }
.gc-inquire-panel {
  background: linear-gradient(180deg, rgba(15,84,73,0.16), transparent), rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.18); padding: clamp(28px, 4vw, 56px);
}
.gc-inquire-done { text-align: left; }

/* Filter chips (experiences / journal) */
.gc-exp-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: var(--space-12); }
.gc-exp-filter--grid { display: grid; grid-template-columns: repeat(3, 1fr); justify-items: stretch; max-width: 680px; margin-left: auto; margin-right: auto; }
.gc-exp-filter--grid .gc-chip { text-align: center; width: 100%; }
@media (max-width: 640px) { .gc-exp-filter--grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .gc-exp-filter--grid { grid-template-columns: 1fr; } }
.gc-chip {
  font-family: var(--font-label); font-weight: 500; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-ash);
  background: transparent; border: 1px solid var(--border-subtle); cursor: pointer;
  padding: 11px 22px; transition: color var(--dur-quick) ease, border-color var(--dur-quick) ease, background var(--dur-quick) ease;
}
.gc-chip:hover { color: var(--color-navy); border-color: var(--color-navy); }
.gc-chip.is-on { color: var(--color-parchment); background: var(--color-navy); border-color: var(--color-navy); }

/* =================================================================
   Alternating feature rows (destinations / experiences detail)
   ================================================================= */
.gc-feature {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  gap: 0;
}
.gc-feature + .gc-feature { border-top: 1px solid rgba(201,168,76,0.16); }
.gc-feature__media { position: relative; min-height: 520px; overflow: hidden; }
.gc-feature__media .gc-plate { position: absolute; inset: 0; }
.gc-feature__media .gc-card__img, .gc-feature__media .gc-plate__img { transition: transform 900ms var(--ease-soft); }
.gc-feature:hover .gc-plate__img { transform: scale(1.05); }
.gc-feature__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 7vw, 104px) clamp(28px, 6vw, 88px);
}
.gc-feature--flip .gc-feature__media { order: 2; }
@media (max-width: 880px) {
  .gc-feature { grid-template-columns: 1fr; }
  .gc-feature__media { min-height: 360px; order: -1 !important; }
  .gc-feature--flip .gc-feature__media { order: -1; }
}
.gc-feature__excursions { display: flex; flex-wrap: wrap; gap: 0; margin: var(--space-6) 0 var(--space-8); }
.gc-feature__exc {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); display: inline-flex; align-items: center;
}
.gc-feature--inverse .gc-feature__exc { color: var(--text-inverse-muted); }
.gc-feature__exc:not(:last-child)::after { content: "★"; color: var(--color-red); font-size: 7px; margin: 0 14px; }

/* Generic intro lede band */
.gc-lede-band { text-align: center; }
.gc-lede-band .gc-prose { margin-left: auto; margin-right: auto; }

/* Two-column article layout (guide + TOC) */
.gc-guide-grid { display: grid; grid-template-columns: 220px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 920px) { .gc-guide-grid { grid-template-columns: 1fr; } .gc-toc { display: none; } }

/* Inquiry form (on inquire page) */
.gc-form { display: flex; flex-direction: column; gap: var(--space-8); margin-top: var(--space-8); }
.gc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
@media (max-width: 640px) { .gc-form__row { grid-template-columns: 1fr; } }
.gc-field { display: flex; flex-direction: column; gap: var(--space-2); }
.gc-field__label {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-ash);
}
.gc-field input, .gc-field textarea, .gc-field select {
  background: transparent; border: 0; border-bottom: 1px solid rgba(212,201,184,0.32);
  padding: 10px 0 12px; font-family: var(--font-body); font-size: 16px;
  color: var(--color-parchment); outline: none; resize: vertical;
  transition: border-color var(--dur-quick) ease;
}
.gc-field input:focus, .gc-field textarea:focus, .gc-field select:focus { border-bottom-color: var(--color-quetzal); }
.gc-field input::placeholder, .gc-field textarea::placeholder { color: rgba(245,240,232,0.30); font-style: italic; }
.gc-field select option { color: var(--color-navy); }

/* Contact detail list */
.gc-contact { display: flex; flex-direction: column; gap: var(--space-8); }
.gc-contact__item h4 {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--color-gold); margin: 0 0 var(--space-2);
}
.gc-contact__item p { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--text-inverse-muted); margin: 0; }

/* =================================================================
   Top navigation (injected by site.js)
   ================================================================= */
.gc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-8);
  padding: 20px clamp(20px, 4vw, 48px);
  transition: background var(--dur-base) var(--ease-soft),
              backdrop-filter var(--dur-base) var(--ease-soft),
              padding var(--dur-base) var(--ease-soft),
              border-color var(--dur-base) var(--ease-soft);
  border-bottom: 1px solid transparent;
}
/* On light pages the nav needs a legible state from the top */
.gc-nav.is-solid {
  background: rgba(13, 17, 23, 0.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding-top: 13px; padding-bottom: 13px;
  border-bottom-color: rgba(201, 168, 76, 0.16);
}
/* Single logo image — full-color quetzal on transparent PNG */
.gc-nav__logo img {
  height: 61px; width: auto; display: block;
  transition: height var(--dur-base) var(--ease-soft);
}
.gc-nav.is-solid .gc-nav__logo img { height: 53px; }

.gc-nav__links { display: flex; gap: clamp(20px, 2.4vw, 38px); align-items: center; }
.gc-nav__link {
  font-family: var(--font-label); font-weight: 500; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,240,232,0.78); cursor: pointer; position: relative;
  padding-bottom: 5px; transition: color var(--dur-quick) ease; white-space: nowrap;
}
.gc-nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px;
  background: var(--color-gold); width: 0; transition: width 300ms ease;
}
.gc-nav__link:hover, .gc-nav__link.is-on { color: var(--color-parchment); }
.gc-nav__link:hover::after, .gc-nav__link.is-on::after { width: 100%; }

.gc-nav__right { display: flex; align-items: center; gap: var(--space-6); }
.gc-nav__portal {
  font-family: var(--font-label); font-weight: 500; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-gold);
  white-space: nowrap; transition: color var(--dur-quick) ease;
}
.gc-nav__portal:hover { color: var(--color-gold-light); }
.gc-nav__burger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.gc-nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--color-parchment); transition: transform var(--dur-base) var(--ease-soft), opacity var(--dur-base) ease; }
.gc-nav.is-menu .gc-nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.gc-nav.is-menu .gc-nav__burger span:nth-child(2) { opacity: 0; }
.gc-nav.is-menu .gc-nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .gc-nav__links, .gc-nav__portal { display: none; }
  .gc-nav__burger { display: flex; }
  .gc-nav__cta { display: none; }
  .gc-nav.is-menu { background: rgba(13,17,23,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}

/* Mobile menu sheet */
.gc-menu {
  position: fixed; inset: 0; z-index: 95; background: rgba(13,17,23,0.98);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: var(--space-6); padding: var(--space-16) var(--gutter);
  opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease-soft);
}
.gc-menu.is-open { opacity: 1; pointer-events: auto; }
.gc-menu a {
  font-family: var(--font-display); font-weight: 400; font-size: 32px;
  color: var(--color-parchment); transition: color var(--dur-quick) ease;
}
.gc-menu a:hover { color: var(--color-gold); }
.gc-menu .gc-menu__sub {
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-gold); margin-top: var(--space-6);
}

/* =================================================================
   Footer (injected by site.js)
   ================================================================= */
.gc-footer {
  background: var(--color-obsidian); color: var(--color-parchment);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 48px) var(--space-12);
  position: relative; overflow: hidden;
}
.gc-footer__topo {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url('../assets/topo-pattern.svg'); background-size: 760px; opacity: 0.04;
}
.gc-footer__inner { max-width: var(--content-wide); margin: 0 auto; position: relative; z-index: 1; }
.gc-footer__top {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--space-12);
  align-items: start;
}
@media (max-width: 980px) { .gc-footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-12); } }
@media (max-width: 560px) { .gc-footer__top { grid-template-columns: 1fr; } }
.gc-footer__brand img { width: 92px; height: auto; margin-bottom: calc(var(--space-6) * 0.5); }
.gc-footer__brand p {
  font-family: var(--font-display); font-style: italic; font-size: 18px; line-height: 1.5;
  color: var(--color-gold-light); margin: 0; max-width: 24ch;
}
.gc-footer__col h4 {
  font-family: var(--font-label); font-weight: 500; font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-gold); margin: 0 0 var(--space-5);
}
.gc-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.gc-footer__col a {
  font-family: var(--font-body); font-size: 13.5px; color: var(--text-inverse-muted);
  transition: color var(--dur-quick) ease;
}
.gc-footer__col a:hover { color: var(--color-parchment); }
.gc-footer__rule { text-align: center; margin: clamp(48px, 7vw, 80px) auto var(--space-8); }
.gc-footer__rule img { width: 260px; max-width: 60%; opacity: 0.9; }
.gc-footer__bot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4);
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,240,232,0.42);
}

/* Cookie bar */
.gc-cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(13,17,23,0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; gap: var(--space-8);
  padding: 14px var(--gutter); flex-wrap: wrap;
  transform: translateY(100%); transition: transform var(--dur-slow) var(--ease-cinema);
}
.gc-cookie.is-up { transform: none; }
.gc-cookie p { margin: 0; font-family: var(--font-body); font-size: 12.5px; color: var(--text-inverse-muted); }
.gc-cookie a { color: var(--color-gold); }
.gc-cookie button {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--color-gold); color: var(--color-gold);
  padding: 9px 20px; cursor: pointer; transition: background var(--dur-quick) ease;
}
.gc-cookie button:hover { background: rgba(201,168,76,0.12); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .gc-reveal { opacity: 1 !important; transform: none !important; }
}
