/* ==========================================================================
   Stanford Global Educational Consultants
   Study in Uzbekistan from Dubai — standalone HTML/CSS/JS build
   Design tokens transcribed 1:1 from the original Tailwind v4 theme.
   Breakpoints: sm 640 · md 768 · lg 1024 · xl 1280
   ========================================================================== */

/* ---------- 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);             /* #241A1A */

  --primary: oklch(0.39 0.17 27);                 /* #8B1418 */
  --primary-foreground: oklch(0.99 0.008 75);
  --primary-glow: oklch(0.47 0.16 24);            /* #A33136 */
  --primary-deep: oklch(0.33 0.15 27);            /* #701014 */
  --primary-darkest: oklch(0.24 0.12 27);         /* #4F0A0D */

  --muted-foreground: oklch(0.5 0.012 25);        /* #6B5E5E */
  --accent: oklch(0.97 0.022 65);                 /* #FFF3E3 */

  --soft-bg: #FBF3F3;
  --soft-cream: #F6ECEC;
  --soft-pink: oklch(0.985 0.012 75);
  --soft-gold: oklch(0.74 0.13 75);               /* #D59A45 */
  --soft-border: oklch(0.88 0.035 65);            /* #EAD8C5 */
  --border: oklch(0.88 0.035 65);

  --gold-deep: #b4822f;
  --maroon-text: #6d1420;

  --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, oklch(0.39 0.17 27) 22%, transparent);
  --shadow-featured: 0 20px 60px -18px color-mix(in oklab, oklch(0.39 0.17 27) 32%, transparent);
  --shadow-elegant: 0 25px 80px -22px color-mix(in oklab, oklch(0.24 0.12 27) 35%, transparent);

  /* Responsive typography scale (used where no explicit size is set) */
  --font-h3: clamp(1.1875rem, 1.05rem + 0.4vw, 1.375rem);
  --font-card-title: clamp(0.9375rem, 0.88rem + 0.15vw, 1.0625rem);
  --font-body: clamp(0.8125rem, 0.78rem + 0.1vw, 0.875rem);
  --font-button: 0.8125rem;

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

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }

html { scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }

body {
  margin: 0;
  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;
  max-width: 100%;
  overflow-x: clip;
  -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;
  margin: 0;
}
h5, h6 { font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.01em; margin: 0; }
h3 { font-size: var(--font-h3); line-height: 1.25; }
h4 { font-size: var(--font-card-title); line-height: 1.3; }

p { margin: 0; font-size: var(--font-body); line-height: 1.65; }

/* Justified body copy — matches the original global rule */
p, blockquote { text-align: justify; text-align-last: left; text-wrap: pretty; }
h1 p, h2 p, h3 p, h4 p, h5 p, h6 p,
button p, a p, label p, nav p, header p { text-align: initial; }
@media (max-width: 640px) { p, blockquote { text-align: left; } }

ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }

a { color: inherit; text-decoration: none; font-weight: 500; }
button { font-family: inherit; font-weight: 600; font-size: var(--font-button); color: inherit; background: none; border: 0; cursor: pointer; }
nav a { font-size: var(--font-button); }

img, svg, video, iframe, canvas { max-width: 100%; }
img { display: block; }

:where(.grid) > *, :where(.flex) > * { min-width: 0; }

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

.app-shell { display: flex; min-height: 100vh; flex-direction: column; background: var(--background); }
.main { flex: 1 1 0%; }

/* ---------- 3. Icon system ---------- */
.ico {
  display: block; flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ico-3   { width: .75rem;  height: .75rem; }
.ico-3-5 { width: .875rem; height: .875rem; }
.ico-4   { width: 1rem;    height: 1rem; }
.ico-5   { width: 1.25rem; height: 1.25rem; }
.ico-6   { width: 1.5rem;  height: 1.5rem; }
.ico--solid { fill: currentColor; stroke: none; }

.gold { color: var(--soft-gold); }
.gold-text { color: var(--soft-gold); }
.maroon { color: var(--primary); }
.wa-green { color: #25D366; }
.em-gold { font-style: italic; color: var(--soft-gold); }
.italic-primary { font-style: italic; color: var(--primary); }

.scrollbar-none { scrollbar-width: none; -ms-overflow-style: none; }
.scrollbar-none::-webkit-scrollbar { display: none; }

/* ---------- 4. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.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; }
}

/* ---------- 5. Shared effects ---------- */
.btn-shine { position: relative; overflow: hidden; isolation: isolate; }
.btn-shine::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 25%, color-mix(in oklab, white 55%, transparent) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .9s cubic-bezier(.22,1,.36,1);
  pointer-events: none; mix-blend-mode: overlay;
}
.btn-shine:hover::after { transform: translateX(120%); }
.btn-arrow svg { transition: transform .35s cubic-bezier(.22,1,.36,1); }
.btn-arrow:hover svg { transform: translateX(4px); }

.whatsapp-glow { position: relative; }
.whatsapp-glow::before {
  content: ""; position: absolute; inset: -4px; border-radius: inherit;
  background: radial-gradient(circle, rgba(37,211,102,.55), transparent 70%);
  filter: blur(8px); opacity: .6; z-index: -1;
  animation: halo-pulse 2.6s ease-in-out infinite;
}
@keyframes halo-pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%      { opacity: .9; transform: scale(1.15); }
}

.dotted-burgundy {
  height: .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;
  color: #fff;
}

