/* =============================================================================
   Jabir & Emma — stylesheet
   1. Fonts            5. Layout primitives    9. Sections
   2. Design tokens    6. Header & utility    10. Footer
   3. Reset            7. Hero                11. RTL
   4. Typography       8. Carousels           12. Responsive & motion
   ========================================================================== */

/* 1. Fonts ---------------------------------------------------------------- */
@font-face {
  font-family: "Manrope Local";
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Almarai Local";
  src: url("assets/fonts/almarai-arabic-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Almarai Local";
  src: url("assets/fonts/almarai-arabic-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Almarai Local";
  src: url("assets/fonts/almarai-arabic-800.woff2") format("woff2");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alyamama Local";
  src: url("assets/fonts/alyamama-arabic-variable.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
/* Metric-matched fallback: keeps the swap from shifting layout.
   size-adjust measured against the real face at 48px/800: 103% was 6.0% narrow
   and 6.1% short; 110% lands within 0.4%. Roboto/Noto Sans added because the
   Arial/Helvetica/Liberation list matches nothing on Android or ChromeOS,
   which left those platforms with no metric correction at all. */
@font-face {
  font-family: "Manrope Fallback";
  src: local("Arial"), local("Helvetica Neue"), local("Liberation Sans"), local("Roboto"), local("Noto Sans");
  size-adjust: 110%;
  ascent-override: 99%;
  descent-override: 25.5%;
  line-gap-override: 0%;
}
/* 2. Design tokens -------------------------------------------------------- */
:root {
  /* Brand ---------------------------------------------------------------- */
  --navy-950: #061d35;
  --navy-900: #072d52;
  --navy-800: #0b3e6f;
  --blue-700: #0e69b5;   /* text-safe blue on light (4.7:1) */
  --blue-600: #258be2;   /* fills, icons on light, borders */
  --blue-500: #3a9bea;
  --blue-300: #8ec6f3;
  --pink-700: #c22a68;   /* text-safe pink on light (5.2:1) */
  --pink-600: #e9367e;
  --pink-500: #ee4f90;
  --pink-300: #f9a8c9;
  --green-700: #4f8a24;
  --green-500: #83c44d;
  --lime: #cdf07a;
  --paper: #fffefa;
  --surface: #f3f8fb;
  --tint-green: #eef5e8;  /* vision + map panel */
  --tint-blue: #eef7fc;   /* future band */
  --white: #fff;

  /* Text ----------------------------------------------------------------- */
  --ink: #0d2540;
  --ink-soft: #33465c;
  --muted: #53687f;          /* 5.9:1 on --paper */
  --on-dark: #ffffff;
  --on-dark-soft: #c6dcee;   /* 8.4:1 on --navy-900 */
  --on-dark-muted: #a7c2da;

  /* Lines & elevation ---------------------------------------------------- */
  --line: #dbe6ee;
  --line-strong: #c3d5e1;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-dark-strong: rgba(255, 255, 255, 0.28);
  --shadow-1: 0 1px 2px rgba(7, 45, 82, 0.05), 0 6px 16px rgba(7, 45, 82, 0.06);
  --shadow-2: 0 2px 6px rgba(7, 45, 82, 0.06), 0 16px 40px rgba(7, 45, 82, 0.1);
  --shadow-3: 0 4px 12px rgba(7, 45, 82, 0.08), 0 32px 72px rgba(7, 45, 82, 0.16);

  /* Radii ---------------------------------------------------------------- */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Type ----------------------------------------------------------------- */
  --font: "Manrope Local", "Manrope Fallback", system-ui, sans-serif;
  --font-ar: "Almarai Local", "Manrope Local", "Geeza Pro", "Noto Sans Arabic", Tahoma, sans-serif;
  --font-ar-display: "Alyamama Local", "Almarai Local", "Manrope Local", "Geeza Pro", "Noto Sans Arabic", Tahoma, sans-serif;

  --fs-2xs: 0.8125rem;                                        /* 13px floor  */
  --fs-xs: 0.875rem;                                          /* 14px        */
  --fs-sm: 0.9375rem;                                         /* 15px        */
  --fs-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);        /* 16 → 17     */
  --fs-md: clamp(1.0625rem, 1.01rem + 0.28vw, 1.1875rem);     /* 17 → 19     */
  --fs-lg: clamp(1.1875rem, 1.09rem + 0.44vw, 1.4375rem);     /* 19 → 23     */
  --fs-xl: clamp(1.375rem, 1.19rem + 0.9vw, 1.875rem);        /* 22 → 30     */
  --fs-2xl: clamp(1.75rem, 1.36rem + 1.75vw, 2.625rem);       /* 28 → 42     */
  --fs-3xl: clamp(2.125rem, 1.5rem + 2.8vw, 3.5rem);          /* 34 → 56     */
  --fs-4xl: clamp(2.5rem, 1.55rem + 4.2vw, 4.5rem);           /* 40 → 72     */
  --fs-5xl: clamp(3rem, 1.6rem + 6.2vw, 5rem);                /* 48 → 80     */

  --lh-display: 0.98;
  --lh-tight: 1.08;
  --lh-heading: 1.2;
  --lh-snug: 1.45;
  --lh-body: 1.65;
  --lh-loose: 1.78;

  --track-display: -0.035em;
  --track-tight: -0.025em;
  --track-heading: -0.015em;
  --track-caps: 0.13em;
  --track-ui: -0.005em;   /* buttons + nav: neutralised in RTL */
  --track-num: 0.08em;    /* tabular numerals only — safe in RTL */
  --caps: uppercase;

  --w-medium: 500;
  --w-semi: 600;
  --w-bold: 700;
  --w-black: 800;

  /* Space ---------------------------------------------------------------- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;

  --shell: min(1320px, 100% - 2 * var(--gutter));
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(3.5rem, 5vw, 5.25rem);
  --header-h: 82px;
  --chrome-h: 124px;   /* utility bar 41 + header 82 + 1px border */
  --anchor-offset: 108px;

  /* Motion --------------------------------------------------------------- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-1: 180ms;
  --dur-2: 280ms;
  --dur-3: 520ms;
  --dur-4: 760ms;
  --phone-scale: 1;
}

/* 3. Reset ---------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--fs-base);
  font-weight: var(--w-medium);
  line-height: var(--lh-body);
  font-optical-sizing: auto;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { color: var(--on-dark); background: var(--pink-600); }

img,
picture,
svg { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4, p, dl, dd, figure, blockquote { margin: 0; }

:where(ul[role="list"], ol[role="list"]) { margin: 0; padding: 0; list-style: none; }

address { font-style: normal; }

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ic {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--pink-500);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
.contact :focus-visible,
.values :focus-visible,
.future-card :focus-visible,
.hero-slider-nav :focus-visible { outline-color: var(--lime); }

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: var(--sp-3);
  inset-inline-start: var(--sp-3);
  padding: 0.7rem 1.15rem;
  border-radius: var(--r-pill);
  background: var(--navy-950);
  color: var(--on-dark);
  font-size: var(--fs-xs);
  font-weight: var(--w-bold);
  transform: translateY(-160%);
  transition: transform var(--dur-2) var(--ease-out);
}
.skip-link:focus,
.skip-link:focus-visible { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--pink-500), var(--green-500));
}

/* 4. Typography ----------------------------------------------------------- */
h1, h2, h3 {
  font-weight: var(--w-black);
  text-wrap: balance;
}

p { text-wrap: pretty; }

.section h2,
.contact h2,
.values h2 {
  margin-block-start: var(--sp-3);
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-display);
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--pink-700);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--track-num);
}
.section-index::after {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}

.section-kicker {
  margin-block-start: var(--sp-3);
  color: var(--blue-700);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  letter-spacing: var(--track-caps);
  text-transform: var(--caps);
}

.lead {
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
}

/* 5. Layout primitives ---------------------------------------------------- */
.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section { padding-block: var(--section-space); }

.section-heading,
.why-heading,
.audiences-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  margin-block-end: clamp(2rem, 3vw, 3rem);
}

