/* =========================================================================
   The Byron Diaz Group — Design System  (v2)
   Brand: energetic + premium. ORANGE (Byron's brand) + deep navy + warm white.
   Headers: Poppins · Body: Inter. Dependency-free.
   Retheme the whole site by editing the :root variables below.
   ========================================================================= */

:root {
  /* Brand — Orange (Byron's signature) */
  --orange-100: #ffe7d3;
  --orange-200: #ffd0ad;
  --orange-300: #ffb37e;
  --orange-400: #ff934a;
  --orange-500: #f5751c;   /* primary brand orange */
  --orange-600: #e0610f;
  --orange-700: #b94d0c;

  /* Deep navy — structure, dark sections, text */
  --navy-900: #0a1a29;
  --navy-800: #0e2436;
  --navy-700: #143247;
  --navy-600: #1d4866;
  --navy-500: #2f6588;
  --navy-400: #5189aa;

  /* Neutrals (warm) */
  --paper:  #fffdf9;
  --cream:  #fbf5ec;
  --sand:   #f4ecdd;
  --white:  #ffffff;

  --ink:        #122130;
  --ink-soft:   #2a3a48;
  --muted:      #586774;
  --muted-light:#8a97a1;
  --line:       #e7ddcc;
  --line-cool:  #e3e8ee;

  --good: #1f9d57;     /* whatsapp/success */

  /* Typography */
  --font-display: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(10, 26, 41, 0.06);
  --shadow: 0 16px 44px -20px rgba(10, 26, 41, 0.30);
  --shadow-lg: 0 44px 90px -34px rgba(10, 26, 41, 0.50);
  --ring: 0 0 0 4px rgba(245, 117, 28, 0.26);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.06rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

::selection { background: var(--orange-300); color: var(--navy-900); }

/* --------------------------- Typography -------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.h-xl { font-size: clamp(2.5rem, 1.6rem + 4vw, 4.7rem); letter-spacing: -0.03em; line-height: 1.04; }
.h-lg { font-size: clamp(2rem, 1.4rem + 2.7vw, 3.3rem); letter-spacing: -0.025em; }
.h-md { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.3rem); }
.h-sm { font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.45rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange-500); display: inline-block; }
.eyebrow.center::after { content: ""; width: 26px; height: 2px; background: var(--orange-500); display: inline-block; }

.lede { font-size: clamp(1.06rem, 1rem + 0.45vw, 1.28rem); color: var(--muted); line-height: 1.6; }
.gold-text, .accent-text { color: var(--orange-600); }

/* ----------------------------- Layout ---------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3rem, 2.2rem + 3vw, 5.25rem); position: relative; }
.section--tight { padding-block: clamp(2.25rem, 1.75rem + 2vw, 3.5rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(1.75rem, 1.4rem + 1.4vw, 2.75rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lede { margin-top: 1.1rem; }
.section-head h2 { margin-top: 0.9rem; }

.bg-cream { background: var(--cream); }
.bg-sand { background: linear-gradient(180deg, var(--paper), var(--sand)); }
.bg-navy {
  background: radial-gradient(125% 135% at 12% 8%, var(--navy-700), var(--navy-900) 62%);
  color: var(--cream);
}
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .lede, .bg-navy p { color: rgba(247, 242, 232, 0.82); }
.bg-navy .eyebrow { color: var(--orange-400); }
.bg-navy .eyebrow::before, .bg-navy .eyebrow.center::after { background: var(--orange-400); }

.grid { display: grid; gap: clamp(1.25rem, 1rem + 1.5vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ----------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 600; font-size: 0.97rem;
  padding: 0.92rem 1.55rem;
  border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--orange-500); color: var(--white); box-shadow: 0 12px 26px -10px rgba(245, 117, 28, 0.7); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(245, 117, 28, 0.8); }

.btn--navy { background: var(--navy-700); color: var(--cream); box-shadow: 0 12px 26px -14px rgba(10, 26, 41, 0.8); }
.btn--navy:hover { background: var(--navy-600); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--orange-500); color: var(--orange-600); transform: translateY(-2px); }

.btn--light { background: rgba(255,255,255,0.1); color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(247,242,232,0.3); backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.btn--wa { background: #25d366; color: #07351b; }
.btn--wa:hover { background: #2ee874; transform: translateY(-2px); }

.btn--lg { padding: 1.08rem 1.95rem; font-size: 1.04rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--orange-600); transition: gap 0.25s var(--ease), color 0.25s var(--ease); }
.link-arrow:hover { gap: 0.75rem; color: var(--navy-700); }
.bg-navy .link-arrow { color: var(--orange-400); }

/* ----------------------------- Top bar --------------------------------- */
.topbar { background: var(--navy-900); color: var(--cream); font-size: 0.82rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.5rem; }
.topbar a { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--cream); opacity: 0.9; transition: opacity 0.2s, color 0.2s; white-space: nowrap; }
.topbar-right { flex: none; }
.topbar a:hover { opacity: 1; color: var(--orange-400); }
.topbar .flag { font-size: 0.95rem; }
.topbar-left { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar-right { display: inline-flex; align-items: center; gap: 1.25rem; }
@media (max-width: 720px) { .topbar-right .hide-sm { display: none; } }

/* ------------------------------ Header --------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.8rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { height: 38px; width: auto; flex: none; }
.brand__text { line-height: 1.05; }
.brand__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); letter-spacing: -0.02em; white-space: nowrap; }
.brand__sub { display: block; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange-600); font-weight: 700; margin-top: 1px; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav a:not(.btn) { font-size: 0.94rem; font-weight: 500; color: var(--ink-soft); position: relative; padding-block: 0.3rem; transition: color 0.2s; white-space: nowrap; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--orange-500); transition: width 0.25s var(--ease); }
.nav a:not(.btn):hover { color: var(--orange-600); }
.nav a:not(.btn):hover::after { width: 100%; }
.nav a.btn--navy { display: none; padding: 0.62rem 1.25rem; }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }

.lang-toggle { display: inline-flex; background: var(--sand); border-radius: var(--radius-pill); padding: 3px; gap: 2px; }
.lang-toggle button { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.35rem 0.7rem; border-radius: var(--radius-pill); color: var(--muted); transition: all 0.2s var(--ease); }
.lang-toggle button.active { background: var(--navy-800); color: var(--cream); box-shadow: var(--shadow-sm); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--sand); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav, .header-actions .btn--nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    gap: 0.25rem; padding: 6rem 2rem 2rem; transform: translateX(100%);
    transition: transform 0.4s var(--ease); box-shadow: var(--shadow-lg); z-index: 90;
  }
  body.nav-open .nav { transform: translateX(0); display: flex; }
  .nav a { font-size: 1.2rem; font-family: var(--font-display); font-weight: 500; padding-block: 0.6rem; width: 100%; }
  .nav a.btn--navy { display: inline-flex; margin-top: 1rem; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(10,26,41,0.45); opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 80; }
  body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
}

/* ------------------------------- Hero ---------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(135% 120% at 82% -10%, var(--navy-600), var(--navy-900) 58%);
  color: var(--cream);
  padding-block: clamp(2.25rem, 1.75rem + 3vw, 4rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(247,242,232,0.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: 0.5; pointer-events: none;
}
.hero__glow { position: absolute; width: 520px; height: 520px; right: -80px; top: -120px; background: radial-gradient(circle, rgba(245,117,28,0.35), transparent 65%); filter: blur(20px); pointer-events: none; }
.hero__skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; opacity: 0.55; pointer-events: none; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
@media (max-width: 940px) { .hero .container { grid-template-columns: 1fr; } }

.hero__pill { display: inline-flex; align-items: center; gap: 0.55rem; background: rgba(247,242,232,0.1); border: 1px solid rgba(247,242,232,0.2); padding: 0.45rem 0.95rem; border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 600; color: var(--orange-200); backdrop-filter: blur(6px); }
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5);} 70%{ box-shadow: 0 0 0 10px rgba(74,222,128,0);} 100%{ box-shadow:0 0 0 0 rgba(74,222,128,0);} }

.hero h1 { color: var(--white); margin-block: 1.1rem 1rem; }
.hero h1 em { color: var(--orange-400); font-style: normal; }
.hero__sub { font-size: clamp(1.04rem, 1rem + 0.4vw, 1.22rem); color: rgba(247,242,232,0.85); max-width: 34rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.7rem; margin-top: 1.7rem; padding-top: 1.4rem; border-top: 1px solid rgba(247,242,232,0.16); }
.hero__stat .num { font-family: var(--font-display); font-size: 1.85rem; font-weight: 600; color: var(--orange-400); line-height: 1; }
.hero__stat .lbl { font-size: 0.8rem; color: rgba(247,242,232,0.75); margin-top: 0.35rem; }

/* ----------------------- Instagram-style hero card --------------------- */
.hero__visual { display: flex; justify-content: center; }
.ig {
  width: min(370px, 100%); background: var(--white); color: var(--ink);
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.5);
}
.ig__top { display: flex; align-items: center; gap: 0.65rem; padding: 0.75rem 0.9rem; }
.ig__avatar { width: 42px; height: 42px; border-radius: 50%; padding: 2px; background: conic-gradient(from 130deg, var(--orange-400), var(--orange-600), #ff5a8a, var(--orange-400)); flex: none; }
.ig__avatar > * { width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--white); object-fit: cover; display: grid; place-items: center; background: var(--navy-700); color: var(--orange-300); font-family: var(--font-display); font-weight: 600; }
.ig__user { flex: 1; line-height: 1.15; min-width: 0; }
.ig__user strong { font-size: 0.86rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.ig__user strong svg { width: 14px; height: 14px; color: #3897f0; }
.ig__user span { font-size: 0.72rem; color: var(--muted); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ig__follow { font-size: 0.8rem; font-weight: 700; color: var(--orange-600); flex: none; }
.ig__media { position: relative; aspect-ratio: 4 / 5; background: linear-gradient(160deg, var(--navy-600), var(--navy-900)); overflow: hidden; }
.ig__media video, .ig__media img { width: 100%; height: 100%; object-fit: cover; }
.ig__reel { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3; color: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
.ig__reel svg { width: 22px; height: 22px; }
.ig__play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
.ig__play span { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.92); display: grid; place-items: center; box-shadow: var(--shadow); transition: transform 0.25s var(--ease); }
.ig__play span svg { width: 26px; height: 26px; color: var(--navy-800); margin-left: 3px; }
.ig:hover .ig__play span { transform: scale(1.08); }
.ig__placeholder { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: rgba(247,242,232,0.8); padding: 1rem; }
.ig__placeholder svg { width: 36px; height: 36px; margin: 0 auto 0.5rem; }
.ig__placeholder span { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.ig__actions { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0.9rem 0.3rem; }
.ig__actions a, .ig__actions button { color: var(--ink); display: inline-flex; transition: transform 0.2s var(--ease), color 0.2s; }
.ig__actions a:hover, .ig__actions button:hover { transform: scale(1.12); color: var(--orange-600); }
.ig__actions svg { width: 25px; height: 25px; }
.ig__actions .heart.liked { color: #ed4956; }
.ig__actions .spacer { flex: 1; }
.ig__likes { padding: 0.1rem 0.9rem; font-size: 0.83rem; font-weight: 600; }
.ig__caption { padding: 0.15rem 0.9rem 0.5rem; font-size: 0.84rem; line-height: 1.45; color: var(--ink-soft); }
.ig__caption b { font-weight: 600; }
.ig__msgbar { display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.7rem 0.8rem; border-top: 1px solid var(--line-cool); margin-top: 0.3rem; }
.ig__msg { flex: 1; display: flex; align-items: center; gap: 0.5rem; border: 1.5px solid var(--line-cool); border-radius: var(--radius-pill); padding: 0.55rem 0.95rem; color: var(--muted); font-size: 0.84rem; transition: border-color 0.2s, color 0.2s; }
.ig__msg:hover { border-color: var(--orange-400); color: var(--ink); }
.ig__msg svg { width: 16px; height: 16px; }
.ig__send { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--orange-500); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px -8px rgba(245,117,28,0.8); transition: transform 0.2s var(--ease), background 0.2s; }
.ig__send:hover { background: var(--orange-600); transform: translateY(-2px) scale(1.05); }
.ig__send svg { width: 19px; height: 19px; }

/* --------------------------- Trust strip ------------------------------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--paper); }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2.5rem; padding-block: 1.4rem; }
.trust-item { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.trust-item svg { width: 22px; height: 22px; color: var(--orange-500); flex: none; }
.trust-item strong { color: var(--ink); }

/* ------------------------------ Cards ---------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.3rem; background: var(--navy-700); color: var(--orange-400); }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card__list { margin-top: 1.1rem; display: grid; gap: 0.55rem; }
.card__list li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); align-items: flex-start; }
.card__list li svg { width: 18px; height: 18px; color: var(--orange-500); flex: none; margin-top: 0.2rem; }
.card--feature { background: linear-gradient(165deg, var(--navy-700), var(--navy-900)); color: var(--cream); border: none; }
.card--feature h3 { color: var(--white); }
.card--feature p, .card--feature .card__list li { color: rgba(247,242,232,0.82); }
.card--feature .card__icon { background: var(--orange-500); color: var(--white); }
.card--feature .card__list li svg { color: var(--orange-400); }

.tag { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange-700); background: var(--orange-100); padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); }

/* --------------------------- Value props ------------------------------- */
.value-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(247,242,232,0.14); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 720px){ .value-grid { grid-template-columns: 1fr; } }
.value { padding: clamp(1.6rem, 1.3rem + 1vw, 2.4rem); background: var(--navy-800); }
.value__num { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--orange-400); letter-spacing: 0.1em; }
.value h3 { color: var(--white); margin-block: 0.9rem 0.5rem; font-size: 1.3rem; }
.value p { color: rgba(247,242,232,0.78); font-size: 0.96rem; }

/* ------------------------------ Steps ---------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.25rem, 1rem + 1vw, 2rem); }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; }
.step__num { width: 54px; height: 54px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--orange-400); color: var(--orange-600); font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; display: grid; place-items: center; margin-bottom: 1.1rem; position: relative; z-index: 2; }
.bg-navy .step__num { background: rgba(247,242,232,0.06); }
.step h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.step__line { position: absolute; top: 27px; left: 54px; right: -1rem; height: 1.5px; background: linear-gradient(90deg, var(--orange-400), transparent); z-index: 1; }
@media (max-width: 900px){ .step__line { display: none; } }

/* --------------------------- Programs ---------------------------------- */
.program { display: flex; gap: 1.1rem; padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease); height: 100%; }
.program:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.program__badge { flex: none; width: 60px; height: 60px; border-radius: 14px; background: var(--navy-700); color: var(--orange-400); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1; text-align: center; }
.program h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.program p { font-size: 0.92rem; color: var(--muted); }

/* ----------------------- IDX / Home search ----------------------------- */
.idx-search {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(1.1rem, 0.9rem + 1vw, 1.6rem);
  display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: 0.9rem; align-items: end;
  margin-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem);
}
@media (max-width: 820px){ .idx-search { grid-template-columns: 1fr 1fr; } .idx-search .idx-search__btn { grid-column: 1 / -1; } }
@media (max-width: 480px){ .idx-search { grid-template-columns: 1fr; } }
.idx-field label { display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.idx-field input, .idx-field select { width: 100%; font-family: inherit; font-size: 0.96rem; color: var(--ink); padding: 0.75rem 0.85rem; border: 1.5px solid var(--line-cool); border-radius: var(--radius-sm); background: var(--paper); }
.idx-field input:focus, .idx-field select:focus { outline: none; border-color: var(--orange-500); box-shadow: var(--ring); }
.idx-search__btn { height: fit-content; }

.listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 1rem + 1vw, 1.8rem); }
@media (max-width: 900px){ .listing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px){ .listing-grid { grid-template-columns: 1fr; } }
.listing { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.listing:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.listing__media { position: relative; aspect-ratio: 4 / 3; }
.listing__media .photo-ph { position: absolute; inset: 0; }
.listing__tag { position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.32rem 0.7rem; border-radius: var(--radius-pill); color: #fff; background: var(--orange-500); box-shadow: var(--shadow-sm); }
.listing__tag--sold { background: var(--navy-700); }
.listing__fav { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.92); display: grid; place-items: center; color: var(--navy-700); }
.listing__fav svg { width: 17px; height: 17px; }
.listing__body { padding: 1.1rem 1.2rem 1.3rem; }
.listing__price { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--navy-800); letter-spacing: -0.02em; }
.listing__specs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 0.5rem 0 0.6rem; color: var(--ink-soft); font-size: 0.88rem; }
.listing__specs span { display: inline-flex; align-items: center; gap: 0.3rem; }
.listing__specs span + span { padding-left: 0.7rem; border-left: 1px solid var(--line); }
.listing__addr { color: var(--muted); font-size: 0.9rem; display: flex; align-items: center; gap: 0.4rem; }
.listing__addr svg { width: 15px; height: 15px; color: var(--orange-500); flex: none; }
.idx-note { text-align: center; max-width: 46rem; margin: clamp(2rem,1.5rem + 1vw,3rem) auto 0; font-size: 0.85rem; color: var(--muted-light); }

