/* ── Guias page styles ─────────────────────────────────────────────────── */

@font-face {
  font-family: 'Monik';
  src: url('../Monik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:           oklch(0.978 0.014 68);
  --bg-alt:       oklch(0.962 0.022 65);
  --fg:           oklch(0.22 0.048 38);
  --fg-soft:      oklch(0.44 0.042 38);
  --fg-xsoft:     oklch(0.62 0.030 38);
  --surface:      oklch(0.994 0.006 70);
  --border:       oklch(0.876 0.028 62);
  --accent:       oklch(0.52 0.125 28);
  --accent-deep:  oklch(0.42 0.125 28);
  --accent-light: oklch(0.52 0.125 28 / 0.10);
  --accent-fg:    oklch(0.99 0.005 68);
  --font: 'Monik', -apple-system, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; }
body { background: var(--bg); color: var(--fg); font-family: var(--font); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.g-header {
  position: fixed;
  top: clamp(12px, 2vw, 20px);
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 94vw);
  z-index: 200;
}
.g-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: oklch(0.992 0.008 68 / 0.88);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid oklch(0.88 0.022 65 / 0.55);
  box-shadow:
    0 1px 0 0 oklch(1 0 0 / 0.80) inset,
    0 6px 28px -6px oklch(0.22 0.048 38 / 0.10),
    0 0 0 1px oklch(0.52 0.125 28 / 0.06);
}
.g-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-soft);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  transition: color .18s, border-color .18s, background .18s;
  white-space: nowrap;
}
.g-back:hover { color: var(--fg); border-color: var(--fg); background: var(--surface); }
.g-logo { display: flex; align-items: center; justify-content: center; }
.g-logo svg { height: 28px; width: auto; }
.g-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 20px);
  flex-wrap: nowrap;
  overflow: hidden;
}
.g-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-soft);
  transition: color .18s;
  white-space: nowrap;
}
.g-nav a:hover { color: var(--fg); }
@media (max-width: 640px) {
  .g-nav { display: none; }
  .g-header-inner { grid-template-columns: auto 1fr; }
}

/* ── Shared eyebrow ──────────────────────────────────────────────────────── */
.g-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.g-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 14vh, 140px) clamp(20px, 5vw, 60px) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.g-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.g-hero-orb--a {
  width: min(80vw, 600px);
  height: min(80vw, 600px);
  background: radial-gradient(circle, oklch(0.55 0.12 28 / 0.30) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: orb-a 18s ease-in-out infinite;
}
.g-hero-orb--b {
  width: min(60vw, 500px);
  height: min(60vw, 500px);
  background: radial-gradient(circle, oklch(0.44 0.12 28 / 0.22) 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
  animation: orb-b 24s ease-in-out infinite;
}
@keyframes orb-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(8%, 10%) scale(1.1); }
  70%       { transform: translate(-4%, 5%) scale(0.95); }
}
@keyframes orb-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(-8%, -6%) scale(1.08); }
  70%       { transform: translate(5%, -2%) scale(0.97); }
}
.g-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2.2vw, 22px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.23,1,.32,1), transform .9s cubic-bezier(.23,1,.32,1);
}
.g-hero-content.anim-in { opacity: 1; transform: translateY(0); }
.g-hero-title {
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 700;
  font-style: italic;
  line-height: .95;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.g-hero-title em { font-style: normal; color: var(--accent); }
.g-hero-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--fg-soft);
  line-height: 1.65;
  max-width: 46ch;
}
.g-hero-strip {
  width: 100%;
  height: clamp(100px, 20vw, 200px);
  display: flex;
  gap: 8px;
  align-items: flex-end;
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 60px);
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
}
.g-hero-strip-img {
  flex: 0 0 auto;
  width: clamp(60px, 8vw, 100px);
  height: 100%;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  opacity: 0.55;
}