.section-intro > p,
.why-heading > p,
.audiences-heading > p {
  max-width: 48ch;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
}
.section-intro { align-self: end; }
.why-heading > p,
.audiences-heading > p { margin-block-start: clamp(3.5rem, 4vw, 4rem); }

/* Buttons ----------------------------------------------------------------- */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: var(--w-black);
  line-height: var(--lh-heading);
  letter-spacing: var(--track-ui);
  text-align: center;
  transition:
    transform var(--dur-1) var(--ease-out),
    box-shadow var(--dur-2) var(--ease-out),
    color var(--dur-1) linear,
    border-color var(--dur-1) linear,
    background var(--dur-1) linear;
}
.button .ic { font-size: 1.15em; transition: transform var(--dur-1) var(--ease-out); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:hover .ic { transform: translate(2px, -2px); }

.button-primary {
  color: var(--on-dark);
  background: var(--navy-900);
  box-shadow: var(--shadow-1);
}
.button-primary:hover { background: var(--blue-700); box-shadow: var(--shadow-2); }

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}
.button-secondary:hover { border-color: var(--pink-500); color: var(--pink-700); }

.button-light { color: var(--navy-900); background: var(--white); }
.button-light:hover { color: var(--on-dark); background: var(--pink-700); }

.button-accent { color: var(--on-dark); background: var(--pink-700); }
.button-accent:hover { background: var(--blue-700); }

.button-outline {
  border-color: var(--line-dark-strong);
  color: var(--on-dark);
}
.button-outline:hover { background: rgba(255, 255, 255, 0.12); }

.icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.125rem;
  transition: color var(--dur-1) linear, background var(--dur-1) linear,
    border-color var(--dur-1) linear, transform var(--dur-1) var(--ease-out);
}
.icon-button:hover { color: var(--on-dark); background: var(--navy-900); border-color: var(--navy-900); transform: scale(1.05); }
.icon-button:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.icon-button.ghost {
  width: 42px;
  height: 42px;
  border-color: var(--line-dark-strong);
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-dark);
  font-size: 1rem;
}
.icon-button.ghost:hover { background: var(--blue-600); border-color: var(--blue-500); }

/* Play / pause toggles show one glyph at a time. */
[aria-pressed] .when-paused { display: none; }
[aria-pressed="true"] .when-playing { display: none; }
[aria-pressed="true"] .when-paused { display: block; }

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-500);
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(131, 196, 77, 0.55);
  border-radius: inherit;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  70%, 100% { transform: scale(1.4); opacity: 0; }
}

/* 6. Utility bar & header ------------------------------------------------- */
.utility-bar {
  position: relative;
  z-index: 101;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: var(--fs-2xs);
  font-weight: var(--w-bold);
}
.utility-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.utility-group {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.65rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.utility-group li,
.utility-group a,
.utility-group > span,
.language-button,
.utility-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.utility-group .ic { font-size: 0.95rem; color: var(--blue-700); }
.utility-group a { border-radius: var(--r-xs); transition: color var(--dur-1) linear; }
.utility-group a:hover { color: var(--pink-700); }
.utility-end { gap: var(--sp-4); }
.utility-whatsapp .ic { color: var(--blue-700); }
.utility-whatsapp:hover { color: var(--pink-700); }
.language-button {
  padding: 0.3rem 0.55rem;
  border-radius: var(--r-pill);
  font-weight: var(--w-black);
  transition: background var(--dur-1) linear, color var(--dur-1) linear;
}
.language-button:hover { background: rgba(37, 139, 226, 0.12); color: var(--blue-700); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(219, 230, 238, 0.9);
  background: rgba(255, 254, 250, 0.86);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  transition: height var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.site-header.is-scrolled {
  /* Keep both header states declarative. Reading this element's height in JS
     and writing it back into --header-h made a transient Safari cold-load
     measurement self-perpetuating until the first scroll. */
  --header-h: 68px;
  box-shadow: var(--shadow-1);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.75rem);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: var(--r-xs);
}
/* The Latin lockup is the top 144 of the full 252-unit artwork. Cropping it
   here means one logo file ships instead of two byte-identical ones. */
.logo-latin {
  aspect-ratio: 228 / 144;   /* force the crop box; without it the box
                                adopts the SVG ratio and nothing crops */
  object-fit: cover;
  object-position: top center;
}

.brand img {
  width: auto;
  height: 62px;
  transition: height var(--dur-2) var(--ease-out);
}
.site-header.is-scrolled .brand img { height: 50px; }

.main-nav { margin-inline: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.main-nav a {
  position: relative;
  display: block;
  padding-block: 0.65rem;
  font-size: var(--fs-xs);
  font-weight: var(--w-bold);
  letter-spacing: var(--track-ui);
  white-space: nowrap;
  transition: color var(--dur-1) linear;
}
.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--pink-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-2) var(--ease-out);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }
.main-nav a[aria-current="true"] { color: var(--blue-700); }
.main-nav a[aria-current="true"]::after { transform: scaleX(1); background: var(--blue-600); }
.nav-foot { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6rem 1.15rem;
  border-radius: var(--r-pill);
  background: var(--blue-700);
  color: var(--on-dark);
  font-size: var(--fs-xs);
  font-weight: var(--w-black);
  box-shadow: 0 8px 22px rgba(14, 105, 181, 0.28);
  transition: transform var(--dur-1) var(--ease-out), background var(--dur-1) linear;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--navy-900); }