/* ==========================================================================
   6. HEADER
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  background: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--primary) 5%, transparent);
  transition: background-color .3s, box-shadow .3s, border-color .3s;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 6px 30px -14px rgba(101,30,38,.22);
  border-bottom-color: color-mix(in oklab, var(--primary) 10%, transparent);
}
@media (max-width: 768px) { .site-header { margin-bottom: 16px; } }

/* Utility bar (xl only) */
.utility-bar {
  display: none;
  background: var(--primary-darkest);
  color: rgba(255,255,255,.9);
  border-bottom: 1px solid color-mix(in oklab, var(--primary) 10%, transparent);
}
@media (min-width: 1280px) { .utility-bar { display: block; } }
.utility-bar__inner {
  margin-inline: auto; max-width: 80rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .375rem 1.5rem;
  font-size: 12px; font-weight: 500; letter-spacing: .025em;
}
.utility-bar__left { display: flex; align-items: center; gap: 1.25rem; }
.utility-bar__item { display: inline-flex; align-items: center; gap: .375rem; }
.utility-bar__link { transition: color .2s; }
.utility-bar__link:hover { color: var(--soft-gold); }

/* Main header bar */
.header-bar {
  margin-inline: auto; max-width: 80rem;
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem;
}
@media (min-width: 640px) { .header-bar { padding-inline: 1.5rem; } }
@media (min-width: 1280px) { .header-bar { gap: 2rem; padding-block: 1.25rem; } }

.brand { display: flex; height: 3rem; flex-shrink: 0; align-items: center; gap: .5rem; overflow: hidden; }
@media (min-width: 640px) { .brand { height: 3.5rem; } }
@media (min-width: 1024px) { .brand { height: 4rem; } }
.brand img {
  height: 100%; width: auto; max-width: 200px; object-fit: contain;
  transition: transform .3s;
}
@media (min-width: 640px) { .brand img { max-width: 240px; } }
@media (min-width: 1024px) { .brand img { max-width: 280px; } }
.brand:hover img { transform: scale(1.05); }

.primary-nav { display: none; flex-wrap: nowrap; align-items: center; gap: .125rem; }
@media (min-width: 1024px) { .primary-nav { display: flex; } }
@media (min-width: 1280px) { .primary-nav { gap: .25rem; } }

.nav-link {
  position: relative; white-space: nowrap;
  padding: .625rem;
  font-size: 14px; font-weight: 600; line-height: 1;
  color: color-mix(in oklab, var(--foreground) 75%, transparent);
  transition: color .2s;
}
@media (min-width: 1280px) { .nav-link { padding-inline: .875rem; font-size: 15px; } }
.nav-link::after {
  content: ""; pointer-events: none; position: absolute;
  left: .875rem; right: .875rem; bottom: -.125rem; height: 2px;
  transform-origin: center; transform: scaleX(0);
  border-radius: 9999px; background: var(--primary);
  transition: transform .3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-menu { position: relative; }
.nav-link--menu { display: inline-flex; align-items: center; gap: .25rem; }
.nav-caret { transition: transform .3s; }
.nav-menu:hover .nav-link--menu { color: var(--primary); }
.nav-menu:hover .nav-link--menu::after { transform: scaleX(1); }
.nav-menu:hover .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  visibility: hidden; opacity: 0;
  position: absolute; left: 50%; top: 100%; z-index: 50;
  transform: translateX(-50%);
  padding-top: .75rem; width: 34rem;
  transition: opacity .2s, visibility .2s;
}
.nav-menu:hover .nav-dropdown { visibility: visible; opacity: 1; }
.nav-dropdown__panel {
  overflow: hidden; border-radius: var(--radius-2xl);
  background: #fff; padding: .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: .125rem; }
.nav-dropdown__grid a {
  display: block; border-radius: var(--radius-xl);
  padding: .625rem 1rem;
  font-size: 14px; font-weight: 500; letter-spacing: .025em;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  transition: background-color .2s, color .2s;
}
.nav-dropdown__grid a:hover { background: var(--soft-cream); color: var(--primary); }

.header-actions { display: none; flex-shrink: 0; align-items: center; gap: .75rem; }
@media (min-width: 1024px) { .header-actions { display: flex; } }
@media (min-width: 1280px) { .header-actions { gap: 1rem; } }

.header-call {
  display: none; align-items: center; gap: .625rem; white-space: nowrap;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--primary) 15%, transparent);
  background: #fff; padding: .625rem 1rem;
  font-size: 14px; font-weight: 700; color: var(--primary);
  transition: border-color .2s, box-shadow .2s;
}
@media (min-width: 1280px) { .header-call { display: flex; } }
.header-call:hover { border-color: color-mix(in oklab, var(--primary) 40%, transparent); box-shadow: 0 1px 3px 0 rgb(0 0 0/.1), 0 1px 2px -1px rgb(0 0 0/.1); }
.header-call__icon {
  display: grid; place-items: center; height: 2rem; width: 2rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, var(--soft-gold), var(--gold-deep));
  color: var(--primary-darkest);
  box-shadow: 0 1px 3px 0 rgb(0 0 0/.1), 0 1px 2px -1px rgb(0 0 0/.1);
  transition: transform .2s;
}
.header-call:hover .header-call__icon { transform: translateY(-.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: .14em; color: color-mix(in oklab, var(--foreground) 55%, transparent); }
.header-call__number { font-size: 14px; font-weight: 700; letter-spacing: -.025em; }

.btn-consult {
  white-space: nowrap; border-radius: 9999px;
  background-image: var(--gradient-maroon);
  padding: .75rem 1rem;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
@media (min-width: 1280px) { .btn-consult { padding: .875rem 1.5rem; font-size: 14px; } }
.btn-consult:hover { transform: translateY(-.125rem); box-shadow: var(--shadow-featured); }

.menu-toggle { flex-shrink: 0; border-radius: var(--radius-xl); padding: .5rem; color: var(--primary); display: inline-flex; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu { border-top: 1px solid color-mix(in oklab, var(--primary) 10%, transparent); background: #fff; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu__nav { margin-inline: auto; max-width: 80rem; display: flex; flex-direction: column; gap: .25rem; padding: 1rem; }
.mobile-link {
  display: block; border-radius: var(--radius-2xl);
  padding: .75rem 1rem; font-size: 1rem; font-weight: 500;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  transition: background-color .2s, color .2s;
}
.mobile-link:hover { background: color-mix(in oklab, var(--primary) 8%, transparent); color: var(--primary); }
.mobile-link--btn { display: flex; width: 100%; align-items: center; justify-content: space-between; text-align: left; }
.mobile-caret { transition: transform .2s; }
.mobile-link--btn[aria-expanded="true"] .mobile-caret { transform: rotate(180deg); }
.mobile-sub {
  margin-top: .25rem; margin-left: .75rem;
  display: flex; flex-direction: column; gap: .125rem;
  border-left: 2px solid color-mix(in oklab, var(--primary) 15%, transparent);
  padding-left: .75rem;
}
.mobile-sub a {
  border-radius: var(--radius-xl); padding: .5rem .75rem;
  font-size: .875rem; color: color-mix(in oklab, var(--foreground) 70%, transparent);
  transition: background-color .2s, color .2s;
}
.mobile-sub a:hover { background: color-mix(in oklab, var(--primary) 8%, transparent); color: var(--primary); }
.mobile-cta {
  margin-top: .5rem; border-radius: 9999px;
  background-image: var(--gradient-maroon);
  padding: .75rem 1.25rem; text-align: center;
  font-size: .875rem; font-weight: 600; color: var(--primary-foreground);
}

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-top: 9rem; padding-bottom: 4rem; color: #fff;
}
@media (min-width: 640px) { .hero { padding-top: 11rem; padding-bottom: 6rem; } }

.hero__bg { position: absolute; inset: 0; z-index: -10; }
.hero__bg img { height: 100%; width: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; }
.hero__overlay--r {
  background-image: linear-gradient(to right,
    color-mix(in oklab, var(--primary-darkest) 70%, transparent),
    color-mix(in oklab, var(--primary-deep) 45%, transparent),
    transparent);
}
.hero__overlay--t {
  background-image: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.10), transparent);
}

.hero__inner { position: relative; margin-inline: auto; max-width: 72rem; padding-inline: 1rem; }
@media (min-width: 640px) { .hero__inner { padding-inline: 1.5rem; } }
.hero__content { max-width: 48rem; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 9999px; background: rgba(255,255,255,.1);
  padding: .375rem 1rem;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .2em;
  color: var(--soft-gold);
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.hero__title {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-size: 2.25rem; line-height: 1.08; font-weight: 600;
}
@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.4rem; } }

