/* ==========================================================================
   Tiny Scholars Daycare — Concept D, "Open House"
   Photo-led and immersive: full-bleed image openers, a floating info bar that
   overlaps the hero, staggered program cards, soft rounded everything.
   Type: Gabarito (warm display) / Figtree (text)
   ========================================================================== */

:root {
  --surface:   #FFFFFF;
  --page:      #FFFDF9;
  --sunken:    #F4F8F6;
  --line:      #E4EDE9;

  --ink:       #16302F;
  --body:      #45605D;
  --muted:     #78918E;

  --sea:       #14615F;
  --sea-deep:  #0D4241;
  --mint:      #DDF0EB;
  --apricot:   #DC6C24;
  --apricot-soft: #FCEADC;
  --leaf:      #6FA522;
  --leaf-soft: #EAF4DA;

  --btn-bg:       #14615F;
  --btn-bg-hover: #0D4241;
  --btn-fg:       #FFFFFF;
  --btn-alt-bg:       #FFFFFF;
  --btn-alt-fg:       #16302F;
  --btn-alt-border:   #CBDCD8;

  --shade-1: 0 2px 6px rgba(15, 48, 46, .05), 0 12px 24px -16px rgba(15, 48, 46, .28);
  --shade-2: 0 4px 12px rgba(15, 48, 46, .07), 0 30px 60px -30px rgba(15, 48, 46, .42);

  --r-lg: 32px;
  --r-md: 22px;
  --r-sm: 14px;

  --step--1: clamp(.80rem, .78rem + .10vw, .88rem);
  --step-0:  clamp(1.02rem, .99rem + .17vw, 1.14rem);
  --step-1:  clamp(1.16rem, 1.08rem + .38vw, 1.38rem);
  --step-2:  clamp(1.45rem, 1.24rem + .95vw, 2.15rem);
  --step-3:  clamp(1.95rem, 1.52rem + 1.95vw, 3.25rem);
  --step-4:  clamp(2.40rem, 1.72rem + 3.05vw, 4.40rem);

  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --wrap:   1180px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --surface: #142322;
    --page:    #0E1716;
    --sunken:  #172625;
    --line:    #263A38;

    --ink:     #E9F3F1;
    --body:    #C2D6D3;
    --muted:   #8CA5A2;

    --sea:     #63BDB5;
    --sea-deep:#8ED4CD;
    --mint:    #14302E;
    --apricot: #F09055;
    --apricot-soft: #2C1C11;
    --leaf:    #9BD154;
    --leaf-soft: #1B2714;

    --btn-bg:       #63BDB5;
    --btn-bg-hover: #8ED4CD;
    --btn-fg:       #0B1817;
    --btn-alt-bg:       transparent;
    --btn-alt-fg:       #E9F3F1;
    --btn-alt-border:   #33504C;

    --shade-1: 0 2px 6px rgba(0,0,0,.45), 0 12px 24px -16px rgba(0,0,0,.8);
    --shade-2: 0 4px 12px rgba(0,0,0,.5), 0 30px 60px -30px rgba(0,0,0,.95);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --surface: #142322;
  --page:    #0E1716;
  --sunken:  #172625;
  --line:    #263A38;

  --ink:     #E9F3F1;
  --body:    #C2D6D3;
  --muted:   #8CA5A2;

  --sea:     #63BDB5;
  --sea-deep:#8ED4CD;
  --mint:    #14302E;
  --apricot: #F09055;
  --apricot-soft: #2C1C11;
  --leaf:    #9BD154;
  --leaf-soft: #1B2714;

  --btn-bg:       #63BDB5;
  --btn-bg-hover: #8ED4CD;
  --btn-fg:       #0B1817;
  --btn-alt-bg:       transparent;
  --btn-alt-fg:       #E9F3F1;
  --btn-alt-border:   #33504C;

  --shade-1: 0 2px 6px rgba(0,0,0,.45), 0 12px 24px -16px rgba(0,0,0,.8);
  --shade-2: 0 4px 12px rgba(0,0,0,.5), 0 30px 60px -30px rgba(0,0,0,.95);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--page);
  color: var(--body);
  font-family: "Figtree", "Segoe UI", system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--sea); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible { outline: 3px solid var(--apricot); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4 {
  font-family: "Gabarito", "Figtree", system-ui, sans-serif;
  color: var(--ink); margin: 0; text-wrap: balance; font-weight: 700;
}
h1 { font-size: var(--step-4); line-height: 1.02; letter-spacing: -.025em; }
h2 { font-size: var(--step-3); line-height: 1.08; letter-spacing: -.02em; }
h3 { font-size: var(--step-1); line-height: 1.25; letter-spacing: -.01em; }
p  { margin: 0; }
strong { color: var(--ink); font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.lead { font-size: var(--step-1); line-height: 1.58; color: var(--body); max-width: 48ch; }

.eyebrow {
  font-family: "Figtree", sans-serif; font-size: var(--step--1); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sea);
}
.eyebrow.a { color: var(--apricot); }
.eyebrow.l { color: var(--leaf); }

.skip { position: absolute; left: -9999px; top: 0; background: var(--btn-bg); color: var(--btn-fg); padding: .7rem 1rem; z-index: 200; }
.skip:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Figtree", sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.1;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn svg { flex: none; }
.btn-solid { background: var(--btn-bg); color: var(--btn-fg); box-shadow: var(--shade-1); }
.btn-solid:hover, .btn-solid:focus-visible { background: var(--btn-bg-hover); color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shade-2); }
.btn-quiet { background: var(--btn-alt-bg); color: var(--btn-alt-fg); border-color: var(--btn-alt-border); }
.btn-quiet:hover, .btn-quiet:focus-visible { border-color: var(--sea); color: var(--sea); transform: translateY(-2px); }
.btn-white { background: #fff; color: #16302F; }
.btn-white:hover, .btn-white:focus-visible { background: var(--mint); color: #16302F; transform: translateY(-2px); }
.btn-clear { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-clear:hover, .btn-clear:focus-visible { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

.textlink {
  font-family: "Figtree", sans-serif; font-weight: 700; font-size: .97rem;
  color: var(--sea); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}
.textlink:hover { gap: .65rem; }

/* ---------- Header ---------- */
.topbar { position: sticky; top: 0; z-index: 70; background: color-mix(in srgb, var(--page) 92%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.topbar-inner { display: flex; align-items: center; gap: 1.15rem; min-height: 80px; }
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 46px; width: auto; max-width: none; flex: none; }
:root[data-theme="dark"] .brand img, :root[data-theme="dark"] .foot-brand img { filter: invert(1) hue-rotate(180deg) brightness(1.15); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand img,
  :root:not([data-theme="light"]) .foot-brand img { filter: invert(1) hue-rotate(180deg) brightness(1.15); }
}

.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  font-weight: 600; font-size: .95rem; color: var(--body); text-decoration: none;
  padding: .5rem .7rem; border-radius: 999px; white-space: nowrap;
  transition: background-color .15s ease, color .15s ease;
}
.nav a:hover { color: var(--ink); background: var(--sunken); }
.nav a[aria-current="page"] { color: var(--sea); background: var(--mint); }

.topbar-cta { display: flex; align-items: center; gap: .85rem; }
.topbar-cta .btn { padding: .68rem 1.15rem; font-size: .93rem; }
.tel { font-weight: 700; font-size: .95rem; color: var(--ink); text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: .4rem; }
.tel:hover { color: var(--sea); }

.nav-toggle { display: none; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: .55rem; cursor: pointer; color: var(--ink); }
@media (max-width: 1100px) { .topbar-cta .tel { display: none; } }
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .topbar-cta { display: none; }
  .nav {
    position: fixed; inset: 80px 0 auto 0; flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.6rem; box-shadow: var(--shade-2);
    transform: translateY(-130%); transition: transform .28s ease;
    max-height: calc(100dvh - 80px); overflow-y: auto;
  }
  .nav a { padding: .85rem .9rem; font-size: 1.05rem; border-radius: 12px; }
  .nav.open { transform: translateY(0); }
  .nav .nav-extra { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
}
.nav .nav-extra { display: none; }
@media (max-width: 940px) { .nav .nav-extra { display: flex; } }

/* ---------- Full-bleed photo opener ---------- */
.opener { position: relative; width: 100vw; margin-left: calc(50% - 50vw); }
.opener-media { position: relative; min-height: clamp(420px, 62vh, 620px); }
.opener-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.opener-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(178deg, rgba(9, 28, 27, .30) 0%, rgba(9, 28, 27, .12) 34%, rgba(9, 28, 27, .72) 100%);
}
.opener-copy {
  position: relative; z-index: 2;
  min-height: clamp(420px, 62vh, 620px);
  display: grid; align-content: end; gap: 1.15rem; justify-items: start;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(4.5rem, 8vw, 6rem);
  max-width: 40ch;
}
.opener-copy h1 { color: #fff; text-shadow: 0 2px 18px rgba(8, 25, 24, .4); }
.opener-copy p { color: rgba(255,255,255,.92); font-size: var(--step-1); line-height: 1.55; text-shadow: 0 1px 12px rgba(8, 25, 24, .45); }
.opener-copy .eyebrow { color: #BFE9E1; }
.opener-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.opener-inner { position: absolute; inset: 0; display: grid; }
.opener-inner > .wrap { width: 100%; }

/* ---------- Floating info bar that overlaps the opener ---------- */
.infobar-holder { position: relative; z-index: 5; margin-top: clamp(-72px, -6vw, -48px); }
.infobar {
  background: var(--surface); border-radius: var(--r-md);
  box-shadow: var(--shade-2);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1.25rem 1.75rem; align-items: center;
  padding: 1.5rem clamp(1.25rem, 3vw, 2.1rem);
}
.infobit { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .85rem; align-items: start; }
.infobit .ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--mint); color: var(--sea); flex: none; }
.infobit:nth-child(2) .ico { background: var(--apricot-soft); color: var(--apricot); }
.infobit:nth-child(3) .ico { background: var(--leaf-soft); color: var(--leaf); }
.infobit dt { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.infobit dd { margin: 0; font-weight: 600; color: var(--ink); font-size: .98rem; line-height: 1.35; }
.infobit dd a { color: var(--ink); text-decoration: none; }
.infobit dd a:hover { color: var(--sea); }
@media (max-width: 900px) {
  .infobar { grid-template-columns: 1fr; }
  .infobar-holder { margin-top: -40px; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-tint { background: var(--sunken); }
.head { display: grid; gap: 1rem; max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3rem); justify-items: start; }
.head.centre { max-width: 60ch; margin-inline: auto; justify-items: center; text-align: center; }

/* ---------- Feature split with an overlapping second photo ---------- */
.feature { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(2.25rem, 5vw, 4.5rem); align-items: center; }
.feature-copy { display: grid; gap: 1.2rem; align-content: start; justify-items: start; }
.feature-media { position: relative; }
.feature-media > img { width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shade-2); }
.feature-media .inset {
  position: absolute; right: -14px; bottom: -28px; width: 44%;
  border-radius: var(--r-md); overflow: hidden;
  border: 6px solid var(--surface); box-shadow: var(--shade-2);
  aspect-ratio: 4 / 3;
}
.feature-media .inset img { width: 100%; height: 100%; object-fit: cover; }
.feature-media .blob { position: absolute; left: -34px; top: -30px; width: 132px; height: 132px; border-radius: 50%; background: var(--mint); z-index: -1; }
.feature.flip .feature-media { order: 2; }
.feature.flip .feature-media .inset { right: auto; left: -14px; }
.feature.flip .feature-media .blob { left: auto; right: -34px; }
@media (max-width: 720px) {
  .feature.flip .feature-media { order: -1; }
  .feature-media .inset { width: 40%; bottom: -18px; right: 0; }
  .feature.flip .feature-media .inset { left: 0; right: auto; }
  .feature-media .blob { display: none; }
}

/* ---------- Programs: staggered cards ---------- */
.stagger { display: grid; grid-template-columns: repeat(auto-fit, minmax(236px, 1fr)); gap: 1.6rem; align-items: start; }
.pcard {
  background: var(--surface); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shade-1); display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shade-2); }
@media (min-width: 980px) {
  .stagger .pcard:nth-child(even) { margin-top: 44px; }
}
.pcard .shot { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sunken); }
.pcard .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pcard:hover .shot img { transform: scale(1.05); }
.pcard-body { padding: 1.3rem 1.35rem 1.5rem; display: grid; gap: .6rem; align-content: start; }
.pill {
  justify-self: start; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sea); background: var(--mint); padding: .32rem .7rem; border-radius: 999px;
}
.pcard:nth-child(2) .pill { color: var(--apricot); background: var(--apricot-soft); }
.pcard:nth-child(3) .pill { color: var(--leaf); background: var(--leaf-soft); }
.pcard-body p { font-size: .95rem; line-height: 1.6; color: var(--muted); }
.pcard .textlink { margin-top: .2rem; }