.nav-cta .ic { font-size: 1.05rem; }

.menu-button,
.mobile-language-button { display: none; }
.mobile-language-button { font-size: var(--fs-2xs); font-weight: var(--w-black); }

.menu-glyph {
  width: 19px;
  height: 13px;
  position: relative;
  display: block;
}
.menu-glyph span {
  position: absolute;
  inset-inline: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--dur-2) var(--ease-out), opacity var(--dur-1) linear;
}
.menu-glyph span:first-child { top: 0; }
.menu-glyph span:last-child { bottom: 0; }
[aria-expanded="true"] .menu-glyph span:first-child { transform: translateY(5.5px) rotate(45deg); }
[aria-expanded="true"] .menu-glyph span:last-child { transform: translateY(-5.5px) rotate(-45deg); }

/* 7. Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 52% 0 0;
  background: linear-gradient(105deg, #fbfdff 0%, var(--paper) 62%, rgba(255, 254, 250, 0) 100%);
  pointer-events: none;
}
.hero-media {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 38%;
  overflow: hidden;
  background: #b1a289;
}
.hero-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms var(--ease-in-out);
}
.hero-media-slide.is-current { z-index: 1; opacity: 1; }
.hero-media-slide picture { position: absolute; inset: 0; }
.hero-media-slide img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 56% center;
  transform: translate3d(0, calc(-4% + var(--parallax, 0px)), 0) scale(1.02);
}
.hero-media-slide.is-current img { animation: heroDrift 7.5s linear both; }
.hero-media-slide:nth-child(2) img { object-position: 50% center; }
.hero-media-slide:nth-child(3) img { object-position: 50% 58%; }
@keyframes heroDrift {
  from { transform: translate3d(0, calc(-4% + var(--parallax, 0px)), 0) scale(1.06); }
  to { transform: translate3d(0, calc(-4% + var(--parallax, 0px)), 0) scale(1.01); }
}
.hero-media-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--paper) 0%,
    rgba(255, 254, 250, 0.8) 8%,
    rgba(255, 254, 250, 0.04) 38%,
    rgba(6, 29, 53, 0.1) 100%
  );
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 3;
  min-height: min(780px, calc(100svh - var(--chrome-h)));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
}
.hero-copy {
  max-width: 40rem;
  /* Height-aware, not width-aware: on a short laptop viewport this collapses so
     the primary CTAs stay above the fold. */
  padding-block: clamp(1.75rem, 4.2vh, 4.5rem);
}

.hero-eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.5rem 0.9rem;
  border: 1px solid #bcdff6;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-700);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  letter-spacing: var(--track-caps);
  text-transform: var(--caps);
}

.hero h1 {
  max-width: 14ch;
  margin-block: clamp(1.25rem, 2.4vw, 1.9rem) clamp(1rem, 1.8vw, 1.5rem);
  font-size: var(--fs-5xl);
  line-height: var(--lh-display);
  letter-spacing: var(--track-display);
}
.hero h1 span,
.hero h1 strong { display: block; }
.hero h1 strong { color: var(--pink-600); }

.hero-lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-block-start: clamp(1.75rem, 3vw, 2.25rem);
  flex-wrap: wrap;
}

.hero-service {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-block-start: clamp(2rem, 3.2vw, 2.75rem);
  padding-block: var(--sp-3);
  padding-inline: var(--sp-3) 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-1);
}
.service-ring {
  direction: ltr;
  unicode-bidi: isolate;
  width: 58px;
  height: 58px;
  display: grid;
  grid-auto-flow: column;
  place-content: center;
  align-items: baseline;
  flex: 0 0 auto;
  border: 1px dashed var(--blue-600);
  border-radius: 50%;
  color: var(--blue-700);
}
.service-ring b { font-size: 1.3rem; font-weight: var(--w-black); line-height: 1; }
.service-ring small { font-size: 0.75rem; font-weight: var(--w-black); }
.hero-service strong { display: block; font-size: var(--fs-xs); }
.hero-service span span { display: block; margin-block-start: 2px; color: var(--muted); font-size: var(--fs-2xs); line-height: 1.4; }

.fresh-tag {
  position: absolute;
  z-index: 4;
  inset-inline-start: 52%;
  bottom: 11%;
  width: 108px;
  height: 108px;
  display: grid;
  place-content: center;
  gap: var(--sp-1);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-700);
  text-align: center;
  box-shadow: var(--shadow-3);
  transform: rotate(-7deg);
}
.fresh-tag .ic { font-size: 1.55rem; margin-inline: auto; }
.fresh-tag span {
  max-width: 8ch;
  color: var(--navy-900);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  line-height: 1.25;
}

.hero-slider-nav {
  position: absolute;
  z-index: 5;
  inset-inline-end: var(--gutter);
  bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r-pill);
  background: rgba(6, 29, 53, 0.86);
  color: var(--on-dark);
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-slider-status {
  min-width: 128px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px var(--sp-3);
  align-items: center;
  padding-inline: var(--sp-2);
}
.hero-slider-label {
  overflow: hidden;
  font-size: var(--fs-2xs);
  font-weight: var(--w-bold);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hero-slider-count {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-2xs);
  font-variant-numeric: tabular-nums;
  unicode-bidi: isolate;
}
.hero-slider-count strong { color: var(--lime); font-size: var(--fs-2xs); }
.hero-slider-progress {
  grid-column: 1 / -1;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.hero-slider-progress > span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--pink-500));
}
.hero-slider-progress > span.is-running { animation: heroProgress 6.5s linear forwards; }
@keyframes heroProgress { to { width: 100%; } }

.load-in {
  opacity: 0;
  transform: translateY(22px);
  animation: loadUp 800ms var(--ease-out) forwards;
}
.load-1 { animation-delay: 100ms; }
.load-2 { animation-delay: 190ms; }
.load-3 { animation-delay: 290ms; }
.load-4 { animation-delay: 400ms; }
.load-5 { animation-delay: 520ms; }
@keyframes loadUp { to { opacity: 1; transform: translateY(0); } }