.hero__subtitle { margin-top: 1.25rem; max-width: 42rem; color: rgba(255,255,255,.85); font-size: 1rem; }
@media (min-width: 640px) { .hero__subtitle { font-size: 1.125rem; } }

.hero__highlights {
  margin-top: 1.75rem; display: flex; flex-wrap: wrap;
  column-gap: 1.5rem; row-gap: .625rem;
  font-size: .875rem; color: rgba(255,255,255,.9);
}
.hero__highlights li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__tick {
  display: grid; place-items: center; height: 1.25rem; width: 1.25rem; flex-shrink: 0;
  border-radius: 9999px; background: var(--soft-gold); color: var(--primary-deep);
}

/* ==========================================================================
   8. BODY / DOCUMENT
   ========================================================================== */
.body-section { background: #fff; padding-block: 1.5rem; }
@media (min-width: 640px) { .body-section { padding-block: 2rem; } }

.body-wrap { margin-inline: auto; width: min(1320px, calc(100% - 48px)); }
.body-grid { display: grid; align-items: stretch; gap: 2.5rem; }
@media (min-width: 1024px) {
  .body-grid { grid-template-columns: minmax(0,3fr) minmax(300px,1fr); gap: 3rem; }
}
.doc { min-width: 0; }

.doc-section { scroll-margin-top: 7rem; padding-bottom: 2.5rem; }
.doc-section:first-child { padding-top: 0; }
.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__title { font-family: var(--font-serif); font-size: 28px; line-height: 1.15; color: var(--foreground); }
@media (min-width: 640px) { .doc-section__title { font-size: 32px; } }

.doc-section__body { margin-top: 1.25rem; }
.doc-section__body > * + * { margin-top: 1rem; }
.doc-section__body p {
  font-size: 1rem; line-height: 1.625;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}
@media (min-width: 640px) { .doc-section__body p { font-size: 1.125rem; } }

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

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

/* --- Steps (desktop grid) --- */
.steps { display: none; }
@media (min-width: 640px) {
  .steps {
    display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .75rem; align-items: stretch; grid-auto-rows: minmax(0, 1fr); margin-top: 1.5rem;
  }
}
.steps li {
  display: flex; height: 100%; gap: .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: 9999px;
  background-image: var(--gradient-maroon);
  font-family: var(--font-serif); font-size: .875rem; color: #fff;
}
.steps__t { font-weight: 600; color: var(--foreground); }
.steps__d { margin-top: .25rem; font-size: 1rem; line-height: 1.625; color: color-mix(in oklab, var(--foreground) 75%, transparent); }

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

.journey { position: relative; }
.journey-track {
  position: absolute; pointer-events: none; z-index: 2; overflow: visible;
  border-radius: 999px;
  background: color-mix(in oklab, var(--soft-gold) 18%, transparent);
  top: 2rem; bottom: 2rem; left: calc(2rem - 2px); width: 4px;
}
.journey-line-fill {
  position: absolute; top: 0; left: 0; border-radius: 999px;
  box-shadow: 0 0 14px color-mix(in oklab, var(--soft-gold) 55%, transparent);
}
.journey-line-fill.vertical {
  width: 100%; height: 0%;
  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%);
  transition: height 2.6s cubic-bezier(.22,1,.36,1);
}
.journey.in-view .journey-line-fill.vertical { height: 100%; }

