/* =====================================================================
   HiveWorks Training Consultancy — site styles
   Playful / bold direction. Light theme, committed (no dark mode).
   Brand: honey yellow + warm ink black + cream paper.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* brand */
  --honey:       #F5C518;   /* primary fill (buttons, highlights) */
  --honey-bright:#FFD84D;   /* hover / glow */
  --honey-deep:  #A9760A;   /* accent text on light (AA on paper) */
  --honey-soft:  #FFF3D0;   /* tint background */
  --ink:         #17140D;   /* near-black, warm */
  --ink-soft:    #4A4438;   /* secondary text on light */
  --paper:       #FFFDF6;   /* page background */
  --paper-2:     #F6EFDD;   /* alternating section bg */
  --line:        #E9E0C6;   /* hairlines / borders */
  --white:       #FFFFFF;

  /* type */
  --font-display: 'Fredoka', 'Baloo 2', ui-rounded, system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* rhythm */
  --wrap: 1200px;
  --gap: clamp(16px, 3vw, 28px);
  --pad-x: clamp(18px, 5vw, 40px);
  --section-y: clamp(56px, 9vw, 116px);

  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --shadow-hard: 6px 6px 0 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 0 var(--ink);
  --shadow-soft: 0 18px 40px -18px rgba(23, 20, 13, .35);

  --ease: cubic-bezier(.22, 1, .36, 1);

  /* subtle honeycomb texture */
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 0l30 17.3v34.7L30 69.3 0 52V17.3zM30 69.3l30 17.4V104M30 69.3L0 86.7V104' fill='none' stroke='%2317140D' stroke-opacity='.05' stroke-width='2'/%3E%3C/svg%3E");
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 .4em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.5rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.3vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.12; }
p  { margin: 0 0 1rem; }
a  { color: inherit; }
img, picture, video { max-width: 100%; display: block; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
[hidden] { display: none !important; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--hex::before {
  content: ""; position: absolute; inset: 0; background-image: var(--hex);
  background-size: 60px auto; pointer-events: none; opacity: .9;
}
.section > .wrap { position: relative; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.section__head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 52px); }
.section__head.center { margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--honey-deep); margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 14px; height: 16px; flex: none;
  background: var(--honey);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.section--ink .eyebrow { color: var(--honey); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--ink-soft); }
.section--ink .lead { color: #E9E2D0; }
.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--honey); --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.6em; border-radius: var(--radius-pill);
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  text-decoration: none; border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), background-color .16s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 0 var(--ink); background: var(--honey-bright); }
.btn:active { transform: translate(0, 0); box-shadow: 2px 2px 0 0 var(--ink); }
.btn--ghost { --bg: transparent; --fg: var(--ink); box-shadow: none; }
.btn--ghost:hover { background: var(--honey-soft); box-shadow: none; }
.btn--on-ink { --fg: var(--ink); border-color: var(--paper); }
.btn--ghost.btn--on-ink { --bg: transparent; --fg: var(--paper); }
.btn--ghost.btn--on-ink:hover { background: rgba(255,255,255,.1); }
.btn--lg { padding: 1.1em 2em; font-size: 1.12rem; }
.btn--block { display: flex; width: 100%; }
.btn svg { width: 1.15em; height: 1.15em; }
@media (prefers-reduced-motion: reduce) {
  .btn, .btn:hover, .btn:active { transform: none; transition: background-color .16s; }
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink); color: var(--paper);
  font-size: .86rem;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; align-items: center; justify-content: space-between; padding-block: .5rem; }