/* ---------- Edge-to-edge photo mosaic ---------- */
.mosaic { width: 100vw; margin-left: calc(50% - 50vw); display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 4px; }
.mosaic a { display: block; overflow: hidden; height: clamp(190px, 24vw, 330px); background: var(--sunken); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mosaic a:hover img { transform: scale(1.06); }

/* ---------- Detail rows ---------- */
.detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.detail + .detail { margin-top: clamp(2.75rem, 5vw, 4.5rem); padding-top: clamp(2.75rem, 5vw, 4.5rem); border-top: 1px solid var(--line); }
.detail img { width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shade-1); }
.detail:nth-child(even) .detail-media { order: 2; }
.detail-copy { display: grid; gap: 1rem; align-content: start; justify-items: start; }
@media (max-width: 820px) {
  .detail { grid-template-columns: 1fr; }
  .detail:nth-child(even) .detail-media { order: -1; }
}

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.15rem;
  background: var(--surface); border-radius: var(--r-md); padding: 1.4rem 1.5rem;
  box-shadow: var(--shade-1);
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; align-self: start;
  background: var(--mint); color: var(--sea);
  font-family: "Gabarito", sans-serif; font-weight: 700; font-size: 1.1rem;
}
.step:nth-child(even)::before { background: var(--apricot-soft); color: var(--apricot); }
.step h3 { margin-bottom: .3rem; }
.step p { font-size: .97rem; color: var(--muted); }

