/* =========================================================================
   A Plus Behavior Analysis — Design System
   Palette anchored on the red "A+" mark. Warmth carried by the accent +
   imagery (not a beige body). Deep navy ink for trust, amber for play.
   ========================================================================= */

:root {
  /* --- Surfaces ------------------------------------------------------- */
  --bg:        #ffffff;
  --bg-soft:   #fff4ef;   /* warm blush, tinted toward the brand red       */
  --bg-warm:   #fdeae2;   /* a touch deeper, for alternating bands         */
  --ink:       #15263a;   /* deep navy — primary text & dark sections      */
  --ink-2:     #44566b;   /* secondary text (>=4.5:1 on white)             */
  --ink-3:     #5d6e82;   /* tertiary / meta                               */
  --on-dark:   #fdf3ee;   /* warm off-white on the navy sections           */
  --on-dark-2: #b9c4d2;   /* muted on navy                                 */

  /* --- Brand ---------------------------------------------------------- */
  --brand:       #d6342a;  /* the A+ red — fills, CTAs                     */
  --brand-deep:  #ad271d;  /* hover / pressed                             */
  --brand-ink:   #bd2c20;  /* red as TEXT on white (passes AA)            */
  --sun:         #f5a623;  /* amber — secondary, decorative accents       */
  --sun-deep:    #d9870a;
  --mint:        #2f9e74;  /* soft green — sparing illustrative touch     */

  /* --- Lines & shadow (shadows tinted to the warm bg, never pure black) */
  --line:        #efe1da;
  --line-strong: #e6d2c8;
  --shadow-sm: 0 1px 2px rgba(90,40,28,.05), 0 2px 6px rgba(90,40,28,.04);
  --shadow-md: 0 6px 16px rgba(90,40,28,.08), 0 2px 6px rgba(90,40,28,.05);
  --shadow-lg: 0 24px 60px rgba(60,28,20,.16), 0 8px 24px rgba(60,28,20,.08);

  /* --- Shape (one scale: pill buttons / 20px cards / 12px inputs) ----- */
  --r-input: 12px;
  --r-card:  20px;
  --r-lg:    28px;
  --r-pill:  999px;

  /* --- Type ----------------------------------------------------------- */
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* --- Layout --------------------------------------------------------- */
  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  /* --- Motion --------------------------------------------------------- */
  --ease-out: cubic-bezier(.22, 1, .36, 1);     /* ease-out-quint        */
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  /* z-index scale (semantic, never 9999) */
  --z-base: 1;
  --z-sticky: 100;
  --z-nav: 200;
  --z-overlay: 300;
}

/* ======================= Reset & base ==================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--brand-ink); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--brand-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--r-input); z-index: var(--z-overlay);
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; color:#fff; }

/* ======================= Layout helpers ================================== */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: .82rem; letter-spacing: .01em;
  color: var(--brand-ink);
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px; border-radius: 2px;
  background: var(--brand); display: inline-block;
}

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section__head h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3.1rem);
  margin-top: .7rem;
}
.section__head p { margin-top: 1rem; color: var(--ink-2); font-size: 1.1rem; max-width: 40rem; }

/* ======================= Buttons ========================================= */
.btn {
  --bg-btn: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  line-height: 1; white-space: nowrap;
  padding: .92rem 1.5rem; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; color: #fff; background: var(--bg-btn);
  transition: transform .18s var(--ease-out), background .18s var(--ease-out),
              box-shadow .18s var(--ease-out), color .18s var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--brand-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0) scale(.99); }
.btn .ico { width: 1.05em; height: 1.05em; }

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: var(--ink); }

.btn--light {
  background: #fff; color: var(--ink);
}
.btn--light:hover { background: var(--bg-warm); color: var(--ink); }

.btn--lg { padding: 1.05rem 1.85rem; font-size: 1.06rem; }