/* Marquee ----------------------------------------------------------------- */
.brand-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--blue-700);
  color: var(--on-dark);
}
.marquee-track {
  width: max-content;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  direction: ltr;
  animation: marquee 46s linear infinite;
}
.brand-marquee:hover .marquee-track,
.brand-marquee:focus-within .marquee-track,
.brand-marquee[data-paused="true"] .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  letter-spacing: var(--track-caps);
  text-transform: var(--caps);
  white-space: nowrap;
}
.marquee-track .ic { font-size: 0.95rem; color: var(--lime); }
.marquee-pause {
  position: absolute;
  z-index: 2;
  inset-block: 0;
  inset-inline-end: 0;
  width: 44px;
  color: var(--on-dark);
  background: var(--blue-700);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
}
.marquee-pause:hover { background: var(--navy-800); }
.marquee-track { padding-inline-end: 44px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* 8. Carousels ------------------------------------------------------------ */
.slider-controls {
  display: flex;
  gap: var(--sp-2);
  justify-content: flex-end;
  margin-block-start: var(--sp-5);
}

.department-slider { --slide-w: clamp(255px, 22vw, 320px); }

.slider-viewport {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 4px var(--sp-3);
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  direction: ltr;
  cursor: grab;
}
.slider-viewport::-webkit-scrollbar { display: none; }
.slider-viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.slider-viewport.is-dragging * { pointer-events: none; }

.department-slide {
  position: relative;
  width: var(--slide-w);
  aspect-ratio: 5 / 7;
  flex: 0 0 auto;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: var(--r-md);
  background: var(--navy-900);
  color: var(--on-dark);
  isolation: isolate;
  box-shadow: var(--shadow-1);
}
.department-slide picture { position: absolute; inset: 0; }
.department-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms var(--ease-out);
}
.department-slide:hover img,
.department-slide.is-current img { transform: scale(1.05); }
.slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 29, 53, 0.02) 16%, rgba(6, 29, 53, 0.12) 40%, rgba(6, 29, 53, 0.93) 100%);
}
.slide-number {
  position: absolute;
  top: var(--sp-4);
  inset-inline-end: var(--sp-4);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(6, 29, 53, 0.5);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(8px);
}
.slide-copy {
  position: absolute;
  inset: auto var(--sp-5) var(--sp-5);
}
.slide-icon {
  font-size: 1rem;
  width: 2rem;
  height: 2rem;
  padding: var(--sp-2);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-700);
}
.slide-copy h3 {
  max-width: 17ch;
  margin-block: var(--sp-3) var(--sp-2);
  font-size: var(--fs-lg);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-tight);
}
.slide-copy p {
  max-width: 30ch;
  color: var(--on-dark-soft);
  font-size: var(--fs-2xs);
  line-height: var(--lh-snug);
}

.slider-meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--sp-5);
  align-items: center;
  margin-block-start: var(--sp-5);
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: var(--w-semi);
}
.slider-meta p {
  display: flex;
  gap: 4px;
  align-items: baseline;
  color: var(--navy-900);
  font-variant-numeric: tabular-nums;
  unicode-bidi: isolate;
}
.slider-meta strong { font-size: var(--fs-sm); }
.slider-progress {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
}
.slider-progress span {
  display: block;
  width: 16.6667%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-600);
  transition: width var(--dur-3) var(--ease-out);
}

.visual-disclosure {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  max-width: 74ch;
  margin-block-start: var(--sp-5);
  color: var(--muted);
  font-size: var(--fs-2xs);
  line-height: var(--lh-body);
}
.visual-disclosure .ic { flex: 0 0 auto; margin-block-start: 0.2em; color: var(--pink-700); }

/* 9. Sections ------------------------------------------------------------- */
.departments { background: var(--paper); }

.about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-copy h2 { max-width: 14ch; }
.about-copy .lead { max-width: 46ch; margin-block: var(--sp-5); }
.about-copy blockquote {
  position: relative;
  margin-block-end: var(--sp-7);
  padding-inline-start: 3.25rem;
  color: var(--navy-900);
}
.about-copy blockquote::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 2px;
  border-radius: 2px;
  background: var(--pink-500);
}
.about-copy blockquote .ic {
  position: absolute;
  top: 2px;
  inset-inline-start: 1rem;
  font-size: 1.35rem;
  color: var(--pink-600);
}
.about-copy blockquote p { font-size: var(--fs-base); font-weight: var(--w-bold); line-height: var(--lh-snug); }

.brand-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block-start: 1px solid var(--line-strong);
  border-inline-start: 1px solid var(--line-strong);
}
.brand-facts > div {
  padding: var(--sp-5) var(--sp-4);
  border-inline-end: 1px solid var(--line-strong);
  border-block-end: 1px solid var(--line-strong);
}
.brand-facts dt {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--muted);
  font-size: var(--fs-2xs);
  font-weight: var(--w-bold);
}
.brand-facts dt .ic { font-size: 1rem; color: var(--blue-700); }
.brand-facts dd { margin-block-start: var(--sp-2); font-size: var(--fs-sm); font-weight: var(--w-black); line-height: 1.4; }

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 42rem;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  background: #887459;
}
.about-visual picture { position: absolute; inset: -5% 0; }
.about-visual picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax, 0px), 0) scale(1.015);
}
.about-visual figcaption {
  position: absolute;
  inset: auto var(--sp-5) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-sm);
  background: rgba(6, 29, 53, 0.88);
  color: var(--on-dark);
  backdrop-filter: blur(12px);
}
.about-visual figcaption span {
  color: var(--lime);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  letter-spacing: var(--track-caps);
  text-transform: var(--caps);
}
.about-visual figcaption strong { font-size: var(--fs-xs); }