/* ------------------------------ Invest --------------------------------- */
.invest-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,1rem + 4vw,4.5rem); align-items: center; }
@media (max-width: 900px){ .invest-split { grid-template-columns: 1fr; } }
.ladder { display: grid; gap: 0.9rem; }
.ladder__rung { display: flex; align-items: center; gap: 1rem; background: rgba(247,242,232,0.06); border: 1px solid rgba(247,242,232,0.14); border-radius: var(--radius); padding: 1rem 1.2rem; }
.ladder__rung .n { width: 40px; height: 40px; border-radius: 11px; background: var(--orange-500); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; flex: none; }
.ladder__rung:nth-child(1){ margin-right: 22%; }
.ladder__rung:nth-child(2){ margin-right: 11%; }
.ladder__rung strong { color: var(--white); display: block; font-size: 1rem; }
.ladder__rung span { color: rgba(247,242,232,0.7); font-size: 0.85rem; }
.invest-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.invest-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.invest-list svg { width: 24px; height: 24px; color: var(--orange-400); flex: none; }
.invest-list strong { color: var(--white); display: block; }
.invest-list span { color: rgba(247,242,232,0.78); font-size: 0.93rem; }

/* ------------------------------ Areas ---------------------------------- */
.area-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 900px){ .area-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .area-grid { grid-template-columns: 1fr; } }
.area {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 170px;
  display: flex; align-items: flex-end; padding: 1.1rem; color: var(--cream);
  background: linear-gradient(160deg, var(--navy-600), var(--navy-900));
  border: 1px solid var(--line); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.area:nth-child(odd){ background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); }
