/* ==========================================================================
   Stanford Global Education — Study in Georgia from Dubai
   Static HTML/CSS/JS build (converted from the Lovable/React export)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --radius: 1rem;
  --radius-sm: calc(var(--radius) - 2px);   /* 14px */
  --radius-md: var(--radius);               /* 16px */
  --radius-lg: calc(var(--radius) + 4px);   /* 20px */
  --radius-xl: calc(var(--radius) + 10px);  /* 26px */
  --radius-2xl: calc(var(--radius) + 16px); /* 32px */

  --background: oklch(1 0 0);
  --foreground: oklch(0.22 0.015 25);
  --primary: oklch(0.39 0.17 27);
  --primary-foreground: oklch(0.99 0.008 75);
  --primary-glow: oklch(0.47 0.16 24);
  --primary-deep: oklch(0.33 0.15 27);
  --primary-darkest: oklch(0.24 0.12 27);
  --muted-foreground: oklch(0.5 0.012 25);
  --accent: oklch(0.97 0.022 65);

  --soft-cream: #f6ecec;
  --soft-gold: oklch(0.74 0.13 75);
  --soft-border: oklch(0.88 0.035 65);
  --border: oklch(0.88 0.035 65);

  /* Literal accents used verbatim by the design */
  --gold-deep: #b4822f;
  --maroon-ink: #6d1420;
  --panel-maroon: #730000;
  --panel-gold: #d8aa55;
  --panel-cream: #fff8f2;
  --panel-body: #f2e8e5;
  --panel-check-bg: #8e1821;
  --card-cream: #fff8f1;
  --card-cream-border: #e5c5a3;
  --whatsapp: #25d366;

  --gradient-maroon: linear-gradient(135deg, oklch(0.39 0.17 27), oklch(0.24 0.12 27));
  --shadow-card: 0 10px 40px -14px color-mix(in oklab, var(--primary) 22%, transparent);
  --shadow-featured: 0 20px 60px -18px color-mix(in oklab, var(--primary) 32%, transparent);
  --shadow-elegant: 0 25px 80px -22px color-mix(in oklab, var(--primary-darkest) 35%, transparent);

  /* Responsive type scale */
  --font-hero: clamp(1.8125rem, 1.2rem + 1.6vw, 2.625rem);
  --font-h3: clamp(1.1875rem, 1.05rem + 0.4vw, 1.375rem);
  --font-body: clamp(0.8125rem, 0.78rem + 0.1vw, 0.875rem);

  --header-height: 88px;
}

@media (min-width: 1280px) {
  :root { --header-height: 120px; }
}

/* --------------------------------------------------------------------------
   2. Reset + base typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; border: 0 solid var(--border); }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body { max-width: 100%; overflow-x: clip; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h5, h6 { font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.01em; }

h1 { font-size: var(--font-hero); line-height: 1.08; }
h3 { font-size: var(--font-h3); line-height: 1.25; }

p {
  font-size: var(--font-body);
  line-height: 1.65;
  text-align: justify;
  text-align-last: left;
  text-wrap: pretty;
}

@media (max-width: 640px) {
  p { text-align: left; }
}

a { font-weight: 500; color: inherit; text-decoration: none; }
button { font-weight: 600; font-family: inherit; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
img, svg, video, iframe { max-width: 100%; display: block; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

[hidden] { display: none !important; }

.icon { width: 1rem; height: 1rem; flex-shrink: 0; stroke-width: 2; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}

/* --------------------------------------------------------------------------
   3. Scroll-reveal animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* --------------------------------------------------------------------------
   4. Page shell
   -------------------------------------------------------------------------- */
.page-shell { display: flex; min-height: 100vh; flex-direction: column; background: var(--background); }
.page-main { flex: 1 1 auto; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  font-family: var(--font-sans);
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--primary) 5%, transparent);
  transition: background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.site-header.is-scrolled {
  background: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 30px -14px rgba(101, 30, 38, 0.22);
  border-bottom-color: color-mix(in oklab, var(--primary) 10%, transparent);
}