.vision { background: var(--paper); }
.vision-heading {
  margin-block-end: clamp(2rem, 3vw, 3rem);
}
.vision-heading .section-heading-main { max-width: 46rem; }
.vision-heading h2 { max-width: 20ch; }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}
.vision-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 34rem;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.75rem);
  border-radius: var(--r-lg);
}
.vision-light { background: var(--tint-green); padding-block-end: clamp(11rem, 15vw, 14rem); }
.vision-dark { background: var(--navy-900); color: var(--on-dark); }
.vision-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.vision-card > * { position: relative; z-index: 1; }
.vision-card-head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--pink-700);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  letter-spacing: var(--track-caps);
  text-transform: var(--caps);
}
.vision-dark .vision-card-head { color: var(--pink-300); }
.vision-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.35rem;
}
.vision-card h3 {
  max-width: 16ch;
  margin-block: clamp(1.75rem, 3vw, 2.5rem) var(--sp-5);
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-tight);
}
.vision-card > p:not(.vision-card-head) { max-width: 48ch; margin-block-end: auto; color: var(--muted); font-size: var(--fs-sm); line-height: var(--lh-loose); }
.vision-dark > p:not(.vision-card-head) { color: var(--on-dark-soft); }
.botanical-crop {
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: clamp(10rem, 14vw, 13rem);
  overflow: hidden;
  mask-image: linear-gradient(to top, #000 66%, transparent);
}
.botanical-crop picture { position: absolute; inset: 0; }
.botanical-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: saturate(0.88) hue-rotate(8deg);
}
.mission-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-block-start: auto;
  padding-block-start: var(--sp-6);
  border-block-start: 1px solid var(--line-dark);
}
.mission-principles li {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-3) 0;
  border-inline-end: 1px solid var(--line-dark);
  font-size: var(--fs-2xs);
  font-weight: var(--w-bold);
}
.mission-principles li:last-child { border-inline-end: 0; }
.mission-principles li:first-child { padding-inline-start: 0; }
.mission-principles .ic { font-size: 1.35rem; color: var(--pink-300); }

.why { background: var(--white); }
.why-heading h2 { max-width: 18ch; }
.reason-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: var(--sp-4);
}
.reason-feature {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border-radius: var(--r-lg);
  color: var(--on-dark);
  background: #9e803e;
}
.reason-feature picture { position: absolute; inset: 0; }
.reason-feature picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.reason-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 29, 53, 0.05), rgba(6, 29, 53, 0.9));
}
.reason-feature:hover picture img { transform: scale(1.05); }
.reason-feature-copy {
  position: absolute;
  z-index: 2;
  inset: auto clamp(1.5rem, 3vw, 2.25rem) clamp(1.75rem, 3vw, 2.5rem);
}
.reason-feature-copy > .ic { font-size: 2.1rem; margin-block-end: var(--sp-4); color: var(--lime); }
.reason-number {
  color: var(--pink-300);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--track-num);
}
.reason-item .reason-number { color: var(--pink-700); }
.reason-with-photo .reason-number { color: var(--pink-300); }
.reason-feature-copy h3 {
  max-width: 12ch;
  margin-block: var(--sp-2) var(--sp-3);
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-display);
}
.reason-feature-copy p { max-width: 38ch; color: var(--on-dark-soft); font-size: var(--fs-sm); }

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.reason-item {
  position: relative;
  /* Text-only cards hug their copy; the photo cards below keep the taller box
     so their imagery still reads. Rows stretch to the tallest card either way. */
  min-height: 11.5rem;
  display: grid;
  grid-template-columns: 40px 22px minmax(0, 1fr);
  gap: var(--sp-4);
  /* start, not center: cards in a row hold different amounts of copy, and
     centring each independently left their headings 10-21px out of line. */
  align-content: start;
  padding: clamp(1.35rem, 2.2vw, 1.9rem);
  overflow: hidden;
  background: var(--white);
}
.reason-item > .ic { font-size: 1.7rem; color: var(--blue-700); }
.reason-item h3 { margin-block-end: var(--sp-2); font-size: var(--fs-base); line-height: var(--lh-heading); letter-spacing: var(--track-heading); }
.reason-item p { color: var(--muted); font-size: var(--fs-2xs); line-height: var(--lh-body); }
.reason-list > li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.reason-with-photo { min-height: 15.5rem; color: var(--on-dark); background: var(--navy-900); }
.reason-with-photo picture { position: absolute; z-index: 0; inset: 0; }
.reason-with-photo picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reason-with-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(6, 29, 53, 0.8);
}
.reason-with-photo > .ic,
.reason-with-photo > .reason-number,
.reason-with-photo > div { position: relative; z-index: 2; }
.reason-with-photo > .ic { color: var(--blue-300); }
.reason-with-photo p { color: var(--on-dark-soft); }

.values { padding-block: clamp(3rem, 5vw, 4.5rem); background: var(--navy-900); color: var(--on-dark); }
.values-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.values-title .section-kicker { margin-block-start: 0; color: var(--pink-300); }
.values h2 { max-width: 15ch; font-size: var(--fs-xl); letter-spacing: var(--track-tight); }
.value-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.value-items li {
  min-height: 6.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-inline-start: 1px solid var(--line-dark);
  font-size: var(--fs-2xs);
  font-weight: var(--w-bold);
  line-height: 1.35;
}
.value-items .ic { font-size: 1.6rem; color: var(--pink-300); }
.value-items li span { max-width: 15ch; }

.future { background: var(--tint-blue); }
.future-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  min-height: 0;
  overflow: hidden;
  padding: clamp(2rem, 3vw, 3.25rem);
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, #061d35, #0a3b6b);
  color: var(--on-dark);
  box-shadow: var(--shadow-3);
}
.future-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle at 1px 1px, var(--white) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.future-copy { position: relative; z-index: 2; max-width: 42rem; }
.coming-soon {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: var(--lime);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  letter-spacing: var(--track-caps);
  text-transform: var(--caps);
}
.future h2 { max-width: 16ch; margin-block: var(--sp-4); font-size: var(--fs-2xl); }
.future-copy > p:not([class]) { max-width: 52ch; color: var(--on-dark-soft); font-size: var(--fs-sm); line-height: var(--lh-body); }
.future-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
  margin-block: var(--sp-5);
}
.future-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.42rem 0.8rem;
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--r-pill);
  font-size: var(--fs-2xs);
  font-weight: var(--w-bold);
}
.future-list .ic { font-size: 1rem; color: var(--blue-300); }

