/* =============================================================================
   Alpha Waste Removal — scroll-world edition
   Content styling for everything BELOW the camera flight. The flight itself is
   styled by scrub-engine.js (@layer sw) and themed via the --sw-* vars in
   index.html; this sheet shares the same palette so the page reads as one piece.

   Design language follows the diorama: warm cream ground, matte clay surfaces,
   generous radii, soft contact shadows rather than hard borders.
   ============================================================================= */

:root {
  --cream:      #F6F3EC;
  --cream-deep: #EDE7DB;
  --ink:        #161C20;
  --ink-soft:   #5C6660;
  --ink-faint:  #8A9490;
  --green:      #6DBE45;
  --green-deep: #4F9530;
  --brick:      #B44B34;
  --slate:      #7C8792;
  --line:       rgba(22,28,32,.12);

  --r:   18px;
  --r-lg: 28px;
  --r-sm: 12px;

  --shadow:    0 2px 4px rgba(22,28,32,.04), 0 12px 28px rgba(22,28,32,.07);
  --shadow-lg: 0 4px 8px rgba(22,28,32,.05), 0 26px 60px rgba(22,28,32,.11);

  --font-display: "Sora", ui-rounded, system-ui, sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .6em; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3.1rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: inherit; }

.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.wrap-narrow { width: min(760px, 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(3.5rem, 2rem + 6vw, 7rem) 0; }
.section-cream { background: var(--cream-deep); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--green-deep); margin: 0 0 .9rem;
}
.section-dark .eyebrow { color: var(--green); }
.lede { font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); color: var(--ink-soft); max-width: 62ch; }
.section-dark .lede { color: rgba(246,243,236,.78); }
.muted { color: var(--ink-soft); }
.small { font-size: .92rem; }
.section-head { margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lede { margin-inline: auto; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.35rem; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: .96rem;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(109,190,69,.32); }
.btn-primary:hover { background: var(--green-deep); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.3); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.6); color: var(--ink); }
.section-dark .btn-ghost { border-color: rgba(246,243,236,.28); background: transparent; color: var(--cream); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn-sm { padding: .55rem 1rem; font-size: .88rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.actions.center { justify-content: center; }

/* --- Cards / grids -------------------------------------------------------- */
.grid { display: grid; gap: 1.25rem; }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: #fff; border-radius: var(--r-lg); padding: 1.75rem;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.7);
}
.section-cream .card { background: var(--cream); }

.icon-badge {
  display: inline-grid; place-items: center; width: 46px; height: 46px;
  border-radius: 14px; background: rgba(109,190,69,.14); color: var(--green-deep);
  margin-bottom: 1rem;
}
.icon-badge svg { width: 24px; height: 24px; }

.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .85rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
  background: rgba(22,28,32,.06); color: var(--ink);
}
.chip svg { width: 1em; height: 1em; }
.section-dark .chip { background: rgba(246,243,236,.1); color: var(--cream); }

.tick-list { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .7rem; }
.tick-list li { position: relative; padding-left: 1.9rem; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 1.15rem; height: 1.15rem;
  border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.72rem no-repeat;
}

.notice {
  background: rgba(109,190,69,.1); border-left: 4px solid var(--green);
  border-radius: var(--r-sm); padding: 1.1rem 1.35rem; color: var(--ink);
}

/* --- Trust strip ---------------------------------------------------------- */
.trustbar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
  background: #fff; border-radius: var(--r-lg); padding: 1.75rem;
  box-shadow: var(--shadow-lg); margin-top: -3.5rem; position: relative; z-index: 3;
}
.trust-item { display: flex; gap: .85rem; align-items: flex-start; }
.trust-item svg { width: 26px; height: 26px; color: var(--green-deep); flex: none; margin-top: .15rem; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: .98rem; }
.trust-item span { font-size: .88rem; color: var(--ink-soft); }

/* --- Services bento ------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.bento-item {
  background: #fff; border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow);
}
.bento-item--feature { grid-row: span 2; background: var(--ink); color: var(--cream); }
.bento-item--feature h3 { color: var(--cream); }
.bento-item--feature .icon-badge { background: rgba(109,190,69,.2); color: var(--green); }
.bento-item--wide { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.bento-item--wide > div { flex: 1 1 340px; }
.bento-item p { color: var(--ink-soft); margin-bottom: .75rem; }
.bento-item--feature p { color: rgba(246,243,236,.75); }
.more { font-weight: 600; font-size: .92rem; color: var(--green-deep); text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.bento-item--feature .more { color: var(--green); }
.more svg { width: 1em; height: 1em; }

/* --- Prices --------------------------------------------------------------- */
.price-tag { font-family: var(--font-display); font-size: 2.15rem; font-weight: 700; margin: .3rem 0 .4rem; line-height: 1; }
.price-tag small { font-size: .8rem; font-weight: 500; color: var(--ink-soft); display: block; margin-top: .4rem; letter-spacing: 0; }