/* Utility bar (xl and up only) */
.utility-bar {
  display: none;
  background: var(--primary-darkest);
  color: rgb(255 255 255 / 0.9);
  border-bottom: 1px solid color-mix(in oklab, var(--primary) 10%, transparent);
}
.utility-bar__inner {
  margin-inline: auto;
  display: flex;
  max-width: 80rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.375rem 1.5rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.utility-bar__group { display: flex; align-items: center; gap: 1.25rem; }
.utility-bar__item { display: inline-flex; align-items: center; gap: 0.375rem; }
.utility-bar__item .icon { width: 0.875rem; height: 0.875rem; color: var(--soft-gold); }
a.utility-bar__item:hover { color: var(--soft-gold); }

.header__inner {
  margin-inline: auto;
  display: flex;
  max-width: 80rem;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.header__logo { display: flex; height: 3rem; flex-shrink: 0; align-items: center; overflow: hidden; }
.header__logo img {
  height: 100%; width: auto; max-width: 200px; object-fit: contain;
  transition: transform 0.3s;
}
.header__logo:hover img { transform: scale(1.05); }

.header__nav { display: none; flex-wrap: nowrap; align-items: center; gap: 0.125rem; }

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  padding: 0.625rem;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: color-mix(in oklab, var(--foreground) 75%, transparent);
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0.875rem; right: 0.875rem; bottom: -0.125rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.nav-link:hover,
.nav-link.is-active { color: var(--primary); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link .icon { width: 1rem; height: 1rem; transition: transform 0.2s; }
.nav-dropdown:hover > .nav-link { color: var(--primary); }
.nav-dropdown:hover > .nav-link::after { transform: scaleX(1); }
.nav-dropdown:hover > .nav-link .icon { transform: rotate(180deg); }

.nav-dropdown__panel {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 50;
  width: 34rem;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  transition: opacity 0.2s, visibility 0.2s;
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel { visibility: visible; opacity: 1; }

.nav-dropdown__card {
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 0.5rem;
  box-shadow: var(--shadow-featured), 0 0 0 1px color-mix(in oklab, var(--primary) 10%, transparent);
}
.nav-dropdown__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.125rem; }
.nav-dropdown__grid a {
  display: block;
  border-radius: var(--radius-xl);
  padding: 0.625rem 1rem;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  transition: background-color 0.2s, color 0.2s;
}
.nav-dropdown__grid a:hover { background: var(--soft-cream); color: var(--primary); }

.header__actions { display: none; flex-shrink: 0; align-items: center; gap: 0.75rem; }

.header__call {
  display: none;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--primary) 15%, transparent);
  background: #fff;
  padding: 0.625rem 1rem;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.header__call:hover {
  border-color: color-mix(in oklab, var(--primary) 40%, transparent);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.header__call-icon {
  display: grid;
  height: 2rem; width: 2rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--soft-gold), var(--gold-deep));
  color: var(--primary-darkest);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  transition: transform 0.2s;
}
.header__call:hover .header__call-icon { transform: translateY(-0.125rem); }
.header__call-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.header__call-label {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: color-mix(in oklab, var(--foreground) 55%, transparent);
}
.header__call-number { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }

.btn-consult {
  white-space: nowrap;
  border-radius: 999px;
  background-image: var(--gradient-maroon);
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-consult:hover { transform: translateY(-0.125rem); box-shadow: var(--shadow-featured); }

.header__burger {
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  color: var(--primary);
  display: inline-flex;
}
.header__burger .icon { width: 1.5rem; height: 1.5rem; }
.header__burger .icon-close { display: none; }
.header__burger[aria-expanded="true"] .icon-menu { display: none; }
.header__burger[aria-expanded="true"] .icon-close { display: block; }

/* Mobile navigation */
.mobile-nav {
  display: none;
  border-top: 1px solid color-mix(in oklab, var(--primary) 10%, transparent);
  background: #fff;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__inner {
  margin-inline: auto;
  display: flex;
  max-width: 80rem;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}
.mobile-nav__link,
.mobile-nav__toggle {
  border-radius: var(--radius-2xl);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  transition: background-color 0.2s, color 0.2s;
}
.mobile-nav__link.is-active { color: var(--primary); background: color-mix(in oklab, var(--primary) 10%, transparent); }
.mobile-nav__link:hover,
.mobile-nav__toggle:hover { background: color-mix(in oklab, var(--primary) 8%, transparent); color: var(--primary); }
.mobile-nav__toggle {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 0.75rem;
}
.mobile-nav__toggle .icon { transition: transform 0.2s; }
.mobile-nav__toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.mobile-nav__sub {
  display: none;
  margin: 0.25rem 0 0 0.75rem;
  flex-direction: column;
  gap: 0.125rem;
  border-left: 2px solid color-mix(in oklab, var(--primary) 15%, transparent);
  padding-left: 0.75rem;
}
.mobile-nav__sub.is-open { display: flex; }
.mobile-nav__sub a {
  border-radius: var(--radius-xl);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
}
.mobile-nav__sub a:hover { background: color-mix(in oklab, var(--primary) 8%, transparent); color: var(--primary); }
.mobile-nav__cta {
  margin-top: 0.5rem;
  border-radius: 999px;
  background-image: var(--gradient-maroon);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .header__inner { padding-inline: 1.5rem; }
  .header__logo { height: 3.5rem; }
  .header__logo img { max-width: 240px; }
}
@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__actions { display: flex; }
  .header__burger { display: none; }
  .mobile-nav { display: none !important; }
  .header__logo { height: 4rem; }
  .header__logo img { max-width: 280px; }
}
@media (min-width: 1280px) {
  .utility-bar { display: block; }
  .header__inner { gap: 2rem; padding-block: 1.25rem; }
  .header__nav { gap: 0.25rem; }
  .header__actions { gap: 1rem; }
  .header__call { display: flex; }
  .nav-link { padding-inline: 0.875rem; font-size: 15px; }
  .btn-consult { padding: 0.875rem 1.5rem; font-size: 14px; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 9rem;
  padding-bottom: 4rem;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: -10; }
.hero__media img { height: 100%; width: 100%; object-fit: cover; }
.hero__media::before,
.hero__media::after { content: ""; position: absolute; inset: 0; }
.hero__media::before {
  background: linear-gradient(
    to right,
    color-mix(in oklab, var(--primary-darkest) 70%, transparent),
    color-mix(in oklab, var(--primary-deep) 45%, transparent) 50%,
    transparent
  );
}
.hero__media::after {
  background: linear-gradient(to top, rgb(0 0 0 / 0.45), rgb(0 0 0 / 0.1) 50%, transparent);
}

.hero__inner { position: relative; margin-inline: auto; max-width: 72rem; padding-inline: 1rem; }
.hero__content { max-width: 48rem; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  padding: 0.375rem 1rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--soft-gold);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.15);
}
.hero__eyebrow .icon { width: 0.875rem; height: 0.875rem; }