/* ======================= Header / Nav ==================================== */
.header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex; align-items: center; gap: 1.5rem;
  height: 74px;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none; font-size: 1.06rem;
  line-height: 1.05; margin-right: auto;
}
.brand:hover { color: var(--ink); }
.brand__mark { width: 42px; height: 42px; color: var(--brand); flex: none; }
.brand__name b { display:block; font-weight: 800; }
.brand__name span { display:block; font-size: .72rem; font-weight: 600; color: var(--brand-ink);
  font-family: var(--font-body); letter-spacing: .02em; }

.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__links a {
  font-weight: 500; font-size: .98rem; color: var(--ink-2);
  text-decoration: none; padding: .5rem .7rem; border-radius: var(--r-input);
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav__cta { display: flex; align-items: center; gap: .6rem; }

.nav__toggle {
  display: none; flex: none; width: 46px; height: 46px;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-input);
  background: #fff; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .ico-close { display: none; }
.nav[data-open="true"] .nav__toggle .ico-open { display: none; }
.nav[data-open="true"] .nav__toggle .ico-close { display: block; }

@media (max-width: 920px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: 74px 0 auto 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem var(--gutter) 1.6rem;
    display: none;
  }
  .nav[data-open="true"] .nav__menu { display: flex; }
  .nav__menu { display: none; }
  .nav__links { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav__links a { padding: .85rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta { margin-top: 1rem; flex-direction: column; align-items: stretch; }
  .nav__cta .btn { width: 100%; }
}
@media (min-width: 921px) {
  .nav__menu { display: flex; align-items: center; gap: 1.25rem; margin-left: auto; }
}

/* ======================= Hero ============================================ */
.hero { position: relative; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5.5rem); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__meta {
  display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  font-weight: 600; font-size: .9rem; color: var(--ink-2);
}
.hero__meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sun); }
.hero h1 {
  font-size: clamp(2.5rem, 1.4rem + 4.6vw, 4.5rem);
  margin-top: 1.1rem; letter-spacing: -.035em;
}
.hero h1 .accent { color: var(--brand-ink); }
.hero__lead {
  margin-top: 1.35rem; font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem);
  color: var(--ink-2); max-width: 34rem;
}
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__assure { margin-top: 1.5rem; display: flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--ink-3); }
.hero__assure svg { width: 1.1rem; height: 1.1rem; color: var(--mint); flex:none; }

/* hero figure: photo + floating slogan chip */
.hero__figure { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.4;
  background: var(--bg-warm);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__figure::before {
  /* soft amber halo behind the photo */
  content: ""; position: absolute; inset: auto -8% -10% 18%;
  height: 70%; background: radial-gradient(closest-side, rgba(245,166,35,.35), transparent 70%);
  filter: blur(10px); z-index: -1;
}
.slogan-chip {
  position: absolute; left: -1.5rem; bottom: 2.2rem;
  background: var(--ink); color: var(--on-dark);
  padding: .9rem 1.2rem; border-radius: var(--r-card);
  box-shadow: var(--shadow-lg); max-width: 16rem;
}
.slogan-chip b { font-family: var(--font-display); font-size: 1.18rem; color: #fff; letter-spacing: -.01em; }
.slogan-chip span { display: block; font-size: .8rem; color: var(--on-dark-2); margin-top: .15rem; }
.slogan-chip .quote { color: var(--sun); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { order: -1; max-width: 30rem; margin-inline: auto; }
  .hero__photo { aspect-ratio: 4 / 3.4; }
  .slogan-chip { left: auto; right: -.5rem; bottom: -1rem; }
}

/* ======================= Trust strip ===================================== */
.trust { border-block: 1px solid var(--line); background: var(--bg); }
.trust__inner {
  display: flex; flex-wrap: wrap; gap: 1rem clamp(1.5rem, 4vw, 3rem);
  align-items: center; justify-content: space-between;
  padding-block: 1.4rem;
}
.trust__item { display: flex; align-items: center; gap: .65rem; font-weight: 600; color: var(--ink-2); font-size: .98rem; }
.trust__item svg { width: 1.4rem; height: 1.4rem; color: var(--brand); flex: none; }

/* ======================= About / split =================================== */
.about__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 5/4.4; object-fit: cover;
}
.about__badge {
  position: absolute; right: -1rem; top: -1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: var(--shadow-md); padding: .9rem 1.1rem; text-align: center;
}
.about__badge b { font-family: var(--font-display); font-size: 1.7rem; color: var(--brand-ink); display:block; }
.about__badge span { font-size: .76rem; color: var(--ink-3); font-weight: 600; }
.lead-para { font-size: 1.18rem; color: var(--ink); }
.about__list { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: .9rem; }
.about__list li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-2); }
.about__list svg { width: 1.35rem; height: 1.35rem; color: var(--mint); flex: none; margin-top: .15rem; }
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; } .about__media { max-width: 32rem; } }