.area:nth-child(3n){ background: linear-gradient(160deg, var(--orange-600), var(--navy-800)); }
.area::after { content:""; position: absolute; inset: 0; background-image: radial-gradient(rgba(247,242,232,0.08) 1px, transparent 1px); background-size: 16px 16px; }
.area:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.area__name { position: relative; z-index: 2; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.area__note { position: relative; z-index: 2; font-size: 0.8rem; opacity: 0.85; display: block; }

/* Photo placeholder (reusable) */
.photo-ph {
  position: relative; background:
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.14)),
    repeating-linear-gradient(45deg, rgba(247,242,232,0.04) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--navy-500), var(--navy-900));
  display: grid; place-items: center; color: rgba(247,242,232,0.7); overflow: hidden; height: 100%;
}
.photo-ph__inner { text-align: center; padding: 1rem; }
.photo-ph__inner svg { width: 32px; height: 32px; margin-inline: auto; opacity: 0.8; }
.photo-ph__inner span { display: block; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.5rem; opacity: 0.8; }
.photo-ph--light { background:
    linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0.05)),
    repeating-linear-gradient(45deg, rgba(20,76,58,0.04) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--sand), var(--orange-100));
  color: var(--navy-700); }

/* ------------------------------ About ---------------------------------- */
.about-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,1rem + 4vw,4.5rem); align-items: center; }
@media (max-width: 900px){ .about-split { grid-template-columns: 1fr; } }
.about-photo { position: relative; }
.about-photo .photo-ph { aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-photo .stamp { position: absolute; bottom: -1.2rem; right: -1.2rem; background: var(--orange-500); color: #fff; border-radius: var(--radius); padding: 1rem 1.2rem; box-shadow: var(--shadow-lg); text-align: center; }
.about-photo .stamp .y { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; line-height: 1; }
.about-photo .stamp .t { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
@media (max-width: 900px){ .about-photo { max-width: 360px; } .about-photo .stamp { right: 0; } }
.signature { font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: 1.5rem; color: var(--navy-700); margin-top: 1.4rem; letter-spacing: -0.01em; }
.about-awards { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.award-chip { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid var(--line); padding: 0.55rem 0.95rem; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.award-chip svg { width: 18px; height: 18px; color: var(--orange-600); }

/* ------------------------------ Team ----------------------------------- */
.member { text-align: center; }
.member { align-self: start; }
.member .photo-ph { aspect-ratio: 1; height: auto; border-radius: var(--radius-lg); margin-bottom: 1rem; }
.member h3 { font-size: 1.12rem; }
.member .role { color: var(--orange-700); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; }
.member .langs { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }

/* -------------------------- Testimonials ------------------------------- */
.tslider { position: relative; max-width: 56rem; margin-inline: auto; }
.tslider__track { display: flex; transition: transform 0.5s var(--ease); }
.tslide { flex: 0 0 100%; padding: 0 0.5rem; }
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem,1.5rem + 2vw,3.2rem); box-shadow: var(--shadow); text-align: center; }
.quote-card .mark { font-family: var(--font-display); font-size: 3.4rem; line-height: 0.6; color: var(--orange-400); height: 1.7rem; }
.quote-card blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.18rem, 1.05rem + 0.7vw, 1.55rem); line-height: 1.42; color: var(--ink); letter-spacing: -0.015em; margin-block: 1.2rem 1.6rem; }
.quote-card .author { display: inline-flex; align-items: center; gap: 0.8rem; }
.quote-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy-700); color: var(--orange-400); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.quote-card .who { text-align: left; }
.quote-card .who strong { display: block; font-size: 0.98rem; }
.quote-card .who span { font-size: 0.82rem; color: var(--muted); }
.stars { color: var(--orange-500); display: inline-flex; gap: 2px; margin-bottom: 0.4rem; }
.stars svg { width: 18px; height: 18px; }
.tslider__nav { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.8rem; }
.tdot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all 0.25s var(--ease); }
.tdot.active { background: var(--orange-500); width: 28px; border-radius: var(--radius-pill); }