.hero h1 { margin-top: 1.25rem; font-family: var(--font-serif); font-size: 2.25rem; line-height: 1.08; }
.hero h1 em { font-style: italic; color: var(--soft-gold); }

.hero__subtitle { margin-top: 1.25rem; max-width: 42rem; color: rgb(255 255 255 / 0.85); }

.hero__highlights {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 0.625rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.9);
}
.hero__highlights li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__tick {
  display: grid;
  height: 1.25rem; width: 1.25rem;
  place-items: center;
  border-radius: 999px;
  background: var(--soft-gold);
  color: var(--primary-deep);
  flex-shrink: 0;
}
.hero__tick .icon { width: 0.75rem; height: 0.75rem; stroke-width: 3; }

@media (min-width: 640px) {
  .hero { padding-top: 11rem; padding-bottom: 6rem; }
  .hero__inner { padding-inline: 1.5rem; }
  .hero h1 { font-size: 3rem; }
  .hero__subtitle { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.4rem; }
}

/* --------------------------------------------------------------------------
   7. Article body — layout
   -------------------------------------------------------------------------- */
.body-section { background: #fff; padding-block: 1.5rem; }
.body-section__inner { margin-inline: auto; width: min(1320px, calc(100% - 48px)); }
.body-grid { display: grid; align-items: stretch; gap: 2.5rem; }

.article { min-width: 0; }

.doc-section { scroll-margin-top: 7rem; padding-bottom: 2.5rem; }
.doc-section + .doc-section {
  border-top: 1px solid var(--soft-border);
  padding-top: 2.5rem;
}

.doc-section__head { display: flex; align-items: baseline; gap: 1rem; }
.doc-section__n {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-deep);
  flex-shrink: 0;
  white-space: nowrap;
  overflow-wrap: normal;
}
.doc-section__head h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.15;
  color: var(--foreground);
}
.doc-section__body { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.doc-section__body p {
  font-size: 1rem;
  line-height: 1.625;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}
.doc-section__body b { font-weight: 600; }
.doc-section__body i { font-style: italic; }

@media (min-width: 640px) {
  .body-section { padding-block: 2rem; }
  .doc-section__head h2 { font-size: 32px; }
  .doc-section__body p { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .body-grid { grid-template-columns: minmax(0, 3fr) minmax(300px, 1fr); gap: 3rem; }
}

/* --------------------------------------------------------------------------
   8. Content primitives
   -------------------------------------------------------------------------- */

/* --- Stat row --- */
.stat-row { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.stat-row__item {
  border-radius: var(--radius-xl);
  border: 1px solid var(--soft-border);
  background: var(--card-cream);
  padding: 1rem;
  text-align: center;
}
.stat-row__big { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1; color: var(--maroon-ink); }
.stat-row__small {
  margin-top: 0.375rem;
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .stat-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --- Bullet list --- */
.bullet-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.bullet-list li {
  display: flex;
  height: 100%;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--soft-border);
  background: #fff;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  line-height: 1.375;
}
.bullet-list .icon { margin-top: 0.125rem; width: 1rem; height: 1rem; color: var(--gold-deep); }
.bullet-list b { font-weight: 600; color: var(--foreground); }
.bullet-list .bullet-list__detail { color: color-mix(in oklab, var(--foreground) 75%, transparent); }
@media (min-width: 640px) {
  .bullet-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Steps (desktop grid) --- */
.steps {
  display: none;
  margin-top: 1.5rem;
  gap: 0.75rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.steps li {
  display: flex;
  height: 100%;
  gap: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--soft-border);
  background: #fff;
  padding: 1rem;
}
.steps__n {
  display: flex;
  height: 2rem; width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-image: var(--gradient-maroon);
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: #fff;
}
.steps__title { font-weight: 600; color: var(--foreground); }
.steps__detail {
  margin-top: 0.25rem;
  font-size: 1rem;
  line-height: 1.625;
  color: color-mix(in oklab, var(--foreground) 75%, transparent);
}
@media (min-width: 640px) {
  .steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Journey timeline (mobile steps) --- */
.journey { position: relative; margin-top: 2rem; }
@media (min-width: 640px) { .journey { display: none; } }

.journey__track {
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: calc(2rem - 2px);
  width: 4px;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
  border-radius: 999px;
  background: color-mix(in oklab, var(--soft-gold) 18%, transparent);
}
.journey__fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--soft-gold) 90%, white) 0%,
    var(--soft-gold) 60%,
    color-mix(in oklab, var(--soft-gold) 80%, #b4822f) 100%
  );
  box-shadow: 0 0 14px color-mix(in oklab, var(--soft-gold) 55%, transparent);
  transition: height 2.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.journey.in-view .journey__fill { height: 100%; }

.journey__dot {
  position: absolute;
  left: 50%; top: 0%;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  background: radial-gradient(circle at 35% 30%, #fff7d6 0%, var(--soft-gold) 45%, #b4822f 100%);
  box-shadow:
    0 0 0 4px color-mix(in oklab, var(--soft-gold) 25%, transparent),
    0 0 14px 2px color-mix(in oklab, var(--soft-gold) 70%, transparent),
    0 0 28px 6px color-mix(in oklab, var(--soft-gold) 35%, transparent);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}
.journey.in-view .journey__dot {
  animation: journey-dot-y 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes journey-dot-y {
  0%   { top: 0%;  opacity: 0; }
  4%   { opacity: 1; }
  10%  { top: 10%; }
  16%  { top: 10%; }
  24%  { top: 30%; }
  30%  { top: 30%; }
  38%  { top: 50%; }
  44%  { top: 50%; }
  52%  { top: 70%; }
  58%  { top: 70%; }
  66%  { top: 90%; }
  72%  { top: 90%; }
  100% { top: 100%; opacity: 1; }
}

.journey__list { display: flex; flex-direction: column; gap: 1rem; }
.journey__item { position: relative; padding-left: 5rem; }

.journey__step {
  position: absolute;
  left: 0; top: 0;
  z-index: 2;
  display: flex;
  height: 4rem; width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--primary);
  box-shadow: 0 15px 40px -10px rgba(101, 30, 38, 0.25),
              0 0 0 4px color-mix(in oklab, var(--primary) 10%, transparent);
}
.journey.in-view .journey__step {
  animation: journey-step-glow 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 1.4s + 0.6s);
}
.journey__step span {
  background: linear-gradient(135deg, #8b1418, #b4822f, #5a0e0e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Playfair Display", Georgia, serif;
}

@keyframes journey-step-glow {
  0%, 100% {
    box-shadow: 0 15px 40px -10px rgba(101, 30, 38, 0.25),
                0 0 0 4px color-mix(in oklab, var(--primary) 10%, transparent);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 18px 45px -10px rgba(101, 30, 38, 0.3),
                0 0 0 6px color-mix(in oklab, var(--soft-gold) 55%, transparent),
                0 0 26px color-mix(in oklab, var(--soft-gold) 65%, transparent);
    transform: scale(1.08);
  }
}

.journey__card {
  border-radius: 1.15rem;
  border: 1px solid color-mix(in oklab, var(--primary) 10%, transparent);
  background: rgb(255 255 255 / 0.9);
  padding: 0.875rem;
  box-shadow: 0 10px 30px -18px rgba(101, 30, 38, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.journey.in-view .journey__card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 1.4s + 0.6s);
}
.journey__card-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--foreground); }
.journey__card-detail { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

@media (prefers-reduced-motion: reduce) {
  .journey__fill { transition: none !important; height: 100%; }
  .journey__dot { display: none !important; }
  .journey__card { opacity: 1; transform: none !important; transition-delay: 0ms !important; }
  .journey.in-view .journey__step { animation: none !important; }
}

/* --- Visa / fact callout --- */
.callout {
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--soft-border);
  background: var(--card-cream);
}
.callout__head {
  border-bottom: 1px solid var(--soft-border);
  background: #fff;
  padding: 0.875rem 1.25rem;
}
.callout__head h4 { font-family: var(--font-serif); font-size: 1.125rem; color: var(--foreground); }
.callout__rows { display: grid; grid-template-columns: 1fr; }
.callout__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}
.callout__row + .callout__row { border-top: 1px solid var(--soft-border); }
.callout__row dt { font-size: 1rem; color: color-mix(in oklab, var(--foreground) 75%, transparent); }
.callout__row dd { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--maroon-ink); text-align: right; }
.callout__note {
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid var(--soft-border);
  background: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}