/* Scroll hint */
.g-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  color: var(--fg-xsoft);
}
.sl-mouse {
  width: 14px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  padding-top: 3px;
}
.sl-dot {
  width: 2px;
  height: 4px;
  background: currentColor;
  border-radius: 2px;
  animation: sl-scroll 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes sl-scroll {
  0%  { opacity: 1; transform: translateY(0); }
  60% { opacity: 0.2; transform: translateY(10px); }
  61% { opacity: 0; transform: translateY(0); }
  100%{ opacity: 1; transform: translateY(0); }
}

/* ── Guia sections ─────────────────────────────────────────────────────── */
.g-guia {
  padding: clamp(72px, 10vw, 120px) 0;
  overflow: hidden;
}
.g-guia--light { background: var(--bg); }
.g-guia--dark  { background: var(--bg-alt); }

.g-guia-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.g-guia-layout--rev { direction: rtl; }
.g-guia-layout--rev > * { direction: ltr; }

.g-guia-content {
  padding: clamp(32px, 5vw, 72px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .85s cubic-bezier(.23,1,.32,1), transform .85s cubic-bezier(.23,1,.32,1);
}
.g-guia-content.anim-in { opacity: 1; transform: translateX(0); }
[data-anim="slide-left"].anim-in { opacity: 1; transform: translateX(0); }
[data-anim="slide-left"] {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .85s cubic-bezier(.23,1,.32,1), transform .85s cubic-bezier(.23,1,.32,1);
}

.g-guia-num {
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  opacity: 0.12;
  display: block;
  margin-bottom: -24px;
  pointer-events: none;
  user-select: none;
}
.g-guia--dark .g-guia-num { opacity: 0.14; }

.g-guia-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.g-guia-title em { font-style: normal; color: var(--accent); }

.g-guia-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 42ch;
}

.g-guia-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.g-guia-bullets li {
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--fg-soft);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.g-guia-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Poses badge ──────────────────────────────────────────────────────────── */
.g-poses-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: oklch(1 0 0 / 0.76);
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  border: 1px solid oklch(0.90 0.018 65 / 0.75);
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.90) inset,
    0 4px 16px -4px oklch(0.22 0.048 38 / 0.10);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--accent);
  width: fit-content;
}
.g-poses-badge svg { flex-shrink: 0; }

/* ── CTA button ──────────────────────────────────────────────────────────── */
.g-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px 15px 26px;
  background: linear-gradient(148deg, oklch(0.56 0.120 28) 0%, oklch(0.44 0.128 26) 100%);
  color: var(--accent-fg);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.005em;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: var(--font);
  border: 1px solid oklch(0.40 0.128 26 / 0.45);
  transition:
    transform 0.22s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.22s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.22s ease;
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.20) inset,
    0 -1px 0 oklch(0 0 0 / 0.18) inset,
    0 10px 28px -6px oklch(0.50 0.125 28 / 0.50),
    0 3px 8px -3px oklch(0.50 0.125 28 / 0.22);
}
/* Top glass sheen */
.g-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 52%;
  background: linear-gradient(to bottom, oklch(1 0 0 / 0.18) 0%, transparent 100%);
  border-radius: var(--r-pill) var(--r-pill) 0 0;
  pointer-events: none;
}
.g-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.20) inset,
    0 -1px 0 oklch(0 0 0 / 0.18) inset,
    0 18px 40px -6px oklch(0.50 0.125 28 / 0.55),
    0 6px 14px -4px oklch(0.50 0.125 28 / 0.28);
}
.g-cta:active { transform: scale(0.97); filter: brightness(0.97); }

/* Arrow circle */
.g-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.18);
  border: 1px solid oklch(1 0 0 / 0.15);
  flex-shrink: 0;
  transition: transform 0.22s ease, background 0.22s ease;
}
.g-cta:hover .g-cta-arrow {
  transform: translateX(3px);
  background: oklch(1 0 0 / 0.28);
}

.g-cta--combo {
  padding: 18px 20px 18px 34px;
  font-size: 16px;
  align-self: center;
}

/* ── Photo column ────────────────────────────────────────────────────────── */
.g-guia-photos {
  overflow: hidden;
  height: clamp(480px, 62vw, 700px);
  position: relative;
  opacity: 0;
  transition: opacity .85s cubic-bezier(.23,1,.32,1) .1s;
  padding: clamp(20px, 3vw, 40px);
}
.g-guia-photos.anim-in { opacity: 1; }

/* ── Photo card (cycling background images) ──────────────────────────────── */
.g-photo-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid oklch(1 0 0 / 0.52);
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.80) inset,
    0 0 0 0.5px oklch(0.72 0.028 60 / 0.18),
    0 28px 80px -16px oklch(0.22 0.048 38 / 0.22),
    0 8px 24px -8px oklch(0.22 0.048 38 / 0.10);
  transition:
    transform 0.44s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.44s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.g-photo-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.80) inset,
    0 0 0 0.5px oklch(0.72 0.028 60 / 0.24),
    0 40px 100px -18px oklch(0.22 0.048 38 / 0.30),
    0 12px 32px -8px oklch(0.22 0.048 38 / 0.14);
}

/* iOS glass top-left sheen */
.g-photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    152deg,
    oklch(1 0 0 / 0.22) 0%,
    oklch(1 0 0 / 0.06) 26%,
    transparent 50%
  );
  border-radius: 32px;
  pointer-events: none;
}

.g-slides-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.g-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.95s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.g-slide.active { opacity: 1; }

.g-card-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    oklch(0 0 0 / 0.52) 0%,
    oklch(0 0 0 / 0.10) 55%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.g-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  align-items: center;
  z-index: 2;
}
.g-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.40);
  transition:
    width 0.40s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.40s ease;
  flex-shrink: 0;
}
.g-dot--active {
  width: 24px;
  border-radius: 4px;
  background: oklch(1 0 0 / 0.90);
}