.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.price-table caption { text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; padding: 1.1rem 1.35rem .4rem; }
.price-table th, .price-table td { padding: .85rem 1.35rem; text-align: left; border-top: 1px solid var(--line); }
.price-table thead th { border-top: 0; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.price-table td:last-child { text-align: right; font-family: var(--font-display); font-weight: 700; white-space: nowrap; }
.price-table td small { display: block; font-weight: 400; font-family: var(--font-body); color: var(--ink-soft); font-size: .85rem; }

/* --- Calculator ----------------------------------------------------------- */
.calc { background: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: var(--shadow-lg); }
.calc-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: start; }
@media (max-width: 800px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-step { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .8rem; }
.seg { display: flex; gap: .4rem; background: var(--cream-deep); padding: .35rem; border-radius: 999px; margin-bottom: 1.5rem; flex-wrap: wrap; }
.seg label { flex: 1 1 auto; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span {
  display: block; text-align: center; padding: .6rem .9rem; border-radius: 999px;
  font-weight: 600; font-size: .92rem; cursor: pointer; transition: .18s ease; white-space: nowrap;
}
.seg input:checked + span { background: #fff; box-shadow: var(--shadow); color: var(--green-deep); }
.seg input:focus-visible + span { outline: 2px solid var(--green); outline-offset: 2px; }

.opt-list { display: grid; gap: .65rem; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt span {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .95rem 1.2rem; border-radius: var(--r); border: 1.5px solid var(--line);
  cursor: pointer; transition: .18s ease; font-weight: 600;
}
.opt span small { display: block; font-weight: 400; font-size: .86rem; color: var(--ink-soft); }
.opt input:checked + span { border-color: var(--green); background: rgba(109,190,69,.08); }
.opt input:focus-visible + span { outline: 2px solid var(--green); outline-offset: 2px; }

.stepper { display: inline-flex; align-items: center; gap: .5rem; background: var(--cream-deep); border-radius: 999px; padding: .3rem; }
.stepper button {
  width: 38px; height: 38px; border-radius: 50%; border: 0; background: #fff; cursor: pointer;
  font-size: 1.25rem; line-height: 1; box-shadow: var(--shadow); color: var(--ink);
}
.stepper button:hover { background: var(--green); color: #fff; }
.stepper output { min-width: 5.5rem; text-align: center; font-family: var(--font-display); font-weight: 600; }
.stepper-sm button { width: 30px; height: 30px; font-size: 1rem; }
.stepper-sm output { min-width: 2rem; }

.item-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .7rem 0; border-top: 1px solid var(--line); }
.item-row:first-child { border-top: 0; }
.item-row.is-picked .item-name { color: var(--green-deep); font-weight: 600; }
.item-name small { display: block; color: var(--ink-soft); font-size: .85rem; }

.calc-result { background: var(--ink); color: var(--cream); border-radius: var(--r-lg); padding: 1.75rem; position: sticky; top: 1.5rem; }
.calc-result .calc-step { color: rgba(246,243,236,.55); }
#calcPrice { font-family: var(--font-display); font-size: clamp(2.6rem, 2rem + 3vw, 3.6rem); font-weight: 800; line-height: 1; margin: .3rem 0; }
#calcPrice span { font-size: 1.35rem; font-weight: 600; color: rgba(246,243,236,.6); }
#calcSummary { color: rgba(246,243,236,.75); font-size: .95rem; margin-bottom: 1.25rem; }
#calcSummary b { color: var(--cream); }
.calc-note { font-size: .82rem; color: rgba(246,243,236,.5); margin-top: 1rem; line-height: 1.5; }

/* --- Postcode checker ----------------------------------------------------- */
.pc-form { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pc-form input {
  flex: 1 1 220px; padding: .95rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--line);
  font-family: inherit; font-size: 1rem; background: #fff; color: var(--ink);
}
.pc-form input:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: transparent; }
#pcResult { min-height: 1.6em; font-size: .98rem; }
#pcResult .ok { color: var(--green-deep); font-weight: 700; }
#pcResult .no { color: var(--brick); font-weight: 700; }

.area-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.area-cols h4 { color: var(--green-deep); margin-bottom: .8rem; }
.area-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.area-cols li { font-size: .89rem; padding: .3rem .7rem; background: rgba(22,28,32,.05); border-radius: 999px; }

/* --- Before / after ------------------------------------------------------- */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; }
.ba-card { margin: 0; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.ba-media { position: relative; aspect-ratio: 3/4; background: var(--cream-deep); }
.ba-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s ease; }
.ba-card[data-ba="before"] img[data-when="before"] { opacity: 1; }
.ba-card[data-ba="after"] img[data-when="after"] { opacity: 1; }
.ba-tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: rgba(22,28,32,.82); color: #fff; padding: .3rem .8rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.ba-foot { padding: 1.35rem; }
.ba-foot h3 { margin-bottom: .35rem; }
.ba-foot p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1rem; }
.ba-toggle { display: inline-flex; background: var(--cream-deep); border-radius: 999px; padding: .25rem; gap: .25rem; }
.ba-toggle button {
  border: 0; background: transparent; padding: .45rem 1rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: .88rem; cursor: pointer; color: var(--ink-soft);
}
.ba-toggle button[aria-pressed="true"] { background: #fff; color: var(--green-deep); box-shadow: var(--shadow); }

.photo-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem; margin-top: 1.25rem; }
.photo-strip img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); }