/* ------------------------------ CTA ------------------------------------ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.25rem,1.8rem + 2.4vw,3.75rem); text-align: center; background: radial-gradient(120% 160% at 82% 0%, var(--navy-600), var(--navy-900)); color: var(--cream); }
.cta-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(247,242,232,0.07) 1px, transparent 1px); background-size: 20px 20px; }
.cta-band__glow { position:absolute; width: 420px; height: 420px; left: -80px; bottom: -160px; background: radial-gradient(circle, rgba(245,117,28,0.4), transparent 65%); }
.cta-band > *:not(.cta-band__glow) { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); }
.cta-band .lede { color: rgba(247,242,232,0.85); margin: 1rem auto 2rem; max-width: 38rem; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ----------------------------- Contact --------------------------------- */
.contact-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,1rem + 3vw,3.5rem); align-items: start; }
@media (max-width: 900px){ .contact-split { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,1.3rem + 1.5vw,2.6rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.98rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1.5px solid var(--line-cool); border-radius: var(--radius-sm);
  background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange-500); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px){ .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--muted-light); margin-top: 0.4rem; }
.form-success { display: none; text-align: center; padding: 1.5rem; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--good); margin: 0 auto 1rem; }

.contact-info { display: grid; gap: 1.1rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row__ico { width: 46px; height: 46px; border-radius: 13px; background: var(--navy-700); color: var(--orange-400); display: grid; place-items: center; flex: none; }
.contact-row__ico svg { width: 20px; height: 20px; }
.contact-row h4 { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; margin-bottom: 0.2rem; }
.contact-row a, .contact-row p { font-size: 1.02rem; color: var(--ink); font-weight: 500; }
.contact-row a:hover { color: var(--orange-600); }
.map-ph { margin-top: 0.5rem; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--line); }