/* ── Combo section ──────────────────────────────────────────────────────── */
.g-combo {
  background: oklch(0.94 0.038 55);
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.g-combo-orb {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 40%, oklch(0.52 0.125 28 / 0.22) 0%, transparent 55%);
  pointer-events: none;
  filter: blur(60px);
  animation: orb-a 20s ease-in-out infinite;
}
.g-combo-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.4vw, 24px);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.23,1,.32,1), transform .9s cubic-bezier(.23,1,.32,1);
}
.g-combo-inner.anim-in { opacity: 1; transform: translateY(0); }

.g-combo-num {
  font-size: clamp(56px, 10vw, 110px);
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: -20px;
}
.g-combo-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--accent-light);
  border: 1px solid oklch(0.52 0.125 28 / 0.30);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.g-combo-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.g-combo-title em { font-style: normal; color: var(--accent); }
.g-combo-desc {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--fg-soft);
  line-height: 1.65;
  max-width: 44ch;
}
.g-combo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.g-combo-pills span {
  padding: 5px 14px;
  border-radius: var(--r-pill);
  border: 1px solid oklch(0.22 0.048 38 / 0.20);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-soft);
}
/* Combo poses badge slight override for warm bg */
.g-poses-badge--combo {
  background: oklch(0.97 0.018 65 / 0.80);
  border-color: oklch(0.86 0.028 62 / 0.70);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.g-footer {
  padding: clamp(28px, 5vw, 48px) 20px clamp(48px, 8vw, 72px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-xsoft);
}
.g-footer a { color: var(--fg-soft); transition: color .18s; }
.g-footer a:hover { color: var(--fg); }

/* ── Modal ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: oklch(0.22 0.048 38 / 0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity .28s ease;
}
.modal-overlay:not([hidden]) { opacity: 1; }
@media (min-width: 600px) {
  .modal-overlay { align-items: center; padding: 20px; }
}
.modal-sheet {
  background: var(--surface);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  width: 100%;
  max-width: 540px;
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  transform: translateY(40px);
  transition: transform .32s cubic-bezier(.23,1,.32,1);
  max-height: 95svh;
  overflow-y: auto;
}
.modal-overlay:not([hidden]) .modal-sheet { transform: translateY(0); }
@media (min-width: 600px) {
  .modal-sheet {
    border-radius: var(--r-xl);
    transform: scale(0.95) translateY(10px);
  }
  .modal-overlay:not([hidden]) .modal-sheet { transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: oklch(0.95 0.012 68);
  color: var(--fg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
}
.modal-close:hover { background: var(--border); color: var(--fg); }
.modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.modal-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 14px;
  color: var(--fg-soft);
  margin-bottom: clamp(18px, 3vw, 28px);
  line-height: 1.5;
}
.modal-form { display: flex; flex-direction: column; gap: 10px; }
.mf-field {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: oklch(0.982 0.010 70);
  transition: border-color .18s, box-shadow .18s;
}
.mf-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.mf-icon {
  width: 52px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.970 0.014 70);
  border-right: 1.5px solid var(--border);
  flex-shrink: 0;
  color: var(--fg-soft);
}
.mf-field input {
  flex: 1;
  height: 56px;
  padding: 0 16px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 15px;
  color: var(--fg);
  outline: none;
}
.mf-field input::placeholder { color: var(--fg-xsoft); }
.modal-cta {
  height: 56px;
  background: var(--accent);
  color: var(--accent-fg);
  border-radius: var(--r-lg);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background .18s, transform .15s;
  margin-top: 6px;
}
.modal-cta:hover { background: var(--accent-deep); transform: scale(1.015); }
.modal-cta:active { transform: scale(0.98); }
.mf-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--fg-soft);
  line-height: 1.5;
  cursor: pointer;
  padding-top: 4px;
}
.mf-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.mf-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--fg-xsoft);
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: var(--r-md);
  background: oklch(0.968 0.018 68);
}
.mf-privacy svg { flex-shrink: 0; margin-top: 1px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .g-guia-layout, .g-guia-layout--rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .g-guia-layout--rev > * { direction: ltr; }
  .g-guia-photos { height: clamp(360px, 58vw, 520px); padding: clamp(12px, 2.5vw, 24px); }
  .g-guia-content { padding: clamp(28px, 5vw, 48px) clamp(20px, 5vw, 40px); }
}
@media (max-width: 600px) {
  .g-hero-title { font-size: clamp(44px, 12vw, 72px); }
  .g-guia-photos { height: 380px; padding: 16px; }
  .g-guia-content { padding: 28px 20px; }
  .g-combo-title { font-size: clamp(36px, 9vw, 56px); }
}
@media (prefers-reduced-motion: reduce) {
  .g-hero-orb--a, .g-hero-orb--b, .g-combo-orb { animation: none; }
}