.delivery-visual { position: relative; height: clamp(17rem, 24vw, 20rem); }
.phone-preview {
  position: absolute;
  z-index: 3;
  top: 50%;
  inset-inline-start: 6%;
  width: 140px;
  height: 286px;
  border: 6px solid #0b1721;
  border-radius: 27px;
  background: #f9fcff;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%) rotate(-2deg) scale(var(--phone-scale));
  animation: phoneFloat 5.5s ease-in-out infinite;
}
.phone-preview > img { width: 76px; height: auto; margin: 25px auto 7px; }
.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 38px;
  height: 4px;
  border-radius: var(--r-pill);
  background: #17212b;
  transform: translateX(-50%);
}
.phone-map {
  position: relative;
  height: 140px;
  margin-inline: 10px;
  overflow: hidden;
  border-radius: var(--r-sm);
  background-color: #eaf5eb;
  background-image:
    linear-gradient(35deg, transparent 45%, rgba(255, 255, 255, 0.9) 46% 54%, transparent 55%),
    linear-gradient(-25deg, transparent 46%, rgba(255, 255, 255, 0.9) 47% 55%, transparent 56%);
  background-size: 90px 90px, 110px 110px;
}
.phone-map span {
  position: absolute;
  left: 20px;
  top: 76px;
  width: 75px;
  height: 2px;
  background: var(--blue-600);
  transform: rotate(-18deg);
}
.phone-map .ic {
  position: absolute;
  left: 51px;
  top: 51px;
  font-size: 1.65rem;
  color: var(--pink-600);
  fill: var(--white);
}
.phone-preview p {
  margin-block-start: var(--sp-2);
  color: var(--navy-900);
  text-align: center;
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  letter-spacing: var(--track-caps);
  text-transform: var(--caps);
}
@keyframes phoneFloat { 50% { transform: translateY(calc(-50% - 8px)) rotate(1deg) scale(var(--phone-scale)); } }
.delivery-route {
  position: absolute;
  z-index: 1;
  inset-inline-start: 28%;
  top: 26%;
  width: 70%;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: rgba(120, 190, 240, 0.8);
  stroke-width: 3;
  stroke-dasharray: 9 10;
  animation: route 15s linear infinite;
}
@keyframes route { to { stroke-dashoffset: -380; } }
.delivery-truck {
  position: absolute;
  z-index: 2;
  inset-inline-end: 2%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: #7cc2f6;
  transform: translateY(-50%);
}
.delivery-truck .ic { font-size: 4.5rem; stroke-width: 1.1; }
.delivery-truck span {
  color: var(--on-dark);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
  letter-spacing: var(--track-caps);
  text-transform: var(--caps);
}

.audiences { background: var(--white); }
.audiences-heading h2 { max-width: 18ch; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--sp-3);
}
.audience-grid li {
  display: flex;
  flex-direction: column;
  /* Grid already equalises row height; a tall floor only manufactured voids. */
  min-height: 0;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: color var(--dur-2) linear, background var(--dur-2) linear;
}
.audience-grid li:hover { color: var(--on-dark); background: var(--navy-900); }
.audience-grid .ic { font-size: 1.9rem; color: var(--pink-700); transition: color var(--dur-2) linear; }
.audience-grid li:hover .ic { color: var(--lime); }
/* Was `margin-block: auto` + a 32px top padding, which pushed the heading to
   the card bottom and left 91px of empty background in a 256px card. The
   copy now sits under its icon with one deliberate gap. */
.audience-grid h3 { margin-block: var(--sp-5) var(--sp-2); font-size: var(--fs-base); line-height: var(--lh-heading); }
.audience-grid p { color: var(--muted); font-size: var(--fs-2xs); line-height: var(--lh-body); transition: color var(--dur-2) linear; }
.audience-grid li:hover p { color: var(--on-dark-soft); }

.contact { background: var(--navy-900); color: var(--on-dark); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr); }
.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.5rem, 6vw, 6rem);
}
.contact-copy .section-kicker { margin-block-start: 0; color: var(--pink-300); }
.contact-copy h2 { max-width: 14ch; font-size: var(--fs-2xl); }
.contact-copy > p:not([class]) { max-width: 40ch; margin-block-start: var(--sp-5); color: var(--on-dark-soft); font-size: var(--fs-base); line-height: var(--lh-loose); }
.contact-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-block-start: var(--sp-6); }

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.contact-details > a,
.contact-details > div {
  min-height: 7rem;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-5) var(--sp-4);
  background: var(--navy-900);
  transition: background var(--dur-1) linear;
}
.contact-details > a:hover { background: #0a3a68; }
.contact-details > .wide { grid-column: 1 / -1; }
.contact-details .ic { font-size: 1.4rem; color: var(--pink-300); }
.contact-details small,
.contact-details b { display: block; }
.contact-details small { color: var(--on-dark-muted); font-size: var(--fs-2xs); font-weight: var(--w-bold); }
.contact-details b { margin-block-start: 4px; font-size: var(--fs-xs); line-height: var(--lh-snug); overflow-wrap: break-word; }
.contact-details em {
  display: block;
  margin-block-start: var(--sp-2);
  color: var(--pink-300);
  font-size: var(--fs-2xs);
  font-style: normal;
  line-height: var(--lh-snug);
}

.map-panel {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  background: var(--tint-green);
  color: var(--navy-900);
}
.map-lines {
  position: absolute;
  inset: -10%;
  opacity: 0.85;
  background-image:
    linear-gradient(28deg, transparent 42%, var(--white) 43% 50%, transparent 51%),
    linear-gradient(-32deg, transparent 45%, var(--white) 46% 53%, transparent 54%),
    linear-gradient(80deg, transparent 46%, rgba(255, 255, 255, 0.75) 47% 52%, transparent 53%);
  background-size: 200px 160px, 230px 210px, 170px 190px;
}
.map-lines::before,
.map-lines::after { content: ""; position: absolute; background: rgba(131, 196, 77, 0.18); border-radius: var(--r-xs); }
.map-lines::before { width: 140px; height: 100px; left: 25%; top: 17%; }
.map-lines::after { width: 110px; height: 160px; right: 17%; bottom: 15%; }
.map-pin-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}
.map-pin-dot {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--on-dark);
  font-size: 1.8rem;
  box-shadow: 0 18px 35px rgba(37, 139, 226, 0.32);
  transition: transform var(--dur-2) var(--ease-out);
}
.map-pin-brand img { width: auto; height: 148px; margin-block-start: var(--sp-4); }
.map-caption {
  position: absolute;
  inset: auto var(--sp-5) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.94);
  font-size: var(--fs-2xs);
  font-weight: var(--w-black);
}
.map-caption > span { display: grid; gap: var(--sp-1); }
.map-caption strong,
.map-caption small { display: block; }
.map-caption small { max-width: 38ch; color: var(--muted); font-size: var(--fs-2xs); font-weight: var(--w-semi); line-height: var(--lh-snug); }
.map-caption .ic { flex: 0 0 auto; font-size: 1.05rem; }