/* ---------- Panels ---------- */
.panel { background: var(--surface); border-radius: var(--r-md); box-shadow: var(--shade-1); padding: clamp(1.4rem, 3vw, 2.1rem); display: grid; gap: .95rem; align-content: start; justify-items: start; }
.panel.mint { background: var(--mint); box-shadow: none; }
.panel.apricot { background: var(--apricot-soft); box-shadow: none; }
.panel.leaf { background: var(--leaf-soft); box-shadow: none; }
.panel h3 { font-size: var(--step-1); }
.panel p { font-size: .97rem; }
.panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.6rem; align-items: start; }
@media (min-width: 940px) { .panels.wide-left { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); } }

.rows { display: grid; width: 100%; }
.rows div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .3rem 1.5rem; padding: .62rem 0; border-top: 1px solid var(--line); font-size: .96rem; }
.rows div:first-child { border-top: 0; }
.rows span:first-child { font-weight: 600; color: var(--ink); }
.rows span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }

.holidays { list-style: none; margin: 0; padding: 0; width: 100%; }
.holidays li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .3rem 1.5rem; padding: .8rem 0; border-top: 1px solid var(--line); font-size: .96rem; color: var(--ink); }
.holidays li:first-child { border-top: 0; }
.holidays .when { color: var(--muted); font-size: .89rem; white-space: nowrap; }