.journey-dot {
  position: absolute; width: 14px; height: 14px; 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;
  left: 50%; top: 0%; transform: translate(-50%, -50%);
}
@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.in-view .journey-track-y .journey-dot {
  animation: journey-dot-y 8s cubic-bezier(.22,1,.36,1) forwards;
}

.journey-list { display: flex; flex-direction: column; gap: 1rem; }
.journey-list > li { 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: 9999px; background: #fff;
  font-size: 1.125rem; font-weight: 900; color: var(--primary);
  box-shadow: 0 15px 40px -10px rgba(101,30,38,.25),
              0 0 0 4px color-mix(in oklab, var(--primary) 10%, transparent);
}
.journey-step span {
  font-family: 'Playfair Display', Georgia, serif;
  background: linear-gradient(to bottom right, #8B1418, #b4822f, #5a0e0e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes journey-step-glow {
  0%, 100% {
    box-shadow: 0 15px 40px -10px rgba(101,30,38,.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,.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.in-view .journey-step {
  animation: journey-step-glow 1.4s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: calc(var(--i, 0) * 1.4s + .6s);
}

.journey-card {
  border-radius: 1.15rem;
  border: 1px solid color-mix(in oklab, var(--primary) 10%, transparent);
  background: rgba(255,255,255,.9);
  padding: .875rem;
  box-shadow: 0 10px 30px -18px rgba(101,30,38,.35);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1),
              box-shadow .4s ease, border-color .4s ease;
}
.journey.in-view .journey-card {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 1.4s + .6s);
}
.journey-card__t { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--foreground); }
.journey-card__d { margin-top: .25rem; font-size: .875rem; line-height: 1.625; color: var(--muted-foreground); }

@media (prefers-reduced-motion: reduce) {
  .journey-line-fill.vertical { transition: none !important; height: 100%; }
  .journey-dot { display: none !important; }
  .journey-card { transform: none !important; transition: opacity .4s ease !important; transition-delay: 0ms !important; opacity: 1; }
  .journey.in-view .journey-step { animation: none !important; }
}

/* --- Visa / key-facts callout --- */
.callout {
  margin-top: 1.5rem; overflow: hidden;
  border-radius: var(--radius-2xl); border: 1px solid var(--soft-border);
  background: #FFF8F1;
}
.callout__head { border-bottom: 1px solid var(--soft-border); background: #fff; padding: .875rem 1.25rem; }
.callout__head h4 { font-family: var(--font-serif); font-size: 1.125rem; line-height: 1.3; color: var(--foreground); font-weight: 600; }
.callout__grid { display: grid; grid-template-columns: minmax(0,1fr); }
.callout__row { display: flex; align-items: baseline; justify-content: space-between; padding: .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-text); }
@media (min-width: 640px) {
  .callout__grid { 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); }
}
.callout__note {
  display: flex; gap: .5rem;
  border-top: 1px solid var(--soft-border); background: #fff;
  padding: .75rem 1.25rem;
  font-size: .875rem; line-height: 1.625; color: var(--muted-foreground);
}
.callout__note-ico { margin-top: .125rem; color: var(--gold-deep); }

