@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&family=Cairo:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS  —  Point EG Design System
   ============================================================ */
:root {
  /* colour */
  --black: #000000;
  --near-black: #17171c;
  --deep-green: #003c33;
  --dark-navy: #071829;
  --action-blue: #1863dc;
  --coral: #ff7759;
  --soft-coral: #ffad9b;
  --canvas-white: #ffffff;
  --soft-stone: #eeece7;
  --pale-green-wash: #edfce9;
  --pale-blue-wash: #f1f5ff;
  --card-border: #f2f2f2;
  --ink: #212121;
  --muted-slate: #93939f;
  --slate: #75758a;
  --hairline: #d9d9dd;
  --border-light: #e5e7eb;
  --focus-blue: #4c6ee6;
  --form-focus-violet: #9b60aa;
  --error-red: #b30000;
  --surface-stone: var(--soft-stone);

  /* type */
  --font-display: 'Space Grotesk', Inter, ui-sans-serif, system-ui, sans-serif;
  --font-body: Inter, Arial, ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', Arial, ui-sans-serif, system-ui, monospace;

  /* radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 32px;
  --radius-full: 9999px;

  /* motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --shell: 1280px;
  --gutter: 32px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--canvas-white);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[dir="rtl"] { font-family: 'Cairo', var(--font-body); }
body[dir="rtl"] h1, body[dir="rtl"] h2, body[dir="rtl"] h3,
body[dir="rtl"] .display { font-family: 'Cairo', var(--font-display); }

/* Arabic script joins its letters — tracking and a Latin mono face break that,
   so eyebrow/label text falls back to Cairo with no letter-spacing in RTL. */
body[dir="rtl"] .kicker,
body[dir="rtl"] .stat__label,
body[dir="rtl"] .side__label,
body[dir="rtl"] .step__n,
body[dir="rtl"] .loc-row .kicker {
  font-family: 'Cairo', var(--font-body);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--deep-green); color: #fff; }

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

.shell { max-width: var(--shell); margin: 0 auto; padding-inline: var(--gutter); }

/* grid/flex children must be allowed to shrink below their content width */
.hero > *, .split > *, .vm > *, .contact > *, .loc-row > *,
.stats__grid > *, .why > *, .tms > *, .steps > *, .form__row > * { min-width: 0; }

.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--deep-green);
}
.kicker--inverse { color: rgba(255, 255, 255, 0.6); }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--near-black);
  line-height: 1.05;
  letter-spacing: -1px;
}

.lede { font-size: 18px; line-height: 1.55; color: var(--slate); }

/* ============================================================
   BUTTONS  (design-system Button, extended with motion)
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: background-color .25s var(--ease-out), color .25s var(--ease-out),
              transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              opacity .2s ease;
}
.btn--md { padding: 12px 24px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 8px 18px; }

.btn--primary {
  background: var(--near-black);
  color: var(--canvas-white);
  border-radius: var(--radius-pill);
}
.btn--primary-inverse {
  background: var(--canvas-white);
  color: var(--near-black);
  border-radius: var(--radius-pill);
}
.btn--pill-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius-xl);
}
.btn--secondary {
  background: transparent;
  color: var(--ink);
  padding: 0;
  border-radius: 0;
  overflow: visible;
}

/* sheen sweep */
.btn--primary::after,
.btn--primary-inverse::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.28) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
}
.btn--primary-inverse::after { background: linear-gradient(110deg, transparent 25%, rgba(0,0,0,.10) 50%, transparent 75%); }
.btn--primary:hover::after,
.btn--primary-inverse:hover::after { transform: translateX(120%); }

.btn--primary:hover { background: var(--black); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.btn--primary-inverse:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.28); }
.btn--pill-outline:hover { background: var(--near-black); color: var(--canvas-white); border-color: var(--near-black); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* underline-grow text button */
.btn--secondary .btn__label { position: relative; display: inline-block; }
.btn--secondary .btn__label::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: inline-start;
  transition: transform .4s var(--ease-out);
}
.btn--secondary:hover .btn__label::after { transform: scaleX(0); transform-origin: inline-end; }
.btn--secondary .btn__arrow { transition: transform .4s var(--ease-out); display: inline-block; }
.btn--secondary:hover .btn__arrow { transform: translateX(5px); }
body[dir="rtl"] .btn--secondary .btn__arrow { transform: scaleX(-1); }
body[dir="rtl"] .btn--secondary:hover .btn__arrow { transform: scaleX(-1) translateX(5px); }