/* ----------------------------- Footer ---------------------------------- */
.footer { background: var(--navy-900); color: rgba(247,242,232,0.7); padding-block: clamp(2.25rem,1.75rem + 1.6vw,3.25rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247,242,232,0.12); }
@media (max-width: 820px){ .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer__top { grid-template-columns: 1fr; } }
.footer .brand__name { color: var(--white); }
.footer p { font-size: 0.92rem; line-height: 1.7; }
.footer h4 { font-family: var(--font-body); color: var(--white); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { display: grid; gap: 0.6rem; }
.footer ul a { font-size: 0.94rem; color: rgba(247,242,232,0.72); transition: color 0.2s; }
.footer ul a:hover { color: var(--orange-400); }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(247,242,232,0.08); display: grid; place-items: center; color: var(--cream); transition: background 0.25s, transform 0.25s; }
.footer__social a:hover { background: var(--orange-500); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 1.8rem; font-size: 0.82rem; }
.footer__legal { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.eho { display: inline-flex; align-items: center; gap: 0.5rem; }
.eho svg { width: 26px; height: 26px; color: rgba(247,242,232,0.6); }
.footer__disclaimer { font-size: 0.78rem; color: rgba(247,242,232,0.5); margin-top: 1.5rem; line-height: 1.6; }

/* --------------------- Floating WhatsApp & to-top ---------------------- */
.fab { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 70; display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-end; }
.fab__wa { display: inline-flex; align-items: center; gap: 0.6rem; background: #25d366; color: #07351b; padding: 0.8rem 1.15rem; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow-lg); transition: transform 0.25s var(--ease); }
.fab__wa svg { width: 22px; height: 22px; }
.fab__wa:hover { transform: scale(1.05); }
.to-top { width: 46px; height: 46px; border-radius: 50%; background: var(--navy-700); color: var(--cream); display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.3s var(--ease); align-self: flex-end; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }
@media (max-width: 520px){ .fab__wa span { display: none; } .fab__wa { padding: 0.85rem; } }

/* --------------------------- Reveal anim ------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"]{ transition-delay: 0.08s; }
[data-reveal-delay="2"]{ transition-delay: 0.16s; }
[data-reveal-delay="3"]{ transition-delay: 0.24s; }
[data-reveal-delay="4"]{ transition-delay: 0.32s; }

/* ----------------------------- i18n ------------------------------------ */
[data-lang-es] { display: none; }
html[lang="es"] [data-lang-en] { display: none; }
html[lang="es"] [data-lang-es] { display: inline; }
html[lang="es"] [data-lang-es].block { display: block; }

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.flex-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.muted { color: var(--muted); }

/* =======================================================================
   CONTENT / SEO PAGES (city, service, guide)
   ======================================================================= */

/* Anchor offset so sticky header doesn't cover section tops */
:target { scroll-margin-top: 90px; }

/* --------------------------- Page hero --------------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(130% 130% at 85% -20%, var(--navy-600), var(--navy-900) 62%);
  color: var(--cream); padding-block: clamp(2rem, 1.6rem + 2.4vw, 3.5rem);
}
.page-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(247,242,232,0.06) 1px, transparent 1px); background-size: 22px 22px; opacity:.5; }
.page-hero__glow { position:absolute; width:460px; height:460px; right:-90px; top:-130px; background: radial-gradient(circle, rgba(245,117,28,0.32), transparent 65%); pointer-events:none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-top: 1rem; max-width: 18ch; }
.page-hero h1 em { color: var(--orange-400); font-style: normal; }
.page-hero__intro { color: rgba(247,242,232,0.85); font-size: clamp(1.05rem,1rem + 0.4vw,1.25rem); max-width: 46rem; margin-top: 1rem; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }
.page-hero__stats { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(247,242,232,0.16); }
.page-hero__stats .s strong { font-family: var(--font-display); font-weight:600; font-size: 1.5rem; color: var(--orange-400); display:block; line-height:1; }
.page-hero__stats .s span { font-size: 0.82rem; color: rgba(247,242,232,0.75); }

/* --------------------------- Breadcrumb -------------------------------- */
.breadcrumb { font-size: 0.82rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(247,242,232,0.6); }
.breadcrumb a { color: rgba(247,242,232,0.8); }
.breadcrumb a:hover { color: var(--orange-400); }
.breadcrumb li[aria-current] { color: var(--orange-300); }
.breadcrumb .sep { opacity: 0.5; }
/* on light backgrounds */
.breadcrumb--light li { color: var(--muted); }
.breadcrumb--light a { color: var(--ink-soft); }
.breadcrumb--light a:hover { color: var(--orange-600); }

/* ------------------------------ Prose ---------------------------------- */
.prose { max-width: 46rem; }
.prose.wide { max-width: 60rem; }
.prose > * + * { margin-top: 1rem; }
.prose h2 { font-size: clamp(1.45rem,1.2rem + 1.1vw,1.9rem); margin-top: 1.9rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.prose p { color: var(--ink-soft); }
.prose a:not(.btn) { color: var(--orange-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--orange-200); }
.prose a:not(.btn):hover { text-decoration-color: var(--orange-500); }
.prose ul, .prose ol { padding-left: 0; display: grid; gap: 0.6rem; }
.prose ul li { display: flex; gap: 0.6rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; background: var(--orange-100); border-radius: 6px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0610f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-size: 13px; background-position: center; background-repeat: no-repeat; }
.prose ol { counter-reset: li; list-style: none; }
.prose ol li { counter-increment: li; display: flex; gap: 0.75rem; color: var(--ink-soft); }
.prose ol li::before { content: counter(li); flex: none; width: 24px; height: 24px; background: var(--navy-700); color: #fff; border-radius: 50%; font-size: 0.78rem; font-weight: 700; display: grid; place-items: center; font-family: var(--font-display); }

/* Content layout: main + sticky sidebar */
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem,1rem + 3vw,4rem); align-items: start; }
@media (max-width: 900px){ .content-layout { grid-template-columns: 1fr; } }
.sidebar { position: sticky; top: 90px; display: grid; gap: 1.25rem; }
@media (max-width: 900px){ .sidebar { position: static; } }
.sidebar-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.sidebar-card--navy { background: linear-gradient(165deg, var(--navy-700), var(--navy-900)); color: var(--cream); border: none; }
.sidebar-card--navy h3 { color: #fff; }
.sidebar-card--navy p { color: rgba(247,242,232,0.82); font-size: 0.92rem; }
.sidebar-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.sidebar-card .btn { margin-top: 1rem; }

/* ------------------------- City quick-facts ---------------------------- */
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fact { background: var(--white); padding: 1.1rem 1.2rem; }
.fact dt { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.fact dd { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--navy-800); margin-top: 0.2rem; }

/* ------------------------------ FAQ ------------------------------------ */
.faq { max-width: 48rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); margin-bottom: 0.8rem; overflow: hidden; transition: box-shadow 0.25s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 1.15rem 1.3rem; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy-800); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 22px; height: 22px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5751c' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; transition: transform 0.25s var(--ease); }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .faq__a { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }
.faq .faq__a p + p { margin-top: 0.8rem; }

/* --------------------------- Related cards ----------------------------- */
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 760px){ .related-grid { grid-template-columns: 1fr; } }
.related-card { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.related-card .k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange-600); }
.related-card h3 { font-size: 1.1rem; }
.related-card p { font-size: 0.9rem; color: var(--muted); }
.related-card .link-arrow { margin-top: auto; padding-top: 0.6rem; }

/* ----------------------- Chips / pill nav ------------------------------ */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; border-radius: var(--radius-pill); background: var(--white); border: 1px solid var(--line); font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); transition: all 0.2s var(--ease); }
.chip:hover { border-color: var(--orange-400); color: var(--orange-700); transform: translateY(-2px); }
.chip svg { width: 15px; height: 15px; color: var(--orange-500); }

/* --------------------------- Mega footer ------------------------------- */
.footer__cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247,242,232,0.12); }
@media (max-width: 900px){ .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer__cols { grid-template-columns: 1fr; } }
.footer__links-2 { columns: 2; column-gap: 1.5rem; }
@media (max-width: 520px){ .footer__links-2 { columns: 1; } }
.footer__cols ul a { font-size: 0.92rem; color: rgba(247,242,232,0.72); transition: color 0.2s; line-height: 2; }
.footer__cols ul a:hover { color: var(--orange-400); }