.callout__note .icon { margin-top: 0.125rem; width: 0.875rem; height: 0.875rem; color: var(--gold-deep); }

@media (min-width: 640px) {
  .callout__rows { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .callout__row + .callout__row { border-top: 0; }
  .callout__row:nth-child(odd) { border-right: 1px solid var(--soft-border); }
  .callout__row:nth-child(n + 3) { border-top: 1px solid var(--soft-border); }
}

/* --------------------------------------------------------------------------
   9. "Why us" burgundy panel
   -------------------------------------------------------------------------- */
.why-us { scroll-margin-top: 7rem; padding-top: 2.5rem; }
.why-us__panel {
  border-radius: 24px;
  background: var(--panel-maroon);
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 50px -24px rgba(115, 0, 0, 0.5);
}
.why-us__head { display: flex; align-items: baseline; gap: 1rem; }
.why-us__n {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--panel-gold);
  flex-shrink: 0;
  white-space: nowrap;
  overflow-wrap: normal;
}
.why-us__head h2 { font-family: var(--font-serif); font-size: 30px; line-height: 1.15; color: var(--panel-cream); }
.why-us__intro {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  line-height: 1.625;
  color: var(--panel-body);
}
.why-us__list { margin-top: 1.75rem; display: grid; column-gap: 2.5rem; row-gap: 1.25rem; }
.why-us__list li { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; color: #fff7f3; }
.why-us__tick {
  display: flex;
  height: 1.5rem; width: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--panel-check-bg);
}
.why-us__tick .icon { width: 0.875rem; height: 0.875rem; color: var(--panel-cream); stroke-width: 3; }

@media (min-width: 640px) {
  .why-us__panel { padding: 3rem 3.5rem; }
  .why-us__head h2 { font-size: 40px; }
  .why-us__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-us__list li { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .why-us__panel { padding: 48px 60px; }
}

/* --------------------------------------------------------------------------
   10. Sidebar
   -------------------------------------------------------------------------- */
.sidebar { position: relative; display: none; }
@media (min-width: 1024px) { .sidebar { display: block; } }

.sidebar__wrapper {
  position: sticky;
  top: var(--header-height);
  align-self: flex-start;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.sidebar__card {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--soft-border);
  background: #fff;
  padding: 1.25rem;
}
.sidebar__label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
}
.sidebar__links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
.sidebar__links li { font-size: 1rem; line-height: 1.625; }
.sidebar__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
  transition: color 0.2s, font-weight 0.2s;
}
.sidebar__links a:hover { font-weight: 600; color: var(--primary); }
.sidebar__links-n { font-family: var(--font-serif); font-size: 13px; font-weight: 600; color: var(--gold-deep); }