/* --- Why us panel --- */
.why-us { scroll-margin-top: 7rem; padding-top: 2.5rem; }
.why-us__panel {
  border-radius: 24px; background: #730000;
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 50px -24px rgba(115,0,0,.5);
}
@media (min-width: 640px) { .why-us__panel { padding: 3rem 3.5rem; } }
@media (min-width: 1024px) { .why-us__panel { padding: 48px 60px; } }
.why-us__head { display: flex; align-items: baseline; gap: 1rem; }
.why-us__n {
  font-family: var(--font-serif); font-size: 18px; color: #D8AA55;
  flex-shrink: 0; white-space: nowrap; overflow-wrap: normal;
}
.why-us__title { font-family: var(--font-serif); font-size: 30px; line-height: 1.15; color: #FFF8F2; }
@media (min-width: 640px) { .why-us__title { font-size: 40px; } }
.why-us__intro { margin-top: 1.5rem; }
.why-us__intro > * + * { margin-top: 1.25rem; }
.why-us__intro p { font-size: 1rem; line-height: 1.625; color: #F2E8E5; }
@media (min-width: 640px) { .why-us__intro p { font-size: 1.125rem; } }
.why-us__intro a { color: #D8AA55; text-decoration: underline; }
.why-us__list { margin-top: 1.75rem; display: grid; column-gap: 2.5rem; row-gap: 1.25rem; }
@media (min-width: 640px) { .why-us__list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.why-us__list li { display: flex; align-items: center; gap: .75rem; font-size: 1rem; color: #FFF7F3; }
@media (min-width: 640px) { .why-us__list li { font-size: 1.125rem; } }
.why-us__tick {
  display: flex; height: 1.5rem; width: 1.5rem; flex-shrink: 0;
  align-items: center; justify-content: center;
  border-radius: 9999px; background: #8E1821; color: #FFF8F2;
}

/* ==========================================================================
   9. 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: 1.25rem;
}

.side-card { border-radius: var(--radius-2xl); border: 1px solid var(--soft-border); background: #fff; padding: 1.25rem; }
.side-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--gold-deep); }
.side-links ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .625rem; }
.side-links li { font-size: 1rem; line-height: 1.625; }
.side-links a {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
  transition: color .2s, font-weight .2s;
}
.side-links a:hover { font-weight: 600; color: var(--primary); }
.side-links__n {
  font-family: var(--font-serif); font-size: 13px; font-weight: 600; color: var(--gold-deep);
  flex-shrink: 0; white-space: nowrap; overflow-wrap: normal;
}

.side-consult {
  border-radius: var(--radius-2xl);
  border: 1.5px solid #E5C5A3;
  background: #FFF8F1; padding: 1.25rem;
}
.side-consult__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold-deep);
}
.side-consult__title { margin-top: .75rem; font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.25; color: var(--foreground); }
.side-consult__copy { margin-top: .5rem; font-size: 1rem; line-height: 1.625; color: var(--muted-foreground); }
.side-consult__actions { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }

.side-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 9999px; padding: .625rem 1rem; font-size: 13px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.side-btn--primary {
  background-image: var(--gradient-maroon); font-weight: 700; color: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0/.1), 0 2px 4px -2px rgb(0 0 0/.1);
}
.side-btn--primary:hover { transform: translateY(-.125rem); }
.side-btn--ghost {
  border: 1px solid var(--soft-border); background: #fff;
  font-weight: 600; color: var(--foreground);
}
.side-btn--ghost:hover { border-color: var(--gold-deep); }

/* ==========================================================================
   10. FAQ
   ========================================================================== */
.faq { position: relative; overflow: hidden; background: var(--soft-cream); padding-block: clamp(1.75rem, 2.6vw, 2.75rem); }
@media (min-width: 641px) and (max-width: 1023px) { .faq { padding-block: clamp(1.5rem, 3vw, 2.25rem); } }

.faq__blob { pointer-events: none; position: absolute; border-radius: 9999px; }
.faq__blob--l { left: -6rem; top: 2.5rem; height: 18rem; width: 18rem; background-image: var(--gradient-maroon); opacity: .06; filter: blur(64px); }
.faq__blob--r { right: -6rem; bottom: 2.5rem; height: 20rem; width: 20rem; background-image: linear-gradient(to bottom right, #b4822f, #8B1418); opacity: .08; filter: blur(64px); }

.faq__inner { position: relative; margin-inline: auto; max-width: 72rem; padding-inline: 1rem; }
@media (min-width: 640px) { .faq__inner { padding-inline: 1.5rem; } }

.faq__head { margin-inline: auto; max-width: 42rem; text-align: center; }
.faq__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem; font-weight: 700; line-height: 1.1; letter-spacing: -.025em;
  color: var(--foreground);
}
@media (min-width: 640px) { .faq__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .faq__title { font-size: 2.75rem; } }
.faq__rule {
  margin: .75rem auto 0; height: .25rem; width: 4rem; border-radius: 9999px;
  background-image: linear-gradient(to right, #8B1418, #b4822f, #8B1418);
}
.faq__sub { margin: 1rem auto 0; max-width: 36rem; font-size: .875rem; line-height: 1.625; color: var(--muted-foreground); text-align: center; text-align-last: center; }
@media (min-width: 640px) { .faq__sub { font-size: 1rem; } }

/* Mobile pill tabs */
.faq__pills { margin-top: 1.5rem; margin-inline: -1rem; overflow-x: auto; padding-inline: 1rem; }
@media (min-width: 768px) { .faq__pills { display: none; } }
.faq__pills-row { display: flex; width: max-content; gap: .5rem; }
.faq-pill {
  flex-shrink: 0; border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: rgba(255,255,255,.8);
  padding: .375rem .875rem;
  font-size: 11.5px; font-weight: 600;
  color: color-mix(in oklab, var(--foreground) 75%, transparent);
  transition: all .2s;
}
.faq-pill.is-active {
  border-color: transparent;
  background-image: linear-gradient(to bottom right, #8B1418, #5a0e0e);
  color: #fff;
  box-shadow: 0 8px 18px -10px rgba(139,20,24,.6);
}

.faq__grid { margin-top: 1rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .faq__grid { margin-top: 2.5rem; grid-template-columns: 280px minmax(0,1fr); } }
@media (min-width: 1024px) { .faq__grid { gap: 2rem; } }

.faq__cats { display: none; flex-direction: column; gap: .75rem; }
@media (min-width: 768px) { .faq__cats { display: flex; } }
.faq-cat {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  overflow: hidden; border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 1rem 1.25rem; text-align: left;
  font-size: .875rem; font-weight: 600;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  transition: all .3s;
}
.faq-cat span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.faq-cat svg { transition: transform .3s, color .3s; color: var(--muted-foreground); }
.faq-cat:not(.is-active):hover {
  transform: translateY(-.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,.35);
}
.faq-cat:not(.is-active):hover svg { transform: translateX(.125rem); color: var(--primary); }
.faq-cat.is-active {
  border-color: transparent;
  background-image: linear-gradient(to bottom right, #8B1418, #a3232a, #5a0e0e);
  color: #fff;
  box-shadow: 0 14px 32px -14px rgba(139,20,24,.55);
}
.faq-cat.is-active svg { transform: translateX(.125rem); color: #fff; }

.faq__list { display: flex; flex-direction: column; gap: .75rem; }
.faq-panel { display: flex; flex-direction: column; gap: .75rem; }
.faq-panel[hidden] { display: none; }

.faq-item {
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px -12px rgba(139,20,24,.25);
  transition: all .3s;
}
.faq-item:not(.is-open):hover {
  border-color: color-mix(in oklab, var(--primary) 25%, transparent);
  box-shadow: 0 12px 28px -16px rgba(139,20,24,.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,.45);
}
.faq-item__btn {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 1.25rem; text-align: left;
}
.faq-item__btn h3 {
  flex: 1 1 0%;
  font-family: var(--font-serif);
  font-size: 15px; font-weight: 600; line-height: 1.375;
  color: var(--foreground);
}
.faq-item__ico {
  display: grid; place-items: center; height: 2rem; width: 2rem; flex-shrink: 0;
  border-radius: 9999px;
  background: var(--accent); color: var(--primary);
  transition: all .3s;
}
.faq-item__btn:hover .faq-item__ico { background: color-mix(in oklab, var(--primary) 10%, transparent); }
.faq-item.is-open .faq-item__ico {
  background-image: linear-gradient(to bottom right, #8B1418, #5a0e0e);
  background-color: transparent; color: #fff;
}
.faq-item__ico .i-close { display: none; }
.faq-item.is-open .faq-item__ico .i-open { display: none; }
.faq-item.is-open .faq-item__ico .i-close { display: block; }

.faq-item__panel {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  padding-inline: 1.25rem; padding-bottom: 0; opacity: 0;
  transition: grid-template-rows .3s ease-out, opacity .3s ease-out, padding-bottom .3s ease-out;
}
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; padding-bottom: 1.25rem; opacity: 1; }
.faq-item__inner { min-height: 0; }
.faq-item__quote { border-left: 2px solid color-mix(in oklab, var(--primary) 20%, transparent); padding-left: 1rem; }
.faq-item__quote p { font-size: 13.5px; line-height: 1.625; color: var(--muted-foreground); }
.faq-item__quote a { font-weight: 600; color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* FAQ footer CTA */
.faq__cta { margin-top: 2.5rem; }
.faq-cta {
  position: relative; overflow: hidden; border-radius: var(--radius-2xl);
  background-image: var(--gradient-maroon);
  padding: 1.5rem; box-shadow: var(--shadow-elegant);
}
@media (min-width: 640px) { .faq-cta { padding: 2rem; } }
.faq-cta__blob { position: absolute; height: 10rem; width: 10rem; border-radius: 9999px; filter: blur(40px); }
.faq-cta__blob--a { right: -2.5rem; top: -2.5rem; background: rgba(255,255,255,.1); }
.faq-cta__blob--b { bottom: -2.5rem; left: -2.5rem; background: color-mix(in oklab, #b4822f 30%, transparent); }
.faq-cta__row { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 1.25rem; }
@media (min-width: 640px) { .faq-cta__row { flex-direction: row; align-items: center; } }
.faq-cta__text { color: var(--primary-foreground); }
.faq-cta__text h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 700; }
@media (min-width: 640px) { .faq-cta__text h3 { font-size: 1.5rem; } }
.faq-cta__text p { margin-top: .25rem; font-size: .875rem; color: rgba(255,255,255,.85); }
@media (min-width: 640px) { .faq-cta__text p { font-size: 1rem; } }
.faq-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.faq-cta__primary {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 9999px; background: #fff;
  padding: .75rem 1.5rem; font-size: .875rem; font-weight: 600; color: var(--primary);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.25);
  transition: transform .2s;
}
.faq-cta__primary:hover { transform: translateY(-.125rem); }
.faq-cta__wa {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 9999px; background: rgba(255,255,255,.1);
  padding: .75rem 1.5rem; font-size: .875rem; font-weight: 600;
  color: var(--primary-foreground);
  box-shadow: 0 0 0 1px rgba(255,255,255,.3);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background-color .2s;
}
.faq-cta__wa:hover { background: rgba(255,255,255,.2); }
.faq-cta__wa-ico {
  display: grid; place-items: center; height: 1.5rem; width: 1.5rem;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom right, #25D366, #128C7E);
  color: #fff;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.site-footer {
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  background: var(--primary-darkest); color: #fff;
}
.site-footer__glow { pointer-events: none; position: absolute; border-radius: 9999px; filter: blur(64px); }
.site-footer__glow--top { top: -8rem; left: 50%; transform: translateX(-50%); height: 18rem; width: 80%; 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); }

.site-footer__inner {
  position: relative; margin-inline: auto; width: 100%; max-width: 1500px;
  padding: 2.5rem 1.25rem 2rem;
}
@media (min-width: 640px) { .site-footer__inner { padding-inline: 2rem; padding-top: 3rem; } }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 4rem; padding-inline: 2.25rem; } }

/* Desktop grid */
.footer-grid { display: none; }
@media (min-width: 1024px) {
  .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-contact, .footer-map { min-width: 0; }
  .footer-map iframe { display: block; width: 100%; max-width: 100%; height: 300px; border: 0; }
}
@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; }
}

.footer-brand__logo { display: flex; align-items: center; gap: .75rem; }
.footer-brand__logo img { height: 4rem; width: auto; filter: brightness(0) invert(1); }
.footer-brand__divider { margin-top: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.footer-brand__divider .line { height: 1px; flex: 1 1 0%; background: color-mix(in oklab, var(--soft-gold) 40%, transparent); }
.footer-brand__divider .dot-ring {
  display: grid; place-items: center; height: 1.5rem; width: 1.5rem; border-radius: 9999px;
  background: color-mix(in oklab, var(--soft-gold) 15%, transparent);
}
.footer-brand__divider .dot { height: .375rem; width: .375rem; border-radius: 9999px; background: var(--soft-gold); }
.footer-brand__copy { margin-top: 1.25rem; font-size: 13.5px; line-height: 1.625; color: rgba(255,255,255,.8); }
.footer-brand__social { margin-top: 2rem; }
.footer-brand__social h5 { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .28em; color: var(--soft-gold); }
.social-row { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .625rem; }
.social-row a {
  display: grid; place-items: center; height: 2.5rem; width: 2.5rem;
  border-radius: 9999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.9);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--soft-gold) 30%, transparent);
  transition: all .2s;
}
.social-row a:hover {
  transform: translateY(-.125rem);
  background: var(--soft-gold); color: var(--primary-darkest);
  box-shadow: 0 0 0 1px var(--soft-gold);
}
.social-row--m { margin-top: 1.5rem; justify-content: center; }

.col-heading h4 { font-family: var(--font-serif); font-size: .875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .22em; color: var(--soft-gold); }
.col-heading__rule { margin-top: .5rem; display: flex; align-items: center; gap: .5rem; }
.col-heading__rule .a { height: 1px; width: 4rem; background: color-mix(in oklab, var(--soft-gold) 70%, transparent); }
.col-heading__rule .b { height: .375rem; width: .375rem; border-radius: 9999px; background: var(--soft-gold); }
.col-heading__rule .c { height: 1px; width: 1.5rem; background: color-mix(in oklab, var(--soft-gold) 30%, transparent); }

.footer-links { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .625rem; }
.footer-links--company { gap: .875rem; }
.footer-links a {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 13.5px; color: rgba(255,255,255,.85);
  white-space: nowrap; transition: color .2s;
}
.footer-links a svg { color: var(--soft-gold); transition: transform .2s; }
.footer-links a:hover { color: var(--soft-gold); }
.footer-links a:hover svg { transform: translateX(.125rem); }

.branches { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.branch--sep { border-top: 1px solid color-mix(in oklab, var(--soft-gold) 20%, transparent); padding-top: 1.25rem; }
.branch__head { display: flex; align-items: center; gap: .75rem; }
.branch__n {
  display: grid; place-items: center; height: 1.75rem; width: 1.75rem; flex-shrink: 0;
  border-radius: 9999px; font-size: 11px; font-weight: 800; color: var(--soft-gold);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--soft-gold) 40%, transparent);
}
.branch__head h5 { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .22em; color: var(--soft-gold); }
.branch__lines { margin-top: .875rem; display: flex; flex-direction: column; gap: .875rem; }
.contact-row { display: flex; align-items: flex-start; gap: .875rem; }
.contact-row__ico {
  display: grid; place-items: center; height: 2.25rem; width: 2.25rem; flex-shrink: 0;
  border-radius: 9999px; background: rgba(255,255,255,.08); color: var(--soft-gold);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--soft-gold) 30%, transparent);
}
.contact-row > div { min-width: 0; flex: 1 1 0%; padding-top: .125rem; }
.contact-row a, .contact-row span:not(.contact-row__ico) {
  display: block; font-size: 13px; line-height: 1.375; color: rgba(255,255,255,.85);
  overflow-wrap: anywhere; transition: color .2s;
}
.contact-row a:hover, .contact-row a:focus-visible { color: var(--soft-gold); }
.branch__hours { margin-top: 1.25rem; }
.branch__hours-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--soft-gold); }
.branch__hours .contact-row { margin-top: .75rem; }
.hours-text { display: flex; flex-direction: column; gap: .125rem; font-size: 13px; color: rgba(255,255,255,.85); }