/* ---------- Quote ---------- */
.quote { max-width: 26ch; }
.quote p { font-family: "Gabarito", sans-serif; font-weight: 700; font-size: var(--step-2); line-height: 1.18; letter-spacing: -.02em; color: var(--ink); }
.quote cite { display: block; margin-top: 1.1rem; font-style: normal; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); gap: 1.1rem; }
.gallery button { padding: 0; border: 0; background: var(--sunken); cursor: zoom-in; border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shade-1); transition: transform .2s ease, box-shadow .2s ease; }
.gallery button:hover { transform: translateY(-4px); box-shadow: var(--shade-2); }
.gallery button:nth-child(5n+1) { aspect-ratio: 4 / 5; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 560px) { .gallery button:nth-child(5n+1) { aspect-ratio: 4 / 3; } }

.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(9, 24, 23, .92); display: grid; place-items: center; padding: var(--gutter); }
.lightbox img { max-width: min(1000px, 92vw); max-height: 84vh; border-radius: var(--r-md); }
.lightbox button { position: absolute; top: 1rem; right: 1rem; width: 46px; height: 46px; border: 0; border-radius: 50%; background: #fff; color: #16302F; font-size: 1.4rem; line-height: 1; cursor: pointer; }

/* ---------- Closing photo CTA ---------- */
.closing { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-top: clamp(3.5rem, 7vw, 6rem); }
.closing-media { position: relative; min-height: clamp(360px, 46vh, 480px); }
.closing-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.closing-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 30, 29, .62), rgba(8, 30, 29, .78)); }
.closing-inner { position: absolute; inset: 0; display: grid; place-items: center; }
.closing-copy { display: grid; gap: 1.15rem; justify-items: center; text-align: center; max-width: 40ch; margin-inline: auto; }
.closing-copy h2 { color: #fff; }
.closing-copy p { color: rgba(255,255,255,.9); }
.closing-copy .eyebrow { color: #BFE9E1; }
.closing-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.15rem; width: 100%; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.15rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--page); border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem .9rem; width: 100%;
}
.field textarea { min-height: 125px; resize: vertical; }
.form-note { font-size: .92rem; color: var(--muted); }

/* ---------- Inner page opener (shorter) ---------- */
.opener.short .opener-media, .opener.short .opener-copy { min-height: clamp(300px, 40vh, 400px); }
.crumbs { font-size: .82rem; font-weight: 600; letter-spacing: .05em; color: rgba(255,255,255,.82); }
.crumbs a { color: rgba(255,255,255,.82); text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* ---------- Footer ---------- */
.foot { background: var(--sea-deep); color: #C8E2DE; border-radius: var(--r-lg) var(--r-lg) 0 0; margin-top: 0; padding-block: clamp(3rem, 6vw, 4.5rem) 1.9rem; }
:root[data-theme="dark"] .foot { background: #0B1817; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .foot { background: #0B1817; } }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(148px, 1fr)); gap: clamp(1.75rem, 4vw, 3rem); }
.foot-brand img { height: 56px; width: auto; max-width: none; filter: invert(1) hue-rotate(180deg) brightness(1.2); }
.foot-brand p { margin-top: 1rem; max-width: 32ch; font-size: .95rem; line-height: 1.6; }
.foot h4 { color: #fff; font-family: "Figtree", sans-serif; font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .9rem; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .96rem; }
.foot a { color: #C8E2DE; text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; }
.socials { display: flex; gap: .55rem; margin-top: 1.2rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #fff; }
.socials a:hover { background: #fff; color: var(--sea-deep); }
.foot-bottom { margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.16); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .86rem; color: #9BBDB8; }

/* ---------- Reveal ---------- */
.js-anim .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-anim .reveal { opacity: 1; transform: none; } }