/* 10. Footer -------------------------------------------------------------- */
.site-footer { padding-block: clamp(3rem, 5vw, 4rem) var(--sp-5); background: var(--white); }
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block-end: var(--sp-7);
}
.footer-top.has-social-links {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 0.7fr);
}
.footer-brand img { width: auto; height: 108px; }
.footer-brand p { max-width: 34ch; margin-block-start: var(--sp-2); color: var(--muted); font-size: var(--fs-2xs); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6); }
.footer-nav a { font-size: var(--fs-2xs); font-weight: var(--w-black); transition: color var(--dur-1) linear; }
.footer-nav a:hover { color: var(--pink-700); }
.footer-social-label { color: var(--muted); font-size: var(--fs-2xs); font-weight: var(--w-bold); }
.footer-social ul { display: flex; gap: var(--sp-2); margin-block-start: var(--sp-3); }
.social-chip {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy-900);
  font-size: 0.95rem;
  transition: color var(--dur-1) linear, background var(--dur-1) linear, transform var(--dur-1) var(--ease-out);
}
a.social-chip:hover { color: var(--on-dark); background: var(--navy-900); transform: translateY(-2px); }
span.social-chip { color: var(--muted); opacity: 0.72; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block-start: var(--sp-5);
  border-block-start: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-2xs);
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--navy-900);
  font-weight: var(--w-black);
}
.footer-bottom a:hover { color: var(--pink-700); }

/* Contact rows that only ever hold one item per line at narrow widths. */

.to-top {
  position: fixed;
  z-index: 90;
  inset-block-end: clamp(1rem, 3vw, 1.75rem);
  inset-inline-end: clamp(1rem, 3vw, 1.75rem);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--on-dark);
  font-size: 1.1rem;
  box-shadow: var(--shadow-2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out), background var(--dur-1) linear;
}
.to-top[hidden] { display: none; }
.to-top.is-shown { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--blue-700); }

/* Reveal ------------------------------------------------------------------
   Content stays visible if JavaScript cannot load. The behaviour layer adds
   .reveal-ready only after it has installed the reveal observer. */
[data-reveal] { opacity: 1; transform: none; }
html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-4) var(--ease-out), transform var(--dur-4) var(--ease-out);
}
html.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

/* 11. RTL ----------------------------------------------------------------- */
html[dir="rtl"] {
  --track-display: -0.005em;
  --track-tight: 0;
  --track-heading: 0;
  --track-caps: 0;
  --track-ui: 0;
  --caps: none;
  --lh-display: 1.24;
  --lh-tight: 1.3;
  --lh-heading: 1.35;
  --lh-snug: 1.62;
  --lh-body: 1.85;
  --lh-loose: 1.95;
}
html[dir="rtl"] body { font-family: var(--font-ar); }
html[dir="rtl"] .hero h1,
html[dir="rtl"] .section h2,
html[dir="rtl"] .contact h2,
html[dir="rtl"] .values h2 { font-family: var(--font-ar-display); }
html[dir="rtl"] .hero h1 { max-width: 14ch; font-size: var(--fs-4xl); line-height: var(--lh-tight); }
html[dir="rtl"] .section h2,
html[dir="rtl"] .contact h2,
html[dir="rtl"] .values h2 { line-height: 1.16; }
html[dir="rtl"] .hero::before {
  inset: 0 0 0 52%;
  background: linear-gradient(255deg, #fbfdff 0%, var(--paper) 62%, rgba(255, 254, 250, 0) 100%);
}
html[dir="rtl"] .hero-media { inset: 0 38% 0 0; }
html[dir="rtl"] .hero-media-shade {
  background: linear-gradient(270deg, var(--paper) 0%, rgba(255, 254, 250, 0.8) 8%, rgba(255, 254, 250, 0.04) 38%, rgba(6, 29, 53, 0.1) 100%);
}
html[dir="rtl"] .main-nav a::after { transform-origin: right; }
html[dir="rtl"] .rtl-flip { transform: scaleX(-1); }
html[dir="rtl"] .button:hover .ic { transform: translate(-2px, -2px); }
html[dir="rtl"] .button:hover .rtl-flip { transform: scaleX(-1) translate(2px, -2px); }
html[dir="rtl"] .map-caption .ic,
html[dir="rtl"] .footer-bottom .ic { transform: none; }
html[dir="rtl"] .slide-copy,
html[dir="rtl"] .slider-viewport { direction: rtl; }
html[dir="rtl"] .marquee-track { direction: ltr; }
html[dir="rtl"] .delivery-route { transform: scaleX(-1); }
html[dir="rtl"] .phone-map .ic { transform: scaleX(-1); }

/* 12. Responsive ---------------------------------------------------------- */
@media (max-width: 1180px) {
  :root { --anchor-offset: 96px; --chrome-h: var(--header-h); }

  /* Once navigation collapses into the drawer, these desktop utility links
     are duplicated by the header and drawer actions. Removing the strip keeps
     tablet and mobile headers calm instead of forcing six items into one row. */
  .utility-bar { display: none; }
  .mobile-language-button { display: grid; width: 46px; height: 46px; }

  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr); }

  .main-nav {
    position: fixed;
    z-index: 99;
    inset: calc(var(--header-h) + 2px) 0 auto;
    height: calc(100dvh - var(--header-h) - 2px);
    display: none;
    overflow-y: auto;
    padding: var(--sp-5) var(--gutter) var(--sp-7);
    border-block-end: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-3);
  }
  .main-nav.is-open { display: block; animation: navIn var(--dur-2) var(--ease-out); }
  @keyframes navIn { from { opacity: 0; transform: translateY(-10px); } }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li + li { border-block-start: 1px solid var(--line); }
  .main-nav a { padding-block: var(--sp-4); font-size: var(--fs-md); }
  .main-nav a::after { display: none; }
  .nav-foot { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-block-start: var(--sp-5); }
  /* .main-nav a is more specific than the shared .button rule. Restore the
     intended flex layout here so each drawer CTA keeps its icon and label on
     one centered line in both LTR and RTL. */
  .nav-foot .button { display: inline-flex; flex: 1 1 12rem; }
  .menu-button { display: grid; }
  /* The nav no longer occupies the middle, so push the actions to the end. */
  .header-actions { margin-inline-start: auto; }

  .about-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: var(--sp-8); }
  .contact-main { grid-template-columns: minmax(0, 1fr); }
  .reason-item { grid-template-columns: 34px 20px minmax(0, 1fr); gap: var(--sp-3); }
  .value-items { grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); }
}