.map-card {
  margin-top: 1.5rem; overflow: hidden; border-radius: var(--radius-2xl);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--soft-gold) 25%, transparent), 0 20px 25px -5px rgba(0,0,0,.4);
}
.map-card iframe { display: block; width: 100%; border: 0; }
.map-card__bar {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.2);
  padding: .625rem .75rem; font-size: .75rem;
}
.map-card__bar a { display: inline-flex; align-items: center; gap: .375rem; color: rgba(255,255,255,.85); transition: color .2s; }
.map-card__bar a:hover { color: var(--soft-gold); }
.map-card__open { font-weight: 600; color: var(--soft-gold) !important; }
.map-card__open:hover { text-decoration: underline; }
.map-card--m { margin-top: 0; border-radius: var(--radius-xl); box-shadow: 0 0 0 1px color-mix(in oklab, var(--soft-gold) 25%, transparent); }
.map-card--m iframe { height: 280px; }
@media (min-width: 640px) { .map-card--m iframe { height: 340px; } }

/* Footer mobile accordion */
.footer-mobile { display: block; }
@media (min-width: 1024px) { .footer-mobile { display: none; } }
.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: rgba(255,255,255,.8); text-align: center; text-align-last: center; }
.footer-acc { margin-top: 1.5rem; }
.acc { border-bottom: 1px solid rgba(255,255,255,.1); }
.acc__btn {
  display: flex; min-height: 52px; width: 100%;
  align-items: center; justify-content: space-between; gap: .75rem;
  padding-block: 1rem; text-align: left;
}
.acc__label { display: flex; align-items: center; gap: .75rem; }
.acc__label > span { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: #fff; }
.acc__caret { transition: transform .3s; }
.acc__btn[aria-expanded="true"] .acc__caret { transform: rotate(180deg); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease-out; }
.acc__btn[aria-expanded="true"] + .acc__panel { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__pad { padding-bottom: 1.25rem; }
.acc__pad .footer-links { margin-top: 0; padding-left: .25rem; }

.branches-m { display: flex; flex-direction: column; gap: 1.25rem; padding-left: .25rem; }
.branch-m__title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--soft-gold); }
.branch-m__lines { margin-top: .5rem; display: flex; flex-direction: column; gap: .5rem; }
.branch-m__lines a, .branch-m__lines span {
  display: block; font-size: 13px; line-height: 1.375; color: rgba(255,255,255,.85); overflow-wrap: anywhere;
}
.branch-m__lines a:hover { color: var(--soft-gold); }
.branch-m__hours { margin-top: .75rem; }
.branch-m__hour { margin-top: .375rem; font-size: 13px; color: rgba(255,255,255,.85); }