.consult-card {
  border-radius: var(--radius-2xl);
  border: 1.5px solid var(--card-cream-border);
  background: var(--card-cream);
  padding: 1.25rem;
}
.consult-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
}
.consult-card__badge .icon { width: 0.875rem; height: 0.875rem; }
.consult-card h3 {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--foreground);
}
.consult-card p { margin-top: 0.5rem; font-size: 1rem; line-height: 1.625; color: var(--muted-foreground); }
.consult-card__actions { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

.btn-pill-primary,
.btn-pill-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.625rem 1rem;
  font-size: 13px;
}
.btn-pill-primary {
  background-image: var(--gradient-maroon);
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: transform 0.2s;
}
.btn-pill-primary:hover { transform: translateY(-0.125rem); }
.btn-pill-primary .icon { width: 0.875rem; height: 0.875rem; }
.btn-pill-ghost {
  border: 1px solid var(--soft-border);
  background: #fff;
  font-weight: 600;
  color: var(--foreground);
  transition: border-color 0.2s;
}
.btn-pill-ghost:hover { border-color: var(--gold-deep); }
.btn-pill-ghost .icon { width: 0.875rem; height: 0.875rem; }
.icon-whatsapp { color: var(--whatsapp); }
.icon-primary { color: var(--primary); }

/* --------------------------------------------------------------------------
   11. FAQ
   -------------------------------------------------------------------------- */
.faq {
  position: relative;
  overflow: hidden;
  background: var(--soft-cream);
  padding-block: clamp(1.75rem, 2.6vw, 2.75rem);
}
.faq__blob { position: absolute; pointer-events: none; border-radius: 999px; filter: blur(48px); }
.faq__blob--a {
  left: -6rem; top: 2.5rem;
  height: 18rem; width: 18rem;
  background-image: var(--gradient-maroon);
  opacity: 0.06;
}
.faq__blob--b {
  right: -6rem; bottom: 2.5rem;
  height: 20rem; width: 20rem;
  background: linear-gradient(135deg, #b4822f, #8b1418);
  opacity: 0.08;
}

.faq__inner { position: relative; margin-inline: auto; max-width: 72rem; padding-inline: 1rem; }
.faq__head { margin-inline: auto; max-width: 42rem; text-align: center; }
.faq__head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--foreground);
}
.faq__head h2 em { font-style: italic; color: var(--primary); }
.faq__rule {
  margin: 0.75rem auto 0;
  height: 0.25rem;
  width: 4rem;
  border-radius: 999px;
  background: linear-gradient(to right, #8b1418, #b4822f, #8b1418);
}
.faq__subtitle {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  text-align: center;
  text-align-last: center;
}

/* Mobile pill tabs */
.faq__pills {
  margin: 1.5rem -1rem 0;
  overflow-x: auto;
  padding-inline: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.faq__pills::-webkit-scrollbar { display: none; }
.faq__pills-track { display: flex; width: max-content; gap: 0.5rem; }
.faq__pill {
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: rgb(255 255 255 / 0.8);
  padding: 0.375rem 0.875rem;
  font-size: 11.5px;
  font-weight: 600;
  color: color-mix(in oklab, var(--foreground) 75%, transparent);
  transition: all 0.2s;
}
.faq__pill[aria-pressed="true"] {
  border-color: transparent;
  background: linear-gradient(135deg, #8b1418, #5a0e0e);
  color: #fff;
  box-shadow: 0 8px 18px -10px rgba(139, 20, 24, 0.6);
}

.faq__grid { margin-top: 1rem; display: grid; gap: 1.5rem; }

.faq__cats { display: none; flex-direction: column; gap: 0.75rem; }
.faq__cat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: rgb(255 255 255 / 0.7);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.faq__cat .icon { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--muted-foreground); transition: transform 0.3s, color 0.3s; }
.faq__cat:hover {
  transform: translateY(-0.125rem);
  border-color: color-mix(in oklab, var(--primary) 30%, transparent);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 24px -14px rgba(139, 20, 24, 0.35);
}
.faq__cat:hover .icon { transform: translateX(0.125rem); color: var(--primary); }
.faq__cat[aria-pressed="true"] {
  border-color: transparent;
  background: linear-gradient(135deg, #8b1418, #a3232a, #5a0e0e);
  color: #fff;
  box-shadow: 0 14px 32px -14px rgba(139, 20, 24, 0.55);
  transform: none;
}
.faq__cat[aria-pressed="true"] .icon { transform: translateX(0.125rem); color: #fff; }

.faq__questions { display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item {
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: rgb(255 255 255 / 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px -12px rgba(139, 20, 24, 0.25);
  transition: all 0.3s;
}
.faq__item:hover {
  border-color: color-mix(in oklab, var(--primary) 25%, transparent);
  box-shadow: 0 12px 28px -16px rgba(139, 20, 24, 0.35);
}
.faq__item.is-open {
  border-color: color-mix(in oklab, var(--primary) 30%, transparent);
  box-shadow: 0 20px 44px -20px rgba(139, 20, 24, 0.45);
}
.faq__q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
}
.faq__q h3 {
  flex: 1 1 auto;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
.faq__toggle {
  display: grid;
  height: 2rem; width: 2rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  transition: all 0.3s;
}
.faq__item:hover .faq__toggle { background: color-mix(in oklab, var(--primary) 10%, transparent); }
.faq__item.is-open .faq__toggle {
  background: linear-gradient(135deg, #8b1418, #5a0e0e);
  color: #fff;
}
.faq__toggle .icon-x { display: none; }
.faq__item.is-open .faq__toggle .icon-plus { display: none; }
.faq__item.is-open .faq__toggle .icon-x { display: block; }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding-inline: 1.25rem;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; padding-bottom: 1.25rem; opacity: 1; }
.faq__a > div { min-height: 0; }
.faq__a-inner { border-left: 2px solid color-mix(in oklab, var(--primary) 20%, transparent); padding-left: 1rem; }
.faq__a-inner p { font-size: 13.5px; line-height: 1.625; color: var(--muted-foreground); }

/* FAQ CTA */
.faq__cta { margin-top: 2.5rem; }
.faq__cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background-image: var(--gradient-maroon);
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
}
.faq__cta-card::before,
.faq__cta-card::after { content: ""; position: absolute; height: 10rem; width: 10rem; border-radius: 999px; filter: blur(32px); }
.faq__cta-card::before { right: -2.5rem; top: -2.5rem; background: rgb(255 255 255 / 0.1); }
.faq__cta-card::after { left: -2.5rem; bottom: -2.5rem; background: rgb(180 130 47 / 0.3); }
.faq__cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}
.faq__cta-text { color: var(--primary-foreground); }
.faq__cta-text h3 { font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; font-weight: 700; }
.faq__cta-text p { margin-top: 0.25rem; font-size: 0.875rem; color: rgb(255 255 255 / 0.85); }
.faq__cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn-shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgb(255 255 255 / 0.55) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.btn-shine:hover { transform: translateY(-0.125rem); }
.btn-shine:hover::after { transform: translateX(120%); }
.btn-shine .icon { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.btn-shine:hover .icon { transform: translateX(4px); }

.btn-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.3);
  backdrop-filter: blur(8px);
  transition: background-color 0.2s;
}
.btn-whatsapp:hover { background: rgb(255 255 255 / 0.2); }
.btn-whatsapp::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.55), transparent 70%);
  filter: blur(8px);
  opacity: 0.6;
  z-index: -1;
  animation: halo-pulse 2.6s ease-in-out infinite;
}
.btn-whatsapp__glyph {
  display: grid;
  height: 1.5rem; width: 1.5rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}