/* ======================= Services ======================================== */
/* deliberately varied: one wide feature tile + supporting tiles, not a
   uniform icon-card grid. */
.svc-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(6, 1fr);
}
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(1.4rem, 2.5vw, 2rem); box-shadow: var(--shadow-sm);
  grid-column: span 2; display: flex; flex-direction: column;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.svc__ico {
  width: 3rem; height: 3rem; border-radius: 14px; flex: none;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--bg-soft); color: var(--brand);
}
.svc__ico svg { width: 1.6rem; height: 1.6rem; }
.svc h3 { font-size: 1.3rem; }
.svc p { margin-top: .6rem; color: var(--ink-2); font-size: 1rem; }
/* feature tile spans wider, with photo */
.svc--feature {
  grid-column: span 3; background: var(--ink); color: var(--on-dark);
  border-color: transparent; position: relative; overflow: hidden;
  min-height: 16rem; justify-content: flex-end;
}
.svc--feature h3 { color: #fff; font-size: 1.55rem; }
.svc--feature p { color: var(--on-dark-2); }
.svc--feature .svc__ico { background: rgba(255,255,255,.1); color: var(--sun); }
.svc--wide { grid-column: span 3; }
@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc, .svc--feature, .svc--wide { grid-column: span 1; }
  .svc--feature { grid-column: span 2; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc, .svc--feature, .svc--wide { grid-column: span 1; }
}

/* ======================= Approach / process ============================== */
.approach { background: var(--bg-soft); }
.approach__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.steps li { background: var(--bg-soft); padding: 1.4rem 1.5rem; display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.steps .n {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 700; color: #fff; background: var(--brand);
}
.steps li:nth-child(2) .n { background: var(--sun); color: var(--ink); }
.steps li:nth-child(3) .n { background: var(--mint); }
.steps li:nth-child(4) .n { background: var(--ink); }
.steps h3 { font-size: 1.18rem; }
.steps p { margin-top: .25rem; color: var(--ink-2); font-size: .98rem; }

.goals { display: grid; gap: 1rem; }
.goals__intro { color: var(--ink-2); font-size: 1.1rem; }
.goal {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: 1.2rem 1.3rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-card); box-shadow: var(--shadow-sm);
}
.goal svg { width: 1.7rem; height: 1.7rem; color: var(--brand); flex: none; margin-top: .1rem; }
.goal h3 { font-size: 1.12rem; }
.goal p { margin-top: .2rem; color: var(--ink-2); font-size: .96rem; }
@media (max-width: 900px) { .approach__grid { grid-template-columns: 1fr; } }

/* ======================= Statement (dark, drenched) ====================== */
.statement { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.statement::before {
  content: ""; position: absolute; inset: -30% -10% auto auto; width: 40rem; height: 40rem;
  background: radial-gradient(closest-side, rgba(214,52,42,.5), transparent 70%); filter: blur(20px);
}
.statement::after {
  content: ""; position: absolute; inset: auto auto -35% -10%; width: 34rem; height: 34rem;
  background: radial-gradient(closest-side, rgba(245,166,35,.28), transparent 70%); filter: blur(20px);
}
.statement .wrap { position: relative; text-align: center; max-width: 56rem; }
.statement .mark { color: var(--sun); font-family: var(--font-display); font-size: 3rem; line-height: 0; }
.statement h2 {
  color: #fff; font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.6rem);
  letter-spacing: -.04em; margin: 1.2rem 0;
}
.statement h2 em { color: var(--sun); font-style: italic; }
.statement p { color: var(--on-dark); font-size: 1.2rem; max-width: 42rem; margin-inline: auto; }
.statement .cite { margin-top: 1.4rem; color: var(--on-dark-2); font-size: .95rem; }

/* ======================= Locations ======================================= */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.loc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.loc__map { aspect-ratio: 16/9; background: var(--bg-warm); border: 0; width: 100%; }
.loc__body { padding: clamp(1.4rem, 2.5vw, 2rem); }
.loc__tag { display:inline-block; font-weight:600; font-size:.8rem; color: var(--brand-ink);
  background: var(--bg-soft); padding: .3rem .7rem; border-radius: var(--r-pill); }
.loc h3 { font-size: 1.5rem; margin-top: .8rem; }
.loc__rows { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: .8rem; }
.loc__rows li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-2); }
.loc__rows svg { width: 1.25rem; height: 1.25rem; color: var(--brand); flex: none; margin-top: .2rem; }
.loc__rows a { color: var(--ink); text-decoration: none; font-weight: 500; }
.loc__rows a:hover { color: var(--brand-ink); text-decoration: underline; }
.loc__actions { margin-top: 1.4rem; display: flex; gap: .7rem; flex-wrap: wrap; }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } }

/* ======================= Get started + Contact =========================== */
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.start-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1.1rem; }
.start-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.start-list .n { width: 2rem; height: 2rem; border-radius: 50%; background: var(--ink); color:#fff;
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); flex: none; font-size: .95rem; }
.start-list b { display: block; color: var(--ink); }
.start-list span { color: var(--ink-2); font-size: .97rem; }
.contact__direct { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.contact__direct a { font-weight: 600; }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-md);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field label .req { color: var(--brand-ink); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-input);
  padding: .8rem .9rem; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input::placeholder, .field textarea::placeholder { color: #94836f; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(214,52,42,.16);
}
.form .btn { width: 100%; margin-top: .3rem; }
.form__note { margin-top: .9rem; font-size: .85rem; color: var(--ink-3); text-align: center; }
.form__status { margin-top: 1rem; padding: .85rem 1rem; border-radius: var(--r-input); font-size: .95rem; display: none; }
.form__status[data-state="ok"]   { display:block; background: #eaf7f0; color: #1d6b4a; border: 1px solid #bfe6d2; }
.form__status[data-state="err"]  { display:block; background: #fdeceb; color: var(--brand-deep); border: 1px solid #f4cfcc; }
@media (max-width: 980px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }

/* ======================= Footer ========================================== */
.footer { background: var(--ink); color: var(--on-dark-2); padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer .brand { color: #fff; margin-right: 0; }
.footer .brand:hover { color: #fff; }
.footer .brand__mark { color: var(--brand); }
.footer .brand__name span { color: var(--sun); }
.footer__about { margin-top: 1.1rem; max-width: 24rem; color: var(--on-dark-2); }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); }
.footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer a { color: var(--on-dark-2); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: .85rem; color: var(--on-dark-2);
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand-col { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer__top { grid-template-columns: 1fr; } }

/* ======================= Reveal animation ================================ */
/* Content is fully visible by default. Only when JS is present do we set the
   pre-animation state, then reveal. So no-JS / crawlers always see content. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .svc, .loc, * { transition-duration: .01ms !important; }
}