.footer-bottom {
  margin-top: 2rem; display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: .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: rgba(255,255,255,.7);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; text-align: left; } }
@media (min-width: 1024px) { .footer-bottom { margin-top: 3rem; } }
.footer-bottom p { font-size: 13px; text-align: inherit; text-align-last: auto; }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; column-gap: .75rem; row-gap: .5rem; }
.footer-legal > span { display: inline-flex; align-items: center; gap: .75rem; }
.footer-legal a { font-size: 13px; transition: color .2s; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--soft-gold); }
.footer-legal .sep { color: rgba(255,255,255,.25); }

/* ==========================================================================
   12. FLOATING ACTIONS
   ========================================================================== */
.floating-actions {
  position: fixed; bottom: 1.25rem; right: 1rem; z-index: 60;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
}
@media (min-width: 640px) { .floating-actions { bottom: 1.5rem; right: 1.5rem; } }

.fab {
  position: relative; display: flex; height: 3.5rem; width: 3.5rem;
  align-items: center; justify-content: center; border-radius: 9999px; color: #fff;
  transition: transform .2s, box-shadow .2s;
}
.fab--wa {
  background-image: linear-gradient(to bottom right, #25D366, #128C7E, #075E54);
  box-shadow: 0 12px 30px -8px rgba(7,94,84,.55), 0 0 0 2px rgba(255,255,255,.7);
}
.fab--wa:hover { transform: translateY(-.25rem); box-shadow: 0 18px 38px -8px rgba(7,94,84,.75), 0 0 0 2px rgba(255,255,255,.7); }
.fab--call {
  background-image: linear-gradient(to bottom right, #D59A45, #b4822f, #8B1418);
  box-shadow: 0 12px 30px -8px rgba(139,20,24,.65), 0 0 0 2px rgba(255,255,255,.7);
}
.fab--call:hover { transform: translateY(-.25rem); box-shadow: 0 18px 38px -8px rgba(139,20,24,.85), 0 0 0 2px rgba(255,255,255,.7); }

.fab__ping { pointer-events: none; position: absolute; inset: 0; border-radius: 9999px; animation: fab-ping 1s cubic-bezier(0,0,.2,1) infinite; }
.fab--wa .fab__ping { background: rgba(37,211,102,.6); animation-delay: .2s; }
.fab--call .fab__ping { background: rgba(213,154,69,.6); animation-delay: .4s; }
@keyframes fab-ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.fab__blur { pointer-events: none; position: absolute; inset: -.25rem; border-radius: 9999px; filter: blur(12px); }
.fab--wa .fab__blur { background: rgba(37,211,102,.2); }
.fab--call .fab__blur { background: rgba(213,154,69,.2); }

.fab__ico {
  position: relative; stroke-width: 2.4;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
  animation: wiggle 2s ease-in-out infinite;
}
@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); }
}

.fab__tip {
  pointer-events: none; position: absolute; right: 110%; top: 50%;
  display: none; transform: translateY(-50%); white-space: nowrap;
  border-radius: 9999px; padding: .375rem .75rem;
  font-size: 11px; font-weight: 600; color: #fff; opacity: 0;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.15);
  transition: opacity .2s;
}
.fab--wa .fab__tip { background: #054c44; }
.fab--call .fab__tip { background: #3a0a0c; }
@media (min-width: 640px) { .fab__tip { display: block; } }
.fab:hover .fab__tip { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .fab__ping, .fab__ico, .whatsapp-glow::before { animation: none !important; }
}

/* ==========================================================================
   13. Responsive hardening (from the original global rules)
   ========================================================================== */
@media (max-width: 640px) {
  h1, h2, h3, h4, h5, h6, p, li, a, span, td, th { overflow-wrap: anywhere; word-break: normal; }
  input, select, textarea { font-size: 16px !important; }
  a[href^="tel:"], a[href^="mailto:"], button, [role="button"] { min-height: 40px; }
}
@media (max-width: 991px) {
  .sidebar-wrapper { position: static; min-height: 0; display: block; }
}