.btn-whatsapp__glyph svg { width: 0.875rem; height: 0.875rem; }

@keyframes halo-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.15); }
}

@media (min-width: 640px) {
  .faq__inner { padding-inline: 1.5rem; }
  .faq__head h2 { font-size: 2.25rem; }
  .faq__subtitle { font-size: 1rem; }
  .faq__cta-card { padding: 2rem; }
  .faq__cta-inner { flex-direction: row; align-items: center; }
  .faq__cta-text h3 { font-size: 1.5rem; }
  .faq__cta-text p { font-size: 1rem; }
}
@media (min-width: 768px) {
  .faq__pills { display: none; }
  .faq__grid { margin-top: 2.5rem; grid-template-columns: 280px 1fr; }
  .faq__cats { display: flex; }
}
@media (min-width: 1024px) {
  .faq__head h2 { font-size: 2.75rem; }
  .faq__grid { gap: 2rem; }
}
@media (min-width: 641px) and (max-width: 1023px) {
  .faq { padding-block: clamp(1.5rem, 3vw, 2.25rem); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp::before { animation: none; }
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  background: var(--primary-darkest);
  color: #fff;
}
.site-footer__glow { position: absolute; pointer-events: none; border-radius: 999px; filter: blur(48px); }
.site-footer__glow--top {
  top: -8rem; left: 50%;
  height: 18rem; width: 80%;
  transform: translateX(-50%);
  background: color-mix(in oklab, var(--soft-gold) 8%, transparent);
}
.site-footer__glow--bottom {
  bottom: -6rem; right: 0;
  height: 16rem; width: 16rem;
  background: color-mix(in oklab, var(--primary) 25%, transparent);
}
.dotted-burgundy {
  height: 0.5rem;
  width: 100%;
  background-color: var(--primary-deep);
  background-image: radial-gradient(
    circle,
    color-mix(in oklab, var(--soft-gold) 55%, transparent) 1px,
    transparent 1.6px
  );
  background-size: 18px 18px;
}

.site-footer__inner {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1500px;
  padding: 2.5rem 1.25rem 2rem;
}

.footer-grid { display: none; }
.footer-heading h4 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--soft-gold);
}
.footer-heading__rule { margin-top: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-heading__rule i:nth-child(1) { height: 1px; width: 4rem; background: color-mix(in oklab, var(--soft-gold) 70%, transparent); }
.footer-heading__rule i:nth-child(2) { height: 0.375rem; width: 0.375rem; border-radius: 999px; background: var(--soft-gold); }
.footer-heading__rule i:nth-child(3) { height: 1px; width: 1.5rem; background: color-mix(in oklab, var(--soft-gold) 30%, transparent); }

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13.5px;
  color: rgb(255 255 255 / 0.85);
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-link .icon { width: 0.875rem; height: 0.875rem; color: var(--soft-gold); transition: transform 0.2s; }
.footer-link:hover { color: var(--soft-gold); }
.footer-link:hover .icon { transform: translateX(0.125rem); }

.footer-brand__divider { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-brand__divider i:first-child,
.footer-brand__divider i:last-child { height: 1px; flex: 1 1 0; background: color-mix(in oklab, var(--soft-gold) 40%, transparent); }
.footer-brand__dot {
  display: grid;
  height: 1.5rem; width: 1.5rem;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in oklab, var(--soft-gold) 15%, transparent);
}
.footer-brand__dot i { height: 0.375rem; width: 0.375rem; border-radius: 999px; background: var(--soft-gold); }
.footer-brand p { margin-top: 1.25rem; font-size: 13.5px; line-height: 1.625; color: rgb(255 255 255 / 0.8); }
.footer-brand img { height: 4rem; width: auto; filter: brightness(0) invert(1); }

.footer-social__label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--soft-gold);
}
.footer-social__row { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.625rem; }
.footer-social__row a {
  display: grid;
  height: 2.5rem; width: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  color: rgb(255 255 255 / 0.9);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--soft-gold) 30%, transparent);
  transition: all 0.2s;
}
.footer-social__row a:hover {
  transform: translateY(-0.125rem);
  background: var(--soft-gold);
  color: var(--primary-darkest);
  box-shadow: inset 0 0 0 1px var(--soft-gold);
}
.footer-social__row svg { width: 1rem; height: 1rem; }