.btn--block { width: 100%; }

.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px color-mix(in oklch, var(--focus-blue) 45%, transparent); }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#progress {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: inline-start;
  background: linear-gradient(90deg, var(--deep-green), #0a8f74);
  z-index: 300;
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
#nav.is-stuck {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--hairline);
  box-shadow: 0 8px 30px rgba(23, 23, 28, .06);
}
.nav__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding .4s var(--ease-out);
}
#nav.is-stuck .nav__inner { padding-block: 11px; }

.nav__logo { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; }
.nav__logo img { height: 46px; width: auto; transition: transform .4s var(--ease-out); }
#nav.is-stuck .nav__logo img { height: 40px; }
.nav__logo:hover img { transform: scale(1.05); }

.nav__links { display: none; gap: 36px; align-items: center; }
.nav__link {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  padding: 6px 2px;
  transition: color .25s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--deep-green);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform .4s var(--ease-out);
}
.nav__link:hover { color: var(--near-black); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--near-black); }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 14px; }

.langtoggle {
  background: var(--soft-stone);
  border: none;
  border-radius: var(--radius-pill);
  padding: 4px;
  cursor: pointer;
  display: flex;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .5px;
}
.langtoggle span {
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  color: var(--slate);
  transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.langtoggle span.is-on { background: var(--near-black); color: #fff; }

#nav-cta { display: none; }

.burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
}
.burger i {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform .4s var(--ease-out), opacity .25s ease;
}
.burger.is-open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; }
.burger.is-open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobilemenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s var(--ease-out);
  background: var(--canvas-white);
  border-top: 1px solid transparent;
}
.mobilemenu.is-open { max-height: 420px; border-top-color: var(--hairline); }
.mobilemenu__inner { padding: 16px var(--gutter) 24px; display: flex; flex-direction: column; }
.mobilemenu__link {
  background: none; border: none; cursor: pointer;
  text-align: start;
  font-size: 17px; font-weight: 500;
  color: var(--slate);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color .2s ease, padding-inline-start .3s var(--ease-out);
}
.mobilemenu__link:hover { color: var(--near-black); padding-inline-start: 6px; }
.mobilemenu__link.is-active { color: var(--near-black); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  #nav-cta { display: block; }
  .burger { display: none; }
}

/* ============================================================
   PAGE TRANSITION + SCROLL REVEAL
   ============================================================ */
#page { animation: pageIn .55s var(--ease-out) both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="clip"]  { opacity: 1; clip-path: inset(0 0 100% 0); transform: none; transition: clip-path 1.1s var(--ease-out); }
[data-reveal="clip"].is-in { clip-path: inset(0 0 0 0); }

/* ============================================================
   HERO
   ============================================================ */
/* full-bleed photographic backdrop, knocked back behind an 85% white veil */
.hero-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.06);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.2%, -1.2%, 0); }
}
.hero-band__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom,
      rgba(255, 255, 255, .88) 0%,
      rgba(255, 255, 255, .85) 55%,
      rgba(255, 255, 255, .95) 100%);
}

.hero {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 72px var(--gutter) 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--near-black);
  font-weight: 500;
  margin: 20px 0 24px;
}
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.05em) rotate(3deg);
  animation: wordUp .9s var(--ease-out) forwards;
  animation-delay: var(--d);
}
@keyframes wordUp { to { opacity: 1; transform: none; } }

.hero__body { max-width: 520px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  background: var(--soft-stone);
  clip-path: inset(0 0 100% 0);
  animation: clipUp 1.2s var(--ease-out) .25s forwards;
}
@keyframes clipUp { to { clip-path: inset(0 0 0 0); } }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.12) translate3d(0, 0, 0); }
  to   { transform: scale(1.2) translate3d(-1.5%, -2%, 0); }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 60, 51, .22), transparent 45%);
  pointer-events: none;
}

/* floating badge over the hero photo */
.hero__badge {
  position: absolute;
  inset-inline-end: 22px;
  inset-block-end: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .16);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero__badge b { font-family: var(--font-display); font-size: 20px; color: var(--near-black); font-weight: 500; }
.hero__badge span { font-size: 12px; color: var(--slate); display: block; line-height: 1.3; }
.hero__badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #16b981; flex: none;
  box-shadow: 0 0 0 0 rgba(22, 185, 129, .6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 12px rgba(22, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 185, 129, 0); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  position: relative;
  background: var(--near-black);
  padding: 64px var(--gutter);
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 78%);
}
.stats__grid {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  color: var(--canvas-white);
  letter-spacing: -1.5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .6px;
  color: rgba(255, 255, 255, .6);
  margin-top: 12px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section { max-width: var(--shell); margin: 0 auto; padding: 88px var(--gutter); }
.section--stone { background: var(--surface-stone); max-width: none; padding-inline: 0; }
.section--stone > .shell { padding-block: 88px; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -.9px;
  color: var(--near-black);
  font-weight: 500;
}
.section__head { text-align: center; margin-bottom: 48px; }
.section__head .kicker { display: block; margin-bottom: 14px; }
.section__sub { font-size: 17px; color: var(--slate); max-width: 560px; margin: 14px auto 0; line-height: 1.55; }
.section__sub--start { margin-inline: 0; max-width: 460px; margin-top: 12px; font-size: 16px; }
.section__sub--inverse { color: rgba(255, 255, 255, .68); }

/* ============================================================
   WHY POINT
   ============================================================ */
.why { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why__card {
  position: relative;
  background: var(--surface-stone);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.why--outline .why__card { background: transparent; border: 1px solid var(--border-light); }
.why__card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  width: 100%;
  height: 3px;
  background: var(--deep-green);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform .55s var(--ease-out);
}
.why__card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(23, 23, 28, .10); }
.why__card:hover::before { transform: scaleX(1); }
.why__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--canvas-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .5s var(--ease-out);
}
.why--outline .why__icon { background: var(--surface-stone); }
.why__card:hover .why__icon { transform: translateY(-3px) rotate(-6deg); }
.why__icon svg { width: 22px; height: 22px; stroke: var(--deep-green); }
.why__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--near-black);
  margin-bottom: 10px;
  letter-spacing: -.2px;
}
.why__body { font-size: 15px; line-height: 1.5; color: var(--slate); }

/* ============================================================
   SPLIT (about preview)
   ============================================================ */
.split {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.split__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.split__media:hover img { transform: scale(1.05); }
.split__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -.8px;
  color: var(--near-black);
  font-weight: 500;
  margin: 16px 0 20px;
}
.split__body { font-size: 17px; line-height: 1.6; color: var(--slate); margin-bottom: 28px; }

/* ============================================================
   LOCATION CARDS (grid)
   ============================================================ */
.loc-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 44px; flex-wrap: wrap;
}
/* editorial 2 + 3 layout so five locations never leave an orphan */
.loc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.loc-grid > :nth-child(-n+2) { grid-column: span 3; }
.loc-grid > :nth-child(n+3)  { grid-column: span 2; }
.loc-grid > :nth-child(-n+2) .loc-card__media { height: 260px; }
.loc-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--canvas-white);
  transition: border-color .4s ease, transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.loc-card:hover {
  border-color: var(--deep-green);
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(23, 23, 28, .12);
}
.loc-card__media { position: relative; height: 190px; overflow: hidden; background: var(--soft-stone); }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.loc-card:hover .loc-card__media img { transform: scale(1.09); }
.loc-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,60,51,.45), transparent 55%);
  opacity: 0; transition: opacity .5s ease;
}
.loc-card:hover .loc-card__media::after { opacity: 1; }
.loc-card__body { padding: 20px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.loc-card__name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--near-black); margin-bottom: 6px; }
.loc-card__tag { font-size: 14px; color: var(--slate); }
.loc-card__arrow {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface-stone);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s ease, transform .5s var(--ease-out);
}
.loc-card__arrow svg { width: 16px; height: 16px; stroke: var(--near-black); transition: stroke .4s ease; }
body[dir="rtl"] .loc-card__arrow svg { transform: scaleX(-1); }
.loc-card:hover .loc-card__arrow { background: var(--deep-green); transform: translateX(3px); }
body[dir="rtl"] .loc-card:hover .loc-card__arrow { transform: translateX(-3px); }
.loc-card:hover .loc-card__arrow svg { stroke: #fff; }

/* ============================================================
   DEVELOPERS MARQUEE
   ============================================================ */
.devs { background: var(--deep-green); padding: 80px 0; overflow: hidden; }
.devs__head { text-align: center; margin-bottom: 44px; padding-inline: var(--gutter); }
.devs__head .section__title { color: var(--canvas-white); font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.8px; }
.devs__head .kicker { display: block; margin-bottom: 14px; }

.marquee { position: relative; display: flex; overflow: hidden; user-select: none; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { inset-inline-start: 0; background: linear-gradient(to right, var(--deep-green), transparent); }
.marquee::after  { inset-inline-end: 0; background: linear-gradient(to left, var(--deep-green), transparent); }
body[dir="rtl"] .marquee::before { background: linear-gradient(to left, var(--deep-green), transparent); }
body[dir="rtl"] .marquee::after  { background: linear-gradient(to right, var(--deep-green), transparent); }

.marquee__track {
  display: flex;
  gap: 12px;
  padding-inline-end: 12px;
  flex: none;
  min-width: 100%;
  animation: scrollX var(--dur, 46s) linear infinite;
}
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scrollX { to { transform: translateX(-100%); } }
body[dir="rtl"] .marquee__track { animation-name: scrollXRtl; }
@keyframes scrollXRtl { to { transform: translateX(100%); } }

.dev-pill {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--canvas-white);
  white-space: nowrap;
  transition: background .3s ease, border-color .3s ease;
}
.dev-pill:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .4); }
.marquee + .marquee { margin-top: 12px; }

/* ============================================================
   PREFERRED PARTNERS
   ============================================================ */
.partners {
  background: var(--surface-stone);
  padding: 88px 0;
  overflow: hidden;
}
.partners .section__head { margin-bottom: 44px; padding-inline: var(--gutter); }
.partners .section__head .kicker { display: block; margin-bottom: 14px; }

.marquee--partners::before,
.marquee--partners::after { width: 120px; }
.marquee--partners::before { background: linear-gradient(to right, var(--surface-stone), transparent); }
.marquee--partners::after  { background: linear-gradient(to left,  var(--surface-stone), transparent); }
body[dir="rtl"] .marquee--partners::before { background: linear-gradient(to left,  var(--surface-stone), transparent); }
body[dir="rtl"] .marquee--partners::after  { background: linear-gradient(to right, var(--surface-stone), transparent); }

.marquee--partners .marquee__track { gap: 20px; padding-inline-end: 20px; }
.marquee--partners + .marquee--partners { margin-top: 20px; }

.plogo {
  flex: none;
  width: 208px;
  height: 98px;
  background: var(--canvas-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  box-shadow: 0 2px 10px rgba(23, 23, 28, .05);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s ease;
}
/* full brand colour — these are a trust signal, so the marks stay recognisable */
.plogo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.plogo:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(23, 23, 28, .14);
  border-color: var(--hairline);
}

@media (max-width: 760px) {
  .partners { padding: 64px 0; }
  .plogo { width: 170px; height: 84px; padding: 12px 16px; }
  .marquee--partners::before, .marquee--partners::after { width: 60px; }
}

/* ============================================================
   PROPERTY TYPES
   ============================================================ */
/* flex (not grid) so a short final row centres instead of leaving a hole */
.ptypes { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.ptype {
  position: relative;
  flex: 0 1 calc(25% - 15px);
  min-width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: default;
  background: var(--near-black);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.ptype:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(23, 23, 28, .18); }

.ptype__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.ptype__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out), filter .5s ease;
}
.ptype:hover .ptype__media img { transform: scale(1.08); }
.ptype__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 40, 34, .90) 0%, rgba(0, 45, 38, .34) 30%, transparent 56%);
  transition: opacity .5s ease;
}
.ptype:hover .ptype__media::after { opacity: .88; }

.ptype__label {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  padding: 16px 18px;
  display: flex;
  align-items: flex-end;
}
.ptype__label span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -.2px;
  line-height: 1.25;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
  transition: transform .45s var(--ease-out);
}
.ptype:hover .ptype__label span { transform: translateY(-2px); }

@media (max-width: 1100px) { .ptype { flex: 0 1 calc(33.333% - 14px); } }
@media (max-width: 760px)  { .ptype { flex: 0 1 calc(50% - 10px); min-width: 0; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* ---- carousel: native scroll-snap, so touch swipe and RTL come for free ---- */
.carousel { position: relative; }
.carousel__viewport {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block-end: 4px;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport:focus-visible { outline: 2px solid var(--focus-blue); outline-offset: 6px; border-radius: var(--radius-md); }
.carousel__viewport > .tm {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.carousel__arrow {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--canvas-white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, border-color .3s ease, transform .4s var(--ease-out), opacity .3s ease;
}
.carousel__arrow svg { width: 18px; height: 18px; stroke: var(--near-black); transition: stroke .3s ease; }
/* the shared arrow glyph points forward; flip the "previous" one */
.carousel__arrow[data-carousel-prev] svg { transform: rotate(180deg); }
body[dir="rtl"] .carousel__arrow[data-carousel-prev] svg { transform: none; }
body[dir="rtl"] .carousel__arrow--next svg { transform: rotate(180deg); }
.carousel__arrow:hover { background: var(--deep-green); border-color: var(--deep-green); transform: scale(1.06); }
.carousel__arrow:hover svg { stroke: #fff; }
.carousel__arrow:disabled { opacity: .35; cursor: default; transform: none; background: var(--canvas-white); border-color: var(--hairline); }
.carousel__arrow:disabled svg { stroke: var(--slate); }

.carousel__dots { display: flex; align-items: center; gap: 9px; }
.carousel__dot {
  width: 8px; height: 8px;
  padding: 0;
  border: none;
  border-radius: var(--radius-full);
  background: var(--hairline);
  cursor: pointer;
  transition: width .4s var(--ease-out), background .3s ease;
}
.carousel__dot.is-on { width: 26px; background: var(--deep-green); }

/* everything already fits: no controls needed */
.carousel--single .carousel__controls { display: none; }

.tm {
  background: var(--canvas-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.tm:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(23, 23, 28, .10); }
.carousel__viewport > .tm { min-height: 100%; }
.tm__mark { font-family: var(--font-display); font-size: 46px; line-height: .8; color: var(--deep-green); opacity: .3; }
.tm__quote { font-size: 16px; line-height: 1.55; color: var(--ink); flex: 1; }
.tm__name { font-family: var(--font-display); font-size: 15px; color: var(--near-black); font-weight: 500; }
.tm__name::before { content: "— "; color: var(--slate); }
body[dir="rtl"] .tm__name::before { content: "— "; }

/* ============================================================
   DARK CTA
   ============================================================ */
.cta {
  position: relative;
  background: var(--near-black);
  padding: 96px var(--gutter);
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 106, 90, .40), transparent 62%);
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: .65; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.16); }
}
.cta__inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 48px);
  letter-spacing: -1px;
  color: var(--canvas-white);
  font-weight: 500;
  margin-bottom: 20px;
}
.cta__body { font-size: 18px; color: rgba(255, 255, 255, .7); margin-bottom: 36px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-head { max-width: 900px; margin: 0 auto; padding: 80px var(--gutter) 40px; text-align: center; }
.page-head .kicker { display: block; margin-bottom: 18px; }
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -1.1px;
  color: var(--near-black);
  font-weight: 500;
}
.page-head p { font-size: 17px; line-height: 1.6; color: var(--slate); max-width: 600px; margin: 16px auto 0; }

.prose { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter) 72px; display: flex; flex-direction: column; gap: 22px; }
.prose p { font-size: 19px; line-height: 1.65; color: var(--ink); }
.prose p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 2.5em;
  line-height: .9;
  float: inline-start;
  padding-inline-end: 12px;
  padding-block-start: 4px;
  color: var(--deep-green);
  font-weight: 500;
}

.vm { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm__card {
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--canvas-white);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.vm__card:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(23, 23, 28, .10); }
.vm__card--green { background: var(--deep-green); }
.vm__card p {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.35;
  color: var(--near-black);
  font-weight: 500;
  margin-top: 16px;
}
.vm__card--green p { color: var(--canvas-white); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.step {
  position: relative;
  background: var(--canvas-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.step:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(23, 23, 28, .09); }
.step__n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--deep-green);
  margin-bottom: 14px;
}
.step::after {
  content: attr(data-n);
  position: absolute;
  inset-inline-end: -6px;
  inset-block-end: -22px;
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 700;
  color: var(--deep-green);
  opacity: .07;
  line-height: 1;
  pointer-events: none;
}
.step__title { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--near-black); margin-bottom: 8px; }
.step__body { font-size: 14px; line-height: 1.5; color: var(--slate); }

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */
.loc-list { max-width: var(--shell); margin: 0 auto; padding: 24px var(--gutter) 72px; display: flex; flex-direction: column; gap: 32px; }
.loc-row {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--canvas-white);
  transition: border-color .4s ease, box-shadow .5s var(--ease-out);
}
.loc-row:hover { border-color: var(--deep-green); box-shadow: 0 24px 54px rgba(23, 23, 28, .10); }
.loc-row__media { position: relative; min-height: 300px; overflow: hidden; background: var(--soft-stone); }
.loc-row__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.loc-row:hover .loc-row__media img { transform: scale(1.07); }
.loc-row__body { padding: 40px; }
.loc-row__name {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
  font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--near-black);
}
.loc-row__name svg { width: 20px; height: 20px; stroke: var(--deep-green); flex: none; }
.loc-row__desc { font-size: 15px; line-height: 1.55; color: var(--slate); margin-bottom: 20px; }
.loc-row .kicker { font-size: 12px; letter-spacing: .6px; display: block; margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--surface-stone);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 13px;
  color: var(--ink);
  transition: background .3s ease, color .3s ease, transform .3s var(--ease-out);
}
.chip:hover { background: var(--deep-green); color: #fff; transform: translateY(-2px); }

/* ============================================================
   MAP
   ============================================================ */
.map-wrap {
  position: relative;
  background: linear-gradient(160deg, var(--pale-green-wash), #ffffff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  overflow: hidden;
  padding: 26px;
}
.map { display: block; width: 100%; height: auto; }
.map__land {
  fill: rgba(0, 60, 51, .07);
  stroke: var(--deep-green);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-dasharray: 4200;
  stroke-dashoffset: 4200;
}
.map-wrap.is-in .map__land { animation: draw 2.6s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.map__nile {
  fill: none;
  stroke: #4aa3c7;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .45;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}
.map-wrap.is-in .map__nile { animation: draw 2.4s var(--ease-out) .5s forwards; }

.map__pin { opacity: 0; transform-box: fill-box; transform-origin: center bottom; }
.map-wrap.is-in .map__pin { animation: pinDrop .7s var(--ease-out) forwards; animation-delay: var(--d); }
@keyframes pinDrop {
  0%   { opacity: 0; transform: translateY(-26px) scale(.6); }
  60%  { opacity: 1; transform: translateY(3px) scale(1.06); }
  100% { opacity: 1; transform: none; }
}
.map__ping { fill: var(--deep-green); opacity: .28; transform-box: fill-box; transform-origin: center; }
.map-wrap.is-in .map__ping { animation: ping 2.6s ease-out infinite; animation-delay: var(--d); }
@keyframes ping {
  0%   { transform: scale(.5); opacity: .38; }
  70%  { transform: scale(3.2); opacity: 0; }
  100% { transform: scale(3.2); opacity: 0; }
}
.map__label {
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 600;
  fill: var(--deep-green);
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 6px;
  stroke-linejoin: round;
}
.map__dot { fill: var(--deep-green); stroke: #fff; stroke-width: 4; }
.map__g { cursor: default; transition: transform .35s var(--ease-out); transform-box: fill-box; }
.map__g:hover { transform: translateY(-4px); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 24px var(--gutter) 72px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.formcard { background: var(--surface-stone); border-radius: var(--radius-lg); padding: 40px; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: 13px; font-weight: 500; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--hairline);
  background: var(--canvas-white);
  color: var(--ink);
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--form-focus-violet);
  box-shadow: 0 0 0 3px rgba(155, 96, 170, .15);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--slate); }

.thanks { text-align: center; padding: 60px 20px; animation: pop .6s var(--ease-out) both; }
@keyframes pop { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: none; } }
.thanks__ring {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--deep-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.thanks__ring svg { width: 34px; height: 34px; stroke: #fff; stroke-width: 2.5; }
.thanks__ring svg path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw2 .6s var(--ease-out) .25s forwards; }
@keyframes draw2 { to { stroke-dashoffset: 0; } }
.thanks h3 { font-family: var(--font-display); font-size: 24px; color: var(--near-black); margin-bottom: 10px; font-weight: 500; }
.thanks p { font-size: 15px; color: var(--slate); }

.side { display: flex; flex-direction: column; gap: 20px; }
.side__dark { background: var(--near-black); border-radius: var(--radius-lg); padding: 32px; }
.side__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .6px;
  text-transform: uppercase; margin-bottom: 20px; display: block;
}
.side__dark .side__label { color: rgba(255, 255, 255, .55); }
.quicklinks { display: flex; flex-direction: column; gap: 12px; }
.quicklink {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--canvas-white);
  font-size: 15px; font-weight: 500;
  transition: background .3s ease, transform .35s var(--ease-out);
}
.quicklink svg { width: 20px; height: 20px; stroke: #fff; flex: none; }
.quicklink:hover { background: rgba(255, 255, 255, .16); transform: translateX(4px); }
body[dir="rtl"] .quicklink:hover { transform: translateX(-4px); }

.side__box { border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 28px; }
.side__box .side__label { color: var(--deep-green); }
.socials { display: flex; gap: 12px; }
.social {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface-stone);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s ease, transform .4s var(--ease-out);
}
.social svg { width: 20px; height: 20px; stroke: var(--near-black); transition: stroke .35s ease; }
.social:hover { background: var(--deep-green); transform: translateY(-4px); }
.social:hover svg { stroke: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--near-black); padding: 56px var(--gutter) 32px; }
.footer__inner { max-width: var(--shell); margin: 0 auto; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
/* white logo variant means the plate behind it is no longer needed */
.footer__brand { display: inline-flex; margin-bottom: 16px; }
.footer__brand img { height: 38px; width: auto; }
.footer__tag { font-size: 14px; color: rgba(255, 255, 255, .5); max-width: 320px; line-height: 1.5; }
.footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__link {
  background: none; border: none; cursor: pointer;
  font-size: 14px; color: rgba(255, 255, 255, .7); padding: 0;
  transition: color .25s ease;
}
.footer__link:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.fab {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .25);
  z-index: 200;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.fab svg { width: 28px; height: 28px; fill: #fff; }
.fab::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: fabPing 2.4s ease-out infinite;
}
@keyframes fabPing {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.fab:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37, 211, 102, .45); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .contact { grid-template-columns: 1fr; }
  .carousel__viewport > .tm { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 680px) {
  .carousel__viewport > .tm { flex-basis: 100%; }
  .carousel__controls { gap: 14px; margin-top: 24px; }
}
@media (max-width: 900px) {
  :root { --gutter: 22px; }
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .hero__media { height: 340px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split__media { height: 300px; }
  .vm { grid-template-columns: 1fr; }
  .loc-row { grid-template-columns: 1fr; }
  .loc-row__media { min-height: 230px; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid > * { grid-column: span 1 !important; }
  .loc-grid > :nth-child(-n+2) .loc-card__media { height: 190px; }
  .loc-row__body { padding: 28px 24px; }
  .section, .section--stone > .shell { padding-block: 64px; }
  .formcard { padding: 28px 22px; }
  .stats__grid { gap: 20px; }
  .prose p { font-size: 17px; }
}
@media (max-width: 640px) {
  .form__row { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__badge { inset-inline-end: 14px; inset-block-end: 14px; padding: 11px 14px; }
  .loc-head { flex-direction: column; align-items: flex-start; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-grid > * { grid-column: span 1 !important; }
  .footer__links { gap: 22px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero__title .word { opacity: 1; transform: none; }
  .hero__media { clip-path: none; }
  .map__land { stroke-dashoffset: 0; }
  .map__pin { opacity: 1; }
}