.topbar a { color: var(--paper); text-decoration: none; display: inline-flex; align-items: center; gap: .5em; }
.topbar a:hover { color: var(--honey); }
.topbar__contact { display: flex; flex-wrap: wrap; gap: .3rem 1.3rem; }
.topbar__social { display: flex; gap: .9rem; }
.topbar svg { width: 15px; height: 15px; fill: currentColor; }
@media (max-width: 620px) { .topbar__contact .topbar__addr { display: none; } }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 2px solid var(--ink); }
.site-header.is-stuck { box-shadow: 0 10px 24px -14px rgba(23,20,13,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .45rem; }
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 48px; width: auto; }
@media (max-width: 900px) { .nav__logo img { height: 40px; } }
@media (max-width: 600px) { .nav__logo img { height: 32px; } }
.nav__links { display: flex; align-items: center; gap: clamp(.5rem, 2vw, 1.6rem); }
.nav__links a {
  text-decoration: none; font-family: var(--font-display); font-weight: 500;
  padding: .4em .2em; position: relative; color: var(--ink);
}
.nav__links a::after {
  content: ""; position: absolute; left: .2em; right: .2em; bottom: .1em; height: 3px;
  background: var(--honey); border-radius: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform .2s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__toggle { display: none; }

.only-mobile { display: none; }
@media (max-width: 1120px) {
  .nav__cta .btn--ghost { display: none; }
}
@media (max-width: 1000px) {
  .nav__links { gap: .35rem 1rem; }
}
@media (max-width: 900px) {
  .only-mobile { display: inline-flex; }
  .nav__cta .btn { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border: 2.5px solid var(--ink); border-radius: 12px;
    background: var(--honey); box-shadow: var(--shadow-hard-sm);
  }
  .nav__toggle svg { width: 22px; height: 22px; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--white); border-left: 2px solid var(--ink);
    padding: 90px 24px 28px; transform: translateX(100%);
    transition: transform .3s var(--ease); box-shadow: var(--shadow-soft);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.25rem; padding: .6em 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__links .btn { margin-top: 1rem; }
  body.menu-open { overflow: hidden; }
  .nav__backdrop { position: fixed; inset: 0; background: rgba(23,20,13,.45); z-index: 40; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--paper); isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,20,13,.5) 0%, rgba(23,20,13,.42) 38%, rgba(23,20,13,.88) 100%),
    linear-gradient(90deg, rgba(23,20,13,.72) 0%, rgba(23,20,13,.25) 62%, transparent 100%);
}
.hero__inner { padding-block: clamp(80px, 16vw, 170px); max-width: 52rem; }
.hero .eyebrow { color: var(--honey-bright); text-shadow: 0 1px 10px rgba(23,20,13,.7); }
.hero h1 { color: var(--white); text-wrap: balance; margin-bottom: .25em; text-shadow: 0 2px 24px rgba(23,20,13,.45); }
.hero h1 .pop { color: var(--honey); }
.hero__sub { font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: #F4F0E4; max-width: 40ch; margin-bottom: 1.8rem; text-shadow: 0 1px 12px rgba(23,20,13,.6); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__trust {
  margin-top: 1.7rem; display: inline-flex; align-items: center; gap: .7em; flex-wrap: wrap;
  font-size: .92rem; color: #EEE8D8;
  background: rgba(23,20,13,.45); border: 1px solid rgba(255,255,255,.18);
  padding: .5em .95em; border-radius: var(--radius-pill); backdrop-filter: blur(3px);
}
.hero__trust .dot { width: 8px; height: 9px; background: var(--honey); flex: none;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow-hard-sm);
  display: flex; flex-direction: column; gap: .5rem;
}
.card--link { text-decoration: none; transition: transform .18s var(--ease), box-shadow .18s var(--ease); }
.card--link:hover { transform: translate(-4px, -4px); box-shadow: 9px 9px 0 0 var(--ink); }
.card__icon {
  width: 56px; height: 62px; display: grid; place-items: center; margin-bottom: .4rem;
  background: var(--honey); color: var(--ink);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .15em; }
.card__link-tag { margin-top: auto; font-family: var(--font-display); font-weight: 600; color: var(--honey-deep); display: inline-flex; align-items: center; gap: .4em; }
.card--link:hover .card__link-tag { gap: .7em; }
@media (prefers-reduced-motion: reduce) { .card--link:hover { transform: none; } }

/* stat tiles */
.stat { text-align: center; padding: clamp(18px,3vw,28px); background: var(--honey-soft); border: 2.5px solid var(--ink); border-radius: var(--radius); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--ink); }
.stat__label { font-size: .95rem; color: var(--ink-soft); margin-top: .35rem; }

/* ---------- Testimonials ---------- */
.tm-grid { align-items: start; }
.tm { gap: .9rem; }
.tm__mark { width: 40px; height: 34px; color: var(--honey); flex: none; }
.tm p { font-size: 1.05rem; margin: 0; }
.tm__who { margin-top: .4rem; font-size: .95rem; line-height: 1.45; color: var(--ink-soft); }
.tm__who b { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.tm__who .co { display: block; color: var(--honey-deep); font-weight: 600; }

/* ---------- Split feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.feature + .feature { margin-top: clamp(48px, 8vw, 100px); }
.feature__media img { width: 100%; border: 2.5px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-hard); aspect-ratio: 4 / 3; object-fit: cover; }
.feature__media--tall img { aspect-ratio: 4 / 5; }
.feature--rev .feature__media { order: 2; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
}

/* hex bullet list */
.hex-list { display: grid; gap: .7rem; margin: 1.2rem 0; }
.hex-list li { position: relative; padding-left: 2rem; }
.hex-list li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 15px; height: 17px;
  background: var(--honey); border: 2px solid var(--ink);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--gap); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-hard-sm); }
.step__num {
  counter-increment: step; font-family: var(--font-display); font-weight: 700;
  display: grid; place-items: center; width: 54px; height: 60px; margin-bottom: .8rem;
  background: var(--ink); color: var(--honey); font-size: 1.4rem;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.15rem; }
.step p { margin: 0; font-size: .97rem; color: var(--ink-soft); }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.chip {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  padding: .5em 1.05em; border-radius: var(--radius-pill);
  background: var(--white); border: 2px solid var(--ink);
}
.section--ink .chip { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.4); }
.chip--solid { background: var(--honey); }

/* ---------- Gallery ---------- */
.gallery { columns: 3 260px; column-gap: var(--gap); }
.gallery__item {
  display: block; width: 100%; margin-bottom: var(--gap); break-inside: avoid;
  border: 2.5px solid var(--ink); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-hard-sm); background: var(--paper-2);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.gallery__item:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 0 var(--ink); }
.gallery__item img { width: 100%; }
.gallery__item figcaption {
  font-family: var(--font-display); font-weight: 500; font-size: .9rem;
  padding: .7em .9em; border-top: 2px solid var(--ink); background: var(--white);
}
@media (prefers-reduced-motion: reduce) { .gallery__item:hover { transform: none; } }

/* gallery items used inside a CSS grid (e.g. homepage teaser): uniform tiles sized by aspect-ratio
   (avoids height:100% on grid items, which collapses to 0 in Safari) */
.grid .gallery__item { align-self: start; }
.grid .gallery__item img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 4vw;
  background: rgba(15,13,8,.97); backdrop-filter: blur(4px); }
.lightbox img { max-width: 92vw; max-height: 84vh; border: 3px solid var(--paper); border-radius: 12px; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: var(--honey); color: var(--ink); border: 2.5px solid var(--paper);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem;
}
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 3vw; }
.lightbox__nav--next { right: 3vw; }
.lightbox__cap { position: absolute; bottom: 3vw; left: 0; right: 0; text-align: center; color: var(--paper); font-family: var(--font-display); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: var(--paper); text-align: center; isolation: isolate; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,20,13,.78), rgba(23,20,13,.88)); }
.cta-band .wrap { padding-block: clamp(56px, 10vw, 120px); }
.cta-band .eyebrow { color: var(--honey-bright); text-shadow: 0 1px 10px rgba(23,20,13,.7); }
.cta-band h2 { color: var(--white); max-width: 20ch; margin-inline: auto; text-shadow: 0 2px 20px rgba(23,20,13,.4); }
.cta-band p { color: #EDE7D6; max-width: 46ch; margin-inline: auto; margin-bottom: 1.6rem; }
.cta-band .hero__cta, .cta-band__cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1rem; max-width: 820px; }
.faq__item { border: 2.5px solid var(--ink); border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow-hard-sm); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: var(--white); border: 0; padding: 1.05em 1.2em;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q[aria-expanded="true"] { background: var(--honey-soft); }
.faq__q .ico { flex: none; width: 26px; height: 26px; border: 2px solid var(--ink); border-radius: 7px; display: grid; place-items: center; transition: transform .2s var(--ease); }
.faq__q[aria-expanded="true"] .ico { transform: rotate(45deg); background: var(--honey); }
.faq__a { padding: 0 1.2em; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease), padding .3s var(--ease); }
.faq__a[data-open] { padding: .2em 1.2em 1.2em; }
.faq__a p { margin: .6em 0 0; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: .95rem; }
.field .req { color: var(--honey-deep); }
.field input, .field select, .field textarea {
  font: inherit; padding: .8em .9em; border: 2.5px solid var(--ink); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink); width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--honey-deep); outline-offset: 1px; }
.form__note { font-size: .88rem; color: var(--ink-soft); }

/* contact cards */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border: 2.5px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-hard-sm); padding: clamp(22px,3vw,32px); }
.info-card h3 { margin-bottom: .8rem; }
.info-list { display: grid; gap: 1rem; margin-bottom: 1.3rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; }
.info-list .ico { flex: none; width: 40px; height: 44px; background: var(--honey); display: grid; place-items: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.info-list .ico svg { width: 20px; height: 20px; }
.info-list a { text-decoration: none; font-weight: 500; }
.info-list a:hover { color: var(--honey-deep); text-decoration: underline; }
.map-frame { margin-top: 1.4rem; border: 2.5px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hard-sm); }
.map-frame iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { background: var(--paper-2); color: var(--ink-soft); padding-block: clamp(48px, 7vw, 80px) 0; border-top: 3px solid var(--ink); }
.footer a { color: var(--ink); text-decoration: none; }
.footer a:hover { color: var(--honey-deep); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 48px); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { display: inline-block; margin-bottom: 1.3rem; line-height: 0; }
.footer__logo img { height: 48px; width: auto; max-width: 100%; }
@media (max-width: 900px) { .footer__logo img { height: 40px; } }
@media (max-width: 600px) { .footer__logo img { height: 32px; } }
.footer h4 { font-family: var(--font-display); color: var(--ink); font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { display: grid; gap: .6rem; }
.footer__social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer__social a { width: 40px; height: 40px; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; }
.footer__social a:hover { background: var(--honey); border-color: var(--ink); color: var(--ink); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer__badge { display: inline-flex; align-items: center; gap: .6em; margin-top: 1.1rem; font-size: .9rem;
  border: 2px solid var(--ink); border-radius: 12px; padding: .5em .9em; background: var(--white); align-self: start; }
.footer__badge .dot { align-self: start; margin-top: .35em; }
.footer__badge .dot { width: 9px; height: 10px; background: var(--honey); flex: none;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.footer__bottom { margin-top: clamp(36px, 6vw, 60px); border-top: 2px solid var(--line); padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .86rem; color: var(--ink-soft); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Misc ---------- */
.pill-note { display: inline-flex; align-items: center; gap: .6em; background: var(--honey-soft); border: 2px solid var(--ink);
  border-radius: var(--radius-pill); padding: .5em 1em; font-family: var(--font-display); font-weight: 500; font-size: .92rem; }
.pill-note .dot { width: 9px; height: 10px; background: var(--honey); flex: none;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.page-hero { background: var(--paper-2); border-bottom: 2px solid var(--ink); }
.page-hero .wrap { padding-block: clamp(48px, 8vw, 88px); }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
.anchor { scroll-margin-top: 120px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper); padding: .7em 1.2em; z-index: 100; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