.footer-branch + .footer-branch {
  border-top: 1px solid color-mix(in oklab, var(--soft-gold) 20%, transparent);
  padding-top: 1.25rem;
}
.footer-branch__head { display: flex; align-items: center; gap: 0.75rem; }
.footer-branch__n {
  display: grid;
  height: 1.75rem; width: 1.75rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--soft-gold);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--soft-gold) 40%, transparent);
}
.footer-branch__head h5 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--soft-gold);
}
.footer-branch__lines { margin-top: 0.875rem; display: flex; flex-direction: column; gap: 0.875rem; }

.contact-row { display: flex; align-items: flex-start; gap: 0.875rem; }
.contact-row__icon {
  display: grid;
  height: 2.25rem; width: 2.25rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  color: var(--soft-gold);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--soft-gold) 30%, transparent);
}
.contact-row__body { min-width: 0; flex: 1 1 auto; padding-top: 0.125rem; }
.contact-row__body a,
.contact-row__body span {
  display: block;
  font-size: 13px;
  line-height: 1.375;
  color: rgb(255 255 255 / 0.85);
  overflow-wrap: anywhere;
  transition: color 0.2s;
}
.contact-row__body a:hover { color: var(--soft-gold); }

.footer-hours { margin-top: 1.25rem; }
.footer-hours__label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--soft-gold);
}

.footer-map__frame {
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: rgb(255 255 255 / 0.04);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--soft-gold) 25%, transparent),
              0 20px 25px -5px rgb(0 0 0 / 0.4);
}
.footer-map__frame iframe { display: block; width: 100%; height: 300px; border: 0; }
.footer-map__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(0 0 0 / 0.2);
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
}
.footer-map__actions a { display: inline-flex; align-items: center; gap: 0.375rem; color: rgb(255 255 255 / 0.85); }
.footer-map__actions a:hover { color: var(--soft-gold); }
.footer-map__actions a:last-child { font-weight: 600; color: var(--soft-gold); }
.footer-map__actions a:last-child:hover { text-decoration: underline; }
.footer-map__actions .icon { width: 0.875rem; height: 0.875rem; color: var(--soft-gold); }

/* Mobile footer accordion */
.footer-mobile__brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-mobile__brand img { height: 3.5rem; width: auto; filter: brightness(0) invert(1); }
.footer-mobile__brand p {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 13.5px;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.8);
  text-align: center;
  text-align-last: center;
}
.footer-acc { margin-top: 1.5rem; }
.footer-acc__item { border-bottom: 1px solid rgb(255 255 255 / 0.1); }
.footer-acc__btn {
  display: flex;
  min-height: 52px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1rem;
  text-align: left;
}
.footer-acc__btn > span { display: flex; align-items: center; gap: 0.75rem; }
.footer-acc__btn .icon { width: 1.25rem; height: 1.25rem; color: var(--soft-gold); flex-shrink: 0; }
.footer-acc__title { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; }
.footer-acc__chev { transition: transform 0.3s; }
.footer-acc__btn[aria-expanded="true"] .footer-acc__chev { transform: rotate(180deg); }
.footer-acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.footer-acc__btn[aria-expanded="true"] + .footer-acc__panel { grid-template-rows: 1fr; }
.footer-acc__panel > div { overflow: hidden; }
.footer-acc__panel-inner { padding-bottom: 1.25rem; }
.footer-acc__panel ul { display: flex; flex-direction: column; gap: 0.75rem; padding-left: 0.25rem; }
.footer-acc__panel ul.is-tight { gap: 0.625rem; }

.footer-mobile__branches { display: flex; flex-direction: column; gap: 1.25rem; padding-left: 0.25rem; }
.footer-mobile__branch-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--soft-gold);
}
.footer-mobile__branch-lines { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-mobile__branch-lines a,
.footer-mobile__branch-lines span {
  display: block;
  font-size: 13px;
  line-height: 1.375;
  color: rgb(255 255 255 / 0.85);
  overflow-wrap: anywhere;
}
.footer-mobile__branch-lines a:hover { color: var(--soft-gold); }
.footer-mobile__hours { margin-top: 0.75rem; }
.footer-mobile__hours div { font-size: 13px; color: rgb(255 255 255 / 0.85); }
.footer-mobile__map { overflow: hidden; border-radius: var(--radius-xl); box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--soft-gold) 25%, transparent); }
.footer-mobile__map iframe { display: block; height: 280px; width: 100%; border: 0; }
.footer-mobile__social { margin-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem; }

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid color-mix(in oklab, var(--soft-gold) 25%, transparent);
  padding-top: 1.25rem;
  padding-bottom: env(safe-area-inset-bottom);
  text-align: center;
  font-size: 13px;
  color: rgb(255 255 255 / 0.7);
}
.footer-bottom p { font-size: 13px; text-align: center; text-align-last: center; }
.footer-bottom nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; column-gap: 0.75rem; row-gap: 0.5rem; }
.footer-bottom nav span { display: inline-flex; align-items: center; gap: 0.75rem; }
.footer-bottom nav a { transition: color 0.2s; }
.footer-bottom nav a:hover { color: var(--soft-gold); }
.footer-bottom__sep { color: rgb(255 255 255 / 0.25); }

@media (min-width: 640px) {
  .site-footer__inner { padding: 3rem 2rem 2rem; }
  .footer-bottom { flex-direction: row; text-align: left; }
  .footer-bottom p { text-align: left; text-align-last: left; }
  .footer-mobile__map iframe { height: 340px; }
}
@media (min-width: 1024px) {
  .site-footer__inner { padding: 4rem 2.25rem 2rem; }
  .footer-mobile { display: none; }
  .footer-grid {
    display: grid;
    grid-template-columns:
      minmax(300px, 1.25fr)
      minmax(170px, 0.75fr)
      minmax(230px, 0.95fr)
      minmax(340px, 1.15fr)
      minmax(320px, 1.1fr);
    gap: 42px;
    align-items: flex-start;
  }
  .footer-grid > * { min-width: 0; }
  .footer-col-links { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem; }
  .footer-col-links.is-tight { gap: 0.625rem; }
  .footer-branches { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
  .footer-bottom { margin-top: 3rem; }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
  .footer-grid a { white-space: normal !important; }
}
@media (min-width: 1201px) and (max-width: 1520px) {
  .footer-grid {
    grid-template-columns:
      minmax(0, 1.15fr) minmax(0, 0.7fr) minmax(0, 0.9fr) minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 28px;
  }
  .footer-grid a { white-space: normal !important; }
}

/* --------------------------------------------------------------------------
   13. Floating actions
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 1.25rem;
  right: 1rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.fab {
  position: relative;
  display: flex;
  height: 3.5rem; width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgb(255 255 255 / 0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}
.fab .icon { position: relative; width: 1.5rem; height: 1.5rem; stroke-width: 2.4; filter: drop-shadow(0 2px 4px rgb(0 0 0 / 0.25)); animation: wiggle 2s ease-in-out infinite; }
.fab::before, .fab::after { content: ""; position: absolute; border-radius: 999px; pointer-events: none; }
.fab::before { inset: 0; animation: fab-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite; }
.fab::after { inset: -0.25rem; filter: blur(12px); z-index: -1; }
.fab:hover { transform: translateY(-0.25rem); }

.fab--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e, #075e54);
  box-shadow: 0 12px 30px -8px rgba(7, 94, 84, 0.55), inset 0 0 0 2px rgb(255 255 255 / 0.7);
}
.fab--whatsapp:hover { box-shadow: 0 18px 38px -8px rgba(7, 94, 84, 0.75), inset 0 0 0 2px rgb(255 255 255 / 0.7); }
.fab--whatsapp::before { background: rgb(37 211 102 / 0.6); animation-delay: 0.2s; }
.fab--whatsapp::after { background: rgb(37 211 102 / 0.2); }

.fab--call {
  background: linear-gradient(135deg, #d59a45, #b4822f, #8b1418);
  box-shadow: 0 12px 30px -8px rgba(139, 20, 24, 0.65), inset 0 0 0 2px rgb(255 255 255 / 0.7);
}
.fab--call:hover { box-shadow: 0 18px 38px -8px rgba(139, 20, 24, 0.85), inset 0 0 0 2px rgb(255 255 255 / 0.7); }
.fab--call::before { background: rgb(213 154 69 / 0.6); animation-delay: 0.4s; }
.fab--call::after { background: rgb(213 154 69 / 0.2); }

.fab__tip {
  pointer-events: none;
  position: absolute;
  right: 110%;
  top: 50%;
  display: none;
  transform: translateY(-50%);
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.375rem 0.75rem;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), inset 0 0 0 1px rgb(255 255 255 / 0.15);
  transition: opacity 0.3s;
}
.fab--whatsapp .fab__tip { background: #054c44; }
.fab--call .fab__tip { background: #3a0a0c; }
.fab:hover .fab__tip { opacity: 1; }

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  15%  { transform: rotate(-15deg); }
  30%  { transform: rotate(12deg); }
  45%  { transform: rotate(-8deg); }
  60%  { transform: rotate(6deg); }
  75%  { transform: rotate(-3deg); }
}
@keyframes fab-ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@media (min-width: 640px) {
  .floating-actions { bottom: 1.5rem; right: 1.5rem; }
  .fab__tip { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .fab .icon, .fab::before { animation: none; }
}

/* --------------------------------------------------------------------------
   14. Small-screen hardening
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  h1, h2, h3, h4, h5, h6, p, li, a, span, td, th {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .doc-section__n,
  .why-us__n,
  .stat-row__big,
  .steps__n,
  .journey__step span,
  .footer-branch__n { overflow-wrap: normal; }
  a[href^="tel:"], a[href^="mailto:"], button, [role="button"] { min-height: 40px; }
}