/* --- Steps ---------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; counter-reset: step; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-num {
  flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
}
.step p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* --- Reviews -------------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; }
.review { margin: 0; background: rgba(246,243,236,.07); border: 1px solid rgba(246,243,236,.12); border-radius: var(--r-lg); padding: 1.75rem; }
.stars { display: flex; gap: .15rem; color: #FFC53D; margin-bottom: .9rem; }
.stars svg { width: 18px; height: 18px; }
.review blockquote { margin: 0 0 1.25rem; font-size: 1rem; line-height: 1.65; color: rgba(246,243,236,.9); }
.review figcaption { display: flex; align-items: center; gap: .75rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 700; }
.review cite { display: block; font-style: normal; font-weight: 700; font-size: .95rem; }
.review figcaption span { font-size: .82rem; color: rgba(246,243,236,.55); }

/* --- FAQ ------------------------------------------------------------------ */
.faq-list { display: grid; gap: .75rem; }
.faq-item { background: #fff; border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 1.15rem 3rem 1.15rem 1.35rem; font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem; list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 50%; width: 11px; height: 11px;
  border-right: 2.2px solid var(--green-deep); border-bottom: 2.2px solid var(--green-deep);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; }
.faq-answer { padding: 0 1.35rem 1.35rem; color: var(--ink-soft); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--ink); }

/* --- CTA band ------------------------------------------------------------- */
.cta-band {
  background: var(--ink); color: var(--cream); border-radius: var(--r-lg);
  padding: clamp(2rem, 1.5rem + 3vw, 3.5rem); display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: center; justify-content: space-between;
}
.cta-band > div:first-child { flex: 1 1 340px; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(246,243,236,.75); margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: .75rem; }
.cta-phone {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--cream);
  text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
}
.cta-phone svg { width: 1.1em; height: 1.1em; color: var(--green); }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(246,243,236,.72); padding: clamp(3rem, 2rem + 3vw, 5rem) 0 2rem; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); } }
.site-footer h4 { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { max-width: 42ch; }
.footer-brand strong { color: var(--cream); }
.brand-lockup { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; text-decoration: none; }
.brand-mark svg { width: 38px; height: 38px; }
.brand-text strong { display: block; font-family: var(--font-display); font-weight: 800; letter-spacing: .1em; color: var(--cream); line-height: 1; }
.brand-text span { font-size: .8rem; color: rgba(246,243,236,.6); }
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0; }
.foot-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.foot-list a { text-decoration: none; color: inherit; display: inline-flex; align-items: center; gap: .45rem; }
.foot-list a:hover { color: var(--green); }
.foot-list svg { width: 1em; height: 1em; flex: none; }
.social-links { display: flex; gap: .6rem; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(246,243,236,.1); color: var(--cream); }
.social-links a:hover { background: var(--green); }
.social-links svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(246,243,236,.14); margin-top: 3rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem;
}
.footer-bottom .links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }

/* --- WhatsApp FAB + mobile action bar ------------------------------------- */
.wa-fab {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60;
  display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.15rem;
  background: #25D366; color: #fff; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: .95rem; box-shadow: 0 10px 30px rgba(37,211,102,.4);
}
.wa-fab svg { width: 24px; height: 24px; }
@media (max-width: 860px) {
  .wa-fab { bottom: calc(4.6rem + env(safe-area-inset-bottom)); right: 1rem; padding: .85rem; }
  .wa-label { display: none; }
}

.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: none;
  background: rgba(246,243,236,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: .5rem .5rem calc(.5rem + env(safe-area-inset-bottom));
}
.action-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: .2rem;
  padding: .5rem; text-decoration: none; color: var(--ink-soft); font-size: .72rem; font-weight: 600;
}
.action-bar svg { width: 21px; height: 21px; }
.action-bar .is-wa { color: #1EA952; }
.action-bar .is-primary { color: var(--green-deep); }
@media (max-width: 860px) { .action-bar { display: flex; } body { padding-bottom: 4.2rem; } }

/* --- Legal pages ---------------------------------------------------------- */
.legal { padding: clamp(3rem, 2rem + 4vw, 5rem) 0; }
.legal h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem); }
.legal h2 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); margin-top: 2.5rem; }
.legal ul { padding-left: 1.2rem; color: var(--ink-soft); }
.legal li { margin-bottom: .5rem; }
.legal p { color: var(--ink-soft); }
.legal-back { display: inline-flex; align-items: center; gap: .4rem; text-decoration: none; font-weight: 600; color: var(--green-deep); margin-bottom: 2rem; }

/* --- Cookie banner -------------------------------------------------------- */
.cookie {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 70; max-width: 380px;
  background: #fff; border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-lg);
  display: none;
}
.cookie.is-open { display: block; }
.cookie p { font-size: .9rem; color: var(--ink-soft); }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
@media (max-width: 860px) { .cookie { left: 1rem; right: 1rem; max-width: none; bottom: calc(4.8rem + env(safe-area-inset-bottom)); } }

/* --- Reveal on scroll ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: .8rem 1.2rem; z-index: 100; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }
