/* ==========================================================================
   ALPALOGOS — Design System  "Highland Field Journal"
   Warm editorial nature-magazine aesthetic for an alpaca farm in the
   Kaczawskie Mountains (Land of Extinct Volcanoes), Lower Silesia.
   Self-contained: no Bootstrap, no Mobirise, no framework.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  /* Paper & ink */
  --paper:      #f7f2e8;
  --paper-2:    #efe6d5;
  --paper-3:    #e7dcc7;
  --wool:       #fffdf8;
  --ink:        #1f2a22;
  --ink-soft:   #4c5a50;
  --ink-faint:  #7d8a80;

  /* Brand */
  --pine:       #24402f;
  --pine-2:     #315540;
  --pine-3:     #17281d;
  --sage:       #8fa98c;
  --sage-soft:  #cfdcc9;
  --clay:       #c4622d;
  --clay-2:     #de7f45;
  --clay-soft:  #f0d9c6;

  --line:       rgba(31, 42, 34, .13);
  --line-soft:  rgba(31, 42, 34, .07);
  --line-strong:rgba(31, 42, 34, .26);

  /* Type */
  --font-display: 'Fraunces', 'Literata', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Commissioner', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:    ui-monospace, 'SFMono-Regular', 'Cascadia Mono', Menlo, monospace;

  /* Rhythm */
  --wrap:       78rem;   /* 1248px */
  --wrap-tight: 60rem;
  --wrap-text:  44rem;
  --gutter:     clamp(1.25rem, 4vw, 3rem);
  --band:       clamp(4.5rem, 9vw, 9rem);

  /* Shape */
  --r-xs: .5rem;
  --r-sm: .875rem;
  --r-md: 1.25rem;
  --r-lg: 1.75rem;
  --r-xl: 2.5rem;
  --arch: 14rem;         /* barn-door arch radius */
  --pill: 999px;

  /* Depth — warm, never grey */
  --sh-1: 0 1px 2px rgba(31, 42, 34, .05), 0 2px 8px rgba(31, 42, 34, .04);
  --sh-2: 0 2px 6px rgba(31, 42, 34, .05), 0 12px 28px -8px rgba(31, 42, 34, .12);
  --sh-3: 0 4px 12px rgba(31, 42, 34, .06), 0 28px 60px -16px rgba(31, 42, 34, .22);
  --sh-clay: 0 10px 26px -8px rgba(196, 98, 45, .45);

  /* Motion */
  --ease: cubic-bezier(.22, .68, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --nav-h: 5rem;
}

/* Ukrainian pages swap the display face for one with Cyrillic. */
:root[lang="uk"] {
  --font-display: 'Literata', Georgia, serif;
}

/* ---------- 2. Reset ----------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1.5rem);
  overflow-x: hidden;   /* off-canvas panels must never widen the page */
}
@supports (overflow: clip) { html { overflow-x: clip; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-variant-ligatures: common-ligatures;
}

/* Paper grain — the whole site sits on textured stock. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
  margin: 0;
}

button { background: none; border: 0; cursor: pointer; }

::selection { background: var(--clay); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--clay);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Inline icons: without this an SVG defaults to 300x150 and blows up its container. */
.al-ico { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.al-btn .al-ico,
.al-link .al-ico { width: 1.05em; height: 1.05em; }
.al-btn { white-space: nowrap; }

.al-sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.al-skip {
  position: absolute;
  left: 1rem; top: -100%;
  z-index: 300;
  padding: .75rem 1.25rem;
  background: var(--pine);
  color: var(--paper);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.al-skip:focus { top: 0; }

/* ---------- 3. Layout ---------------------------------------------------- */

.al-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.al-wrap--tight { max-width: var(--wrap-tight); }
.al-wrap--text  { max-width: var(--wrap-text); }

.al-band { padding-block: var(--band); position: relative; }
.al-band--paper { background: var(--paper); }
.al-band--oat   { background: var(--paper-2); }
.al-band--wool  { background: var(--wool); }
.al-band--pine  { background: var(--pine); color: var(--paper); }
.al-band--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

/* Ridge line: the Kaczawskie silhouette used as a band divider. */
.al-ridge {
  display: block;
  width: 100%;
  height: clamp(28px, 4vw, 52px);
  color: var(--paper-2);
  position: relative;
  z-index: 2;
}
.al-ridge svg { width: 100%; height: 100%; display: block; }

.al-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.al-grid--3 { grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.al-grid--2 { grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); }

/* ---------- 4. Editorial typography -------------------------------------- */

.al-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 1rem;
}
.al-eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.al-eyebrow--plain::before { display: none; }
.al-band--pine .al-eyebrow { color: var(--clay-2); }

/* Small mono label, used for the breadcrumb trail */
.al-marker {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: .75rem;
}
.al-marker b { color: var(--clay); font-weight: 600; }

.al-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.4vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.024em;
  font-weight: 600;
  font-variation-settings: 'SOFT' 28, 'WONK' 1, 'opsz' 120;
  text-wrap: balance;
}

.al-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  font-weight: 600;
  font-variation-settings: 'SOFT' 24, 'WONK' 1, 'opsz' 72;
  text-wrap: balance;
}

.al-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -.014em;
  font-weight: 600;
  font-variation-settings: 'SOFT' 20, 'opsz' 36;
  text-wrap: balance;
}

.al-h4 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -.01em;
}

.al-lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 44ch;
  text-wrap: pretty;
}
.al-lead--wide { max-width: 60ch; }

.al-prose { color: var(--ink-soft); text-wrap: pretty; }
.al-prose strong { color: var(--ink); font-weight: 650; }
.al-prose br + br { content: ""; display: block; height: .4em; }
.al-prose a { color: var(--clay); text-decoration: underline; text-underline-offset: .18em; }

.al-center { text-align: center; margin-inline: auto; }

/* Head block used above each section */
.al-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.al-head--center { margin-inline: auto; text-align: center; }
.al-head--center .al-eyebrow { justify-content: center; }
.al-head--center .al-lead { margin-inline: auto; }
.al-head .al-lead { margin-top: 1.125rem; }

/* ---------- 5. Buttons --------------------------------------------------- */

.al-btn {
  --btn-bg: var(--pine);
  --btn-fg: var(--paper);
  --btn-bd: var(--pine);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  padding: .9375rem 1.75rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .005em;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              background-color .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease);
  will-change: transform;
}
.al-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.al-btn:active { transform: translateY(0); }

.al-btn--clay  { --btn-bg: var(--clay); --btn-bd: var(--clay); --btn-fg: #fff; }
.al-btn--clay:hover { box-shadow: var(--sh-clay); }

.al-btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line-strong);
}
.al-btn--ghost:hover { --btn-bd: var(--pine); background: rgba(36, 64, 47, .05); }

.al-btn--light {
  --btn-bg: rgba(255, 253, 248, .12);
  --btn-fg: #fff;
  --btn-bd: rgba(255, 253, 248, .5);
  backdrop-filter: blur(8px);
}
.al-btn--light:hover { --btn-bg: var(--wool); --btn-fg: var(--pine); --btn-bd: var(--wool); }

.al-btn--sm { padding: .625rem 1.125rem; font-size: .875rem; }
.al-btn--block { width: 100%; }

.al-btns { display: flex; flex-wrap: wrap; gap: .875rem; }

/* Text link with a clay rule that wipes in */
.al-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--pine);
  position: relative;
  padding-bottom: 2px;
}
.al-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.al-link:hover::after { transform: scaleX(1); transform-origin: left; }
.al-link svg { transition: transform .3s var(--ease); }
.al-link:hover svg { transform: translateX(4px); }

/* ---------- 6. Navigation ------------------------------------------------ */

.al-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease),
              height .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.al-nav__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Over-hero state: white text on the photograph */
.al-nav--over { color: #fff; }
.al-nav--over .al-nav__link { color: rgba(255, 255, 255, .88); }
.al-nav--over .al-nav__link:hover,
.al-nav--over .al-nav__link[aria-current="page"] { color: #fff; }
.al-nav--over .al-nav__tel { color: rgba(255, 255, 255, .9); }
.al-nav--over .al-burger span { background: #fff; }
.al-nav--over .al-nav__logo { filter: brightness(0) invert(1); }
.al-nav--over .al-btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.al-nav--over .al-btn--ghost:hover { background: rgba(255,255,255,.14); --btn-bd: #fff; }

/* Scrolled state: frosted paper */
.al-nav.is-stuck {
  background: rgba(247, 242, 232, .88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 24px rgba(31, 42, 34, .07);
  color: var(--ink);
  --nav-h: 4.25rem;
}
.al-nav.is-stuck .al-nav__link { color: var(--ink-soft); }
.al-nav.is-stuck .al-nav__link:hover,
.al-nav.is-stuck .al-nav__link[aria-current="page"] { color: var(--pine); }
.al-nav.is-stuck .al-nav__logo { filter: none; }
.al-nav.is-stuck .al-burger span { background: var(--ink); }
.al-nav.is-stuck .al-nav__tel { color: var(--ink-soft); }
.al-nav.is-stuck .al-btn--ghost { --btn-fg: var(--ink); --btn-bd: var(--line-strong); }

.al-nav__brand { display: flex; align-items: center; gap: .75rem; flex: 0 0 auto; margin-right: auto; }
.al-nav__logo {
  height: clamp(2.4rem, 4.2vw, 3.1rem);
  width: auto;
  transition: filter .4s var(--ease), height .4s var(--ease);
}
.al-nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.02em;
  font-variation-settings: 'SOFT' 30, 'WONK' 1;
  line-height: 1;
}
.al-nav__wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .62;
  margin-top: .2rem;
}

.al-nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 1.3vw, 1.35rem);
  list-style: none;
}
.al-nav__link {
  position: relative;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: .4rem 0;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.al-nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1.5px; width: 100%;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.al-nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.al-nav__link[aria-current="page"] { font-weight: 650; }
.al-nav__link[aria-current="page"]::after { transform: scaleX(1); }

.al-nav__actions { display: flex; align-items: center; gap: .625rem; flex: 0 0 auto; }
.al-nav__tel {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 650;
  font-size: .9375rem;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.al-nav__tel:hover { color: var(--clay); }

/* Scroll progress hairline */
.al-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--clay), var(--clay-2));
  z-index: 130;
  pointer-events: none;
}

/* Hamburger */
.al-burger {
  display: none;
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--pill);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 auto;
}
.al-burger span {
  display: block;
  width: 20px; height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s var(--ease), background-color .4s var(--ease);
}
.al-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.al-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.al-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* Mobile drawer */
.al-mobile {
  position: fixed;
  inset: 0;
  z-index: 119;
  background: var(--paper);
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.25rem);
  transition: opacity .35s var(--ease), transform .45s var(--ease-out), visibility .35s;
}
.al-mobile.is-open { opacity: 1; visibility: visible; transform: none; }
.al-mobile a.al-mobile__link {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.02em;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--pine);
}
.al-mobile a.al-mobile__link span { font-family: var(--font-mono); font-size: .7rem; color: var(--ink-faint); }
.al-mobile__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: .75rem; }
body.al-locked { overflow: hidden; }

/* ---------- 7. Hero ------------------------------------------------------ */

.al-hero {
  position: relative;
  min-height: min(94svh, 54rem);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--pine-3);
}
.al-hero--short { min-height: min(72svh, 42rem); }

.al-hero__media {
  position: absolute;
  inset: -6% 0 0 0;
  height: 112%;
  z-index: -2;
  will-change: transform;
}
.al-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* Warm scrim: dark at the foot, transparent at the crown */
.al-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(15, 24, 18, .90) 0%, rgba(15, 24, 18, .58) 32%, rgba(15, 24, 18, .16) 62%, rgba(15, 24, 18, .38) 100%),
    linear-gradient(105deg, rgba(23, 40, 29, .55) 0%, rgba(23, 40, 29, 0) 62%);
}

.al-hero__inner { color: #fff; position: relative; z-index: 2; }
.al-hero__eyebrow {
  color: var(--clay-2);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .4);
}
.al-hero .al-h1 {
  color: #fff;
  max-width: 18ch;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .35);
}
.al-hero__lead {
  color: rgba(255, 255, 255, .88);
  max-width: 48ch;
  margin-top: 1.375rem;
  font-size: clamp(1.0625rem, 1.4vw, 1.22rem);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .45);
}
.al-hero .al-btns { margin-top: 2.25rem; }

/* Facts strip riding the bottom of the hero */
.al-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 4vw, 3.25rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.al-hero__fact { color: #fff; }
.al-hero__fact b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
}
.al-hero__fact span {
  display: block;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  margin-top: .4rem;
}

.al-scrollcue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 5vw, 3.5rem);
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  gap: .875rem;
}
.al-scrollcue::after {
  content: "";
  width: 1px; height: 3.5rem;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  animation: al-cue 2.6s var(--ease) infinite;
}
@keyframes al-cue {
  0%, 100% { transform: scaleY(1); opacity: .8; transform-origin: top; }
  50%      { transform: scaleY(.4); opacity: .3; transform-origin: top; }
}

/* Page hero for sub-pages: arch-cropped photo beside the title */
.al-phero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--paper);
  overflow: hidden;
}
.al-phero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.al-phero__fig {
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--arch) var(--arch) var(--r-lg) var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.al-phero__fig img { width: 100%; height: 100%; object-fit: cover; }
.al-phero__fig::after {
  content: "";
  position: absolute;
  inset: .625rem;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: calc(var(--arch) - .5rem) calc(var(--arch) - .5rem) var(--r-md) var(--r-md);
  pointer-events: none;
}
/* Sub-page headlines carry long SEO phrases — hold them a size below the home hero. */
.al-phero .al-h1 {
  font-size: clamp(2.05rem, 3.8vw, 3.5rem);
  line-height: 1.02;
  max-width: 15ch;
}

/* Decorative arch outline peeking behind the photo */
.al-phero__ghost {
  position: absolute;
  right: -6rem; top: 12%;
  width: 26rem; height: 32rem;
  border: 1px solid var(--line);
  border-radius: 13rem 13rem var(--r-lg) var(--r-lg);
  z-index: 0;
  pointer-events: none;
}

/* ---------- 8. Offer cards ---------------------------------------------- */

.al-offers { display: grid; grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr)); gap: clamp(1.25rem, 2.4vw, 2.125rem); }

.al-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--wool);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s var(--ease);
}
.al-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}

.al-card__fig {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--paper-3);
}
.al-card__fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter .6s var(--ease);
}
.al-card:hover .al-card__fig img { transform: scale(1.06); }
.al-card__fig::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(20, 32, 24, .5), transparent);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.al-card:hover .al-card__fig::after { opacity: 1; }

.al-card__body {
  padding: 1.5rem 1.5rem 1.625rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1 1 auto;
}
.al-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--pine);
}
.al-card__text { font-size: .9375rem; color: var(--ink-soft); line-height: 1.6; }
.al-card__cta { margin-top: auto; padding-top: 1rem; }

/* Whole card clickable, link still keyboard-reachable */
.al-card__stretch::before { content: ""; position: absolute; inset: 0; z-index: 3; }

/* Feature/point list */
.al-points { list-style: none; display: grid; gap: 1.5rem; }
.al-point { display: flex; gap: 1rem; align-items: flex-start; }
.al-point__ico {
  flex: 0 0 auto;
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: var(--pill);
  background: var(--clay-soft);
  color: var(--clay);
}
.al-band--pine .al-point__ico { background: rgba(255, 253, 248, .1); color: var(--clay-2); }
.al-point__ico svg { width: 1.25rem; height: 1.25rem; }
.al-point h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 650; margin-bottom: .25rem; }
.al-point p { font-size: .9375rem; color: var(--ink-soft); line-height: 1.6; }
.al-band--pine .al-point p { color: rgba(247, 242, 232, .72); }

/* ---------- 9. Split / editorial pair ------------------------------------ */

.al-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5.5vw, 5rem);
  align-items: center;
}
.al-split--reverse .al-split__media { order: 2; }

.al-split__media { position: relative; }
.al-split__fig {
  position: relative;
  aspect-ratio: 4 / 4.5;
  border-radius: var(--arch) var(--arch) var(--r-lg) var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.al-split__fig img { width: 100%; height: 100%; object-fit: cover; }
.al-split__fig--wide { aspect-ratio: 5 / 4; border-radius: var(--r-xl); }

/* Offset frame behind the photo */
.al-split__media::before {
  content: "";
  position: absolute;
  inset: 1.75rem -1.75rem -1.75rem 1.75rem;
  border: 1px solid var(--clay);
  opacity: .38;
  border-radius: var(--arch) var(--arch) var(--r-lg) var(--r-lg);
  z-index: -1;
}
.al-split--reverse .al-split__media::before { inset: 1.75rem 1.75rem -1.75rem -1.75rem; }
.al-split__media--wide::before { border-radius: var(--r-xl) !important; }

/* Signature card overlapping the portrait */
.al-sig {
  position: absolute;
  right: -1.25rem; bottom: -1.5rem;
  background: var(--wool);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-3);
  max-width: 15rem;
  z-index: 3;
}
.al-sig b { display: block; font-family: var(--font-display); font-size: 1.0625rem; font-weight: 650; }
.al-sig span { font-size: .78rem; color: var(--ink-faint); letter-spacing: .04em; }

/* ---------- 10. Stats / trust strip -------------------------------------- */

.al-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: 1.5rem;
}
.al-trust__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.al-trust__item svg { width: 1rem; height: 1rem; color: var(--clay); }
.al-trust__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

/* ---------- 11. Reviews --------------------------------------------------- */

.al-reviews {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .5rem .25rem 2rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.al-reviews::-webkit-scrollbar { display: none; }

.al-review {
  flex: 0 0 min(23rem, 82vw);
  scroll-snap-align: center;
  background: var(--wool);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 1.875rem 1.75rem;
  box-shadow: var(--sh-1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.al-review:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.al-review__quote {
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: .6;
  color: var(--clay);
  opacity: .28;
  height: 1.25rem;
}
.al-review__text {
  font-size: .96rem;
  line-height: 1.68;
  color: var(--ink-soft);
  flex: 1 1 auto;
}
.al-review__foot { display: flex; align-items: center; gap: .75rem; padding-top: .5rem; border-top: 1px solid var(--line-soft); }
.al-review__avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--pine);
  color: var(--paper);
  font-weight: 650;
  font-size: .95rem;
  flex: 0 0 auto;
}
.al-review__name { font-weight: 650; font-size: .9375rem; line-height: 1.2; }
.al-review__stars { color: var(--clay); font-size: .8rem; letter-spacing: .08em; }

.al-reviews__nav { display: flex; gap: .5rem; justify-content: center; margin-top: -.5rem; }
.al-rnav {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--pill);
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--pine);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.al-rnav:hover { background: var(--pine); border-color: var(--pine); color: var(--paper); }

.al-skeleton {
  background: linear-gradient(100deg, var(--paper-2) 30%, var(--paper-3) 50%, var(--paper-2) 70%);
  background-size: 220% 100%;
  animation: al-shimmer 1.5s linear infinite;
  border-radius: var(--r-lg);
}
@keyframes al-shimmer { to { background-position: -220% 0; } }

/* ---------- 12. FAQ ------------------------------------------------------- */

.al-faq { display: grid; gap: .75rem; }
.al-faq__item {
  background: var(--wool);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.al-faq__item[open] { box-shadow: var(--sh-2); border-color: var(--line); }
.al-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 650;
  color: var(--pine);
  position: relative;
  transition: color .25s var(--ease);
}
.al-faq__q::-webkit-details-marker { display: none; }
.al-faq__q:hover { color: var(--clay); }
.al-faq__q::after,
.al-faq__q::before {
  content: "";
  position: absolute;
  right: 1.5rem; top: 50%;
  background: var(--clay);
  transition: transform .35s var(--ease);
}
.al-faq__q::before { width: 13px; height: 1.6px; transform: translateY(-50%); }
.al-faq__q::after  { width: 1.6px; height: 13px; transform: translate(-5.7px, -50%); }
.al-faq__item[open] .al-faq__q::after { transform: translate(-5.7px, -50%) rotate(90deg); opacity: 0; }
.al-faq__a { padding: 0 1.5rem 1.5rem; color: var(--ink-soft); font-size: .96rem; line-height: 1.7; }

/* ---------- 13. Contact / form ------------------------------------------- */

.al-contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: stretch;
}

.al-panel {
  background: var(--wool);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--sh-1);
}
.al-panel--pine { background: var(--pine); color: var(--paper); border-color: transparent; }
.al-panel--pine .al-h3 { color: var(--paper); }

.al-info { list-style: none; display: grid; gap: 1.125rem; margin-top: 1.5rem; }
.al-info li { display: flex; gap: .875rem; align-items: flex-start; font-size: .96rem; }
.al-info svg { width: 1.125rem; height: 1.125rem; flex: 0 0 auto; margin-top: .3rem; color: var(--clay-2); }
.al-info b { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .6; font-weight: 600; margin-bottom: .1rem; }
.al-info a { border-bottom: 1px solid rgba(255, 255, 255, .3); transition: border-color .25s var(--ease); }
.al-info a:hover { border-bottom-color: var(--clay-2); }

.al-note {
  margin-top: 1.75rem;
  padding: 1rem 1.125rem;
  border-radius: var(--r-sm);
  background: rgba(255, 253, 248, .09);
  border-left: 2.5px solid var(--clay-2);
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(247, 242, 232, .84);
}
.al-note strong { color: #fff; }

.al-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  min-height: 22rem;
  height: 100%;
  border: 1px solid var(--line-soft);
  background: var(--paper-3);
}
.al-map iframe { width: 100%; height: 100%; min-height: 22rem; border: 0; display: block; filter: saturate(.85) contrast(1.02); }

/* Blur-until-revealed phone number */
.al-masked { filter: blur(5px); user-select: none; opacity: .75; transition: filter .5s var(--ease), opacity .5s var(--ease); }
.al-revealed .al-masked { filter: none; user-select: text; opacity: 1; }

/* Form */
.al-form { display: grid; gap: 1.125rem; }
.al-field { display: grid; gap: .4rem; }
.al-field label {
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.al-field input,
.al-field textarea {
  width: 100%;
  padding: .875rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.al-field input::placeholder,
.al-field textarea::placeholder { color: var(--ink-faint); opacity: .65; }
.al-field input:focus,
.al-field textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: var(--wool);
  box-shadow: 0 0 0 4px rgba(196, 98, 45, .12);
}
.al-field textarea { resize: vertical; min-height: 8.5rem; }
.al-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }

.al-alert {
  display: none;
  padding: .875rem 1.125rem;
  border-radius: var(--r-sm);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.5;
  border-left: 3px solid transparent;
}
.al-alert.is-on { display: block; }
.al-alert--ok   { background: #e6efe4; color: #23492c; border-left-color: #3f7a4a; }
.al-alert--warn { background: #fbf0dc; color: #6b4a12; border-left-color: #c99423; }
.al-alert--err  { background: #f8e3de; color: #6f2a1c; border-left-color: #b74a32; }

.al-fineprint { font-size: .78rem; color: var(--ink-faint); text-align: center; }
.al-fineprint a { text-decoration: underline; text-underline-offset: .15em; }

/* ---------- 13b. Funding / certificate strip ------------------------------ */

.al-credits {
  background: var(--wool);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  position: relative;
  z-index: 2;
}
.al-credits__label {
  text-align: center;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
}
.al-credits__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}
.al-credits img {
  max-width: min(30rem, 100%);
  height: auto;
  opacity: .78;
  filter: saturate(.9);
  mix-blend-mode: multiply;   /* melts the white document background into the band */
  transition: opacity .3s var(--ease);
}
.al-credits__mark { max-width: min(15rem, 70%); }
.al-credits:hover img { opacity: 1; }

/* ---------- 14. Footer ---------------------------------------------------- */

.al-footer {
  background: var(--pine-3);
  color: rgba(247, 242, 232, .72);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  z-index: 2;
  font-size: .9375rem;
}
.al-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.al-footer__brand { display: flex; align-items: center; gap: .875rem; margin-bottom: 1.125rem; }
.al-footer__brand img { height: 3.25rem; width: auto; }
.al-footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paper);
  font-weight: 600;
  letter-spacing: -.02em;
  font-variation-settings: 'SOFT' 30, 'WONK' 1;
}
.al-footer h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 650;
  margin-bottom: 1.125rem;
}
.al-footer ul { list-style: none; display: grid; gap: .625rem; }
.al-footer a { transition: color .25s var(--ease); }
.al-footer a:hover { color: var(--clay-2); }
.al-footer p { line-height: 1.7; max-width: 34ch; }

.al-social { display: flex; gap: .5rem; margin-top: 1.5rem; }
.al-social a {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--pill);
  border: 1px solid rgba(247, 242, 232, .18);
  display: grid; place-items: center;
  color: rgba(247, 242, 232, .8);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.al-social a:hover { background: var(--clay); border-color: var(--clay); color: #fff; transform: translateY(-2px); }
.al-social svg { width: 1.0625rem; height: 1.0625rem; }

.al-footer__bar {
  border-top: 1px solid rgba(247, 242, 232, .12);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(247, 242, 232, .5);
}
.al-footer__made { display: inline-flex; align-items: center; gap: .4rem; }
.al-footer__made b { color: rgba(247, 242, 232, .8); font-weight: 600; }
.al-heart { color: var(--clay-2); animation: al-beat 2.4s var(--ease) infinite; display: inline-block; }
@keyframes al-beat {
  0%, 42%, 100% { transform: scale(1); }
  14%, 28%      { transform: scale(1.22); }
}

/* ---------- 15. Settings drawer (language + accessibility) ---------------- */

.al-fab {
  position: fixed;
  right: clamp(.875rem, 2vw, 1.5rem);
  bottom: clamp(.875rem, 2vw, 1.5rem);
  z-index: 140;
  width: 3.25rem; height: 3.25rem;
  border-radius: var(--pill);
  background: var(--pine);
  color: var(--paper);
  display: grid; place-items: center;
  box-shadow: var(--sh-3);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.al-fab:hover { transform: scale(1.06); background: var(--clay); }
.al-fab svg { width: 1.375rem; height: 1.375rem; }

.al-scrim {
  position: fixed;
  inset: 0;
  z-index: 149;
  background: rgba(18, 28, 21, .42);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.al-scrim.is-open { opacity: 1; visibility: visible; }

.al-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 150;
  width: min(21rem, 92vw);
  height: 100%;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(18, 28, 21, .2);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .42s var(--ease-out), visibility .42s;
  overflow-y: auto;
}
.al-drawer.is-open { transform: none; visibility: visible; }
.al-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.al-drawer__head h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 650; }
.al-drawer__close {
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--pill);
  display: grid; place-items: center;
  color: var(--ink-faint);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.al-drawer__close:hover { background: var(--paper-2); color: var(--ink); }
.al-drawer h3 {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 650;
  margin: 1.5rem 0 .75rem;
}
.al-langs { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.al-lang {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6875rem .875rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  background: var(--wool);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.al-lang:hover { border-color: var(--pine); transform: translateY(-1px); }
.al-lang[aria-current="true"] { border-color: var(--clay); background: var(--clay-soft); color: var(--clay); }

.al-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: .8125rem .9375rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--wool);
  font-size: .9375rem;
  font-weight: 500;
  margin-bottom: .5rem;
  text-align: left;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.al-toggle:hover { border-color: var(--line-strong); }
.al-toggle[aria-pressed="true"] { border-color: var(--clay); background: var(--clay-soft); color: var(--clay); font-weight: 650; }
.al-toggle__sw {
  flex: 0 0 auto;
  width: 2.375rem; height: 1.375rem;
  border-radius: var(--pill);
  background: var(--line-strong);
  position: relative;
  transition: background-color .25s var(--ease);
}
.al-toggle__sw::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 1rem; height: 1rem;
  border-radius: 50%;
  background: var(--wool);
  transition: transform .28s var(--ease);
}
.al-toggle[aria-pressed="true"] .al-toggle__sw { background: var(--clay); }
.al-toggle[aria-pressed="true"] .al-toggle__sw::after { transform: translateX(1rem); }

.al-drawer__foot { margin-top: auto; padding-top: 1.5rem; }
.gtranslate_wrapper select {
  width: 100%;
  padding: .6875rem .875rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--wool);
  font-size: .875rem;
}