@media (max-width: 900px) {
  :root { --anchor-offset: 92px; --hero-media-h: min(62vw, 30rem); }

  /* Stacked layout: the photo becomes a fixed band under the copy, and the
     copy reserves exactly that much room so the two never overlap. */
  .hero::before,
  html[dir="rtl"] .hero::before { display: none; }
  .hero-media,
  html[dir="rtl"] .hero-media { inset: auto 0 0; height: var(--hero-media-h); }
  .hero-media-shade,
  html[dir="rtl"] .hero-media-shade { background: linear-gradient(180deg, var(--paper), rgba(255, 254, 250, 0) 26%, rgba(6, 29, 53, 0.06)); }
  .hero-media-slide img { height: 100%; transform: translate3d(0, var(--parallax, 0px), 0) scale(1.02); }
  .hero-media-slide.is-current img { animation: none; }
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    min-height: 0;
    padding-block-end: calc(var(--hero-media-h) + var(--sp-4));
  }
  .hero-copy { max-width: 38rem; margin-inline: auto; padding-block: clamp(2.5rem, 6vw, 3.5rem) 0; text-align: center; }
  .hero-eyebrow, .hero-actions, .hero-service, .hero h1, .hero-lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero h1 { max-width: 13ch; }
  html[dir="rtl"] .hero h1 { max-width: 15ch; }
  .fresh-tag, html[dir="rtl"] .fresh-tag { inset-inline-start: var(--gutter); bottom: 7%; }
  .hero-slider-nav, html[dir="rtl"] .hero-slider-nav { inset-inline-end: var(--gutter); bottom: var(--sp-4); }

  .section-heading,
  .why-heading,
  .audiences-heading,
  .vision-heading { grid-template-columns: minmax(0, 1fr); gap: var(--sp-5); align-items: start; }
  .vision-heading h2 { max-width: 20ch; }
  .why-heading > p,
  .audiences-heading > p { margin-block-start: 0; }
  .slider-controls { justify-content: flex-start; }

  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .about-visual { order: -1; aspect-ratio: 16 / 11; max-height: none; }
  .vision-grid { grid-template-columns: minmax(0, 1fr); }
  .vision-card { min-height: 0; }
  .reason-grid { grid-template-columns: minmax(0, 1fr); }
  .reason-feature { min-height: 30rem; }
  .values-inner { grid-template-columns: minmax(0, 1fr); gap: var(--sp-6); }
  .future-card { grid-template-columns: minmax(0, 1fr); gap: var(--sp-5); align-items: start; }
  .future-copy { max-width: 100%; }
  .delivery-visual { height: min(44vw, 17rem); }
  .phone-preview { --phone-scale: 0.82; inset-inline-start: 18%; }
  .delivery-truck { inset-inline-end: 12%; }
  .audience-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .audience-grid li { grid-column: span 2; }
  .audience-grid li:nth-last-child(-n + 2) { grid-column: span 3; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .map-panel { min-height: 26rem; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top.has-social-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-social { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --anchor-offset: 84px; --header-h: 68px; --hero-media-h: min(92vw, 26rem); }

  .site-header, .site-header.is-scrolled { height: var(--header-h); }
  .header-inner { gap: var(--sp-2); }
  /* One-per-row audience cards do not need the tall editorial gap. */
  .audience-grid li { min-height: 0; }
  .audience-grid { grid-template-columns: minmax(0, 1fr); }
  .audience-grid li,
  .audience-grid li:nth-last-child(-n + 2) { grid-column: auto; }
  .audience-grid h3 { margin-block-start: var(--sp-5); padding-block-start: 0; }

  .brand img { height: 44px; }
  .site-header.is-scrolled .brand img { height: 44px; }
  .nav-cta { width: 46px; min-width: 46px; padding: 0; justify-content: center; }
  /* Visually hidden, not removed: display:none stripped the link's only text,
     leaving an icon-only link with no accessible name (axe: link-name, serious). */
  .nav-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .menu-button { width: 46px; height: 46px; }

  .hero h1 { max-width: 11ch; }
  html[dir="rtl"] .hero h1 { max-width: 13ch; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-service { width: 100%; text-align: start; }
  .fresh-tag { width: 88px; height: 88px; }
  .fresh-tag .ic { font-size: 1.25rem; }
  .hero-slider-status { min-width: 58px; }
  .hero-slider-label { display: none; }

  .section-heading,
  .why-heading,
  .audiences-heading,
  .vision-heading { gap: var(--sp-4); margin-block-end: var(--sp-6); }

  .future-card { gap: var(--sp-4); padding: var(--sp-5); border-radius: var(--r-md); }
  .future h2 { max-width: 18ch; font-size: var(--fs-xl); }
  .future-list { margin-block: var(--sp-4); gap: var(--sp-2); }
  .delivery-visual { height: 12.5rem; }
  .phone-preview { --phone-scale: 0.64; inset-inline-start: 5%; }
  .delivery-route { inset-inline-start: 23%; width: 75%; }
  .delivery-truck { inset-inline-end: 2%; }
  .delivery-truck .ic { font-size: 3.5rem; }

  .brand-facts { grid-template-columns: minmax(0, 1fr); }
  .reason-list { grid-template-columns: minmax(0, 1fr); }
  .reason-item { min-height: 0; }
  .mission-principles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-2) 0; }
  .mission-principles li:nth-child(2) { border-inline-end: 0; }
  .value-items { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-2) 0; }
  .value-items li { border-inline-start: 0; border-block-start: 1px solid var(--line-dark); padding-inline: 0 var(--sp-4); }
  .department-slider { --slide-w: min(78vw, 300px); }
  .slider-meta { grid-template-columns: minmax(0, 1fr) auto; }
  .slider-hint { display: none; }
  .contact-details { grid-template-columns: minmax(0, 1fr); }
  .contact-details > a, .contact-details > div { grid-column: 1 / -1; }
  .contact-details > div:last-child { grid-column: auto; }
  .contact-main { padding-inline: var(--gutter); }
  .footer-top { grid-template-columns: minmax(0, 1fr); gap: var(--sp-6); }
  .footer-top.has-social-links { grid-template-columns: minmax(0, 1fr); }
  .footer-social { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .to-top { width: 44px; height: 44px; }
}

/* Motion & contrast preferences ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html.reveal-ready [data-reveal],
  [data-reveal],
  .load-in { opacity: 1 !important; transform: none !important; }
  .hero-slider-progress > span { width: 100%; }
  .slider-viewport { scroll-behavior: auto; }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #3c5169;
    --line: #9db4c4;
    --line-strong: #7e99ad;
    --line-dark: rgba(255, 255, 255, 0.4);
    --on-dark-soft: #eaf4fb;
  }
  .button, .icon-button, .nav-cta { border-color: currentColor; }
}

@media print {
  .utility-bar, .site-header, .hero-media, .hero-slider-nav,
  .brand-marquee, .slider-controls, .to-top, .scroll-progress, .delivery-visual { display: none !important; }
  body { background: var(--white); color: #000; font-size: 11pt; }
  .section { padding-block: var(--sp-5); }
  [data-reveal], .load-in { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