/* ---------- 16. Scroll reveal -------------------------------------------- */

.al-rise {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.al-rise.is-in { opacity: 1; transform: none; }

/* Hero load choreography */
.al-hero .al-load {
  opacity: 0;
  transform: translateY(18px);
  animation: al-in .95s var(--ease-out) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes al-in { to { opacity: 1; transform: none; } }

/* ---------- 17. Accessibility modes --------------------------------------- */

body.al-grayscale { filter: grayscale(100%); }

body.al-contrast,
body.al-contrast .al-band,
body.al-contrast .al-card,
body.al-contrast .al-panel,
body.al-contrast .al-review,
body.al-contrast .al-faq__item,
body.al-contrast .al-drawer,
body.al-contrast .al-mobile,
body.al-contrast .al-footer,
body.al-contrast .al-nav.is-stuck {
  background: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
body.al-contrast * { text-shadow: none !important; box-shadow: none !important; }
body.al-contrast .al-h1,
body.al-contrast .al-h2,
body.al-contrast .al-h3,
body.al-contrast .al-h4,
body.al-contrast p,
body.al-contrast li,
body.al-contrast span,
body.al-contrast label { color: #fff !important; }
body.al-contrast a { color: #ffe14d !important; text-decoration: underline !important; }
body.al-contrast .al-btn { background: #000 !important; color: #ffe14d !important; border-color: #ffe14d !important; }
body.al-contrast .al-hero::after { background: rgba(0, 0, 0, .82) !important; }
body.al-contrast body::before, body.al-contrast::before { display: none !important; }
body.al-contrast .al-field input,
body.al-contrast .al-field textarea { background: #000 !important; color: #fff !important; border-color: #fff !important; }

/* ---------- 18. Responsive ------------------------------------------------ */

@media (max-width: 1080px) {
  .al-nav__menu { display: none; }
  .al-burger { display: flex; }
  .al-nav__tel { display: none; }
  .al-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .al-split,
  .al-phero__grid,
  .al-contact { grid-template-columns: 1fr; }
  .al-split--reverse .al-split__media { order: 0; }
  .al-split__media::before,
  .al-split--reverse .al-split__media::before { inset: 1.25rem -1.25rem -1.25rem 1.25rem; }
  .al-phero__fig { aspect-ratio: 5 / 4; border-radius: var(--r-xl); }
  .al-phero__fig::after { border-radius: calc(var(--r-xl) - .5rem); }
  .al-phero__ghost { display: none; }
  .al-sig { right: 0; bottom: -1rem; }
  .al-scrollcue { display: none; }
  .al-map { min-height: 18rem; }
}

@media (max-width: 780px) {
  .al-trust__dot { display: none; }
  .al-trust { gap: .75rem 1.5rem; }
}

@media (max-width: 640px) {
  :root { --arch: 9rem; }
  .al-nav__wordmark { display: none; }
  .al-footer__grid { grid-template-columns: 1fr; }
  .al-form__row { grid-template-columns: 1fr; }
  .al-hero__facts { gap: 1.25rem 2rem; }
  .al-nav__actions .al-btn { padding-inline: 1rem; }
  .al-split__fig { aspect-ratio: 4 / 3.6; }
}

@media (max-width: 400px) {
  .al-nav__actions .al-nav__cta { display: none; }
}

/* ---------- 19. Motion & print preferences -------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .al-rise, .al-hero .al-load { opacity: 1 !important; transform: none !important; }
  .al-hero__media { transform: none !important; }
}

@media print {
  .al-nav, .al-fab, .al-drawer, .al-scrim, .al-mobile, .al-progress, .al-scrollcue { display: none !important; }
  body::before { display: none; }
  .al-hero { min-height: auto; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; }
}
