/*!
  BioSircle — Bespoke Design System
  Theme: "Editorial Botanical" — organic circular-economy branding
  Layout language: Bento grid + glassmorphism + fluid type + container queries
  Palette (60/30/10): Bone (60) / Forest (30) / Coral (10)
------------------------------------------------------------------ */

/* -------------------- 1. Font loading -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* -------------------- 2. Design tokens -------------------- */
:root{
  /* 60% — neutral base */
  --bone: #f7f2e7;
  --bone-soft: #efe6d3;
  --paper: #fffdf8;

  /* 30% — primary (deep forest) */
  --forest-900: #0f2018;
  --forest-800: #16281f;
  --forest-700: #1f4a3c;
  --forest-600: #2c5f4c;
  --forest-500: #3f7a5e;
  --forest-300: #9db8a6;

  /* 10% — accent (coral + amber) */
  --coral: #ff6b4a;
  --coral-600: #e6512f;
  --amber: #e7a33e;

  --ink: #16231c;
  --ink-soft: #4a564d;
  --line: rgba(22, 35, 28, 0.12);
  --line-strong: rgba(22, 35, 28, 0.22);

  --shadow-sm: 0 2px 10px rgba(15, 32, 24, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 32, 24, 0.10);
  --shadow-lg: 0 24px 64px rgba(15, 32, 24, 0.16);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: min(1240px, calc(100% - 2.5rem));
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* -------------------- 3. Reset -------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: light;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture, video{ display: block; max-width: 100%; }
img{ height: auto; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select{ font: inherit; color: inherit; }
h1, h2, h3, h4{ font-family: var(--font-display); line-height: 1.1; margin: 0; font-weight: 500; letter-spacing: -0.01em; }
p{ margin: 0; }
:focus-visible{ outline: 2.5px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

/* -------------------- 4. Fluid type scale -------------------- */
.eyebrow{
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest-600);
}
.eyebrow::before{
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); flex: none;
}
h1, .h1{ font-size: clamp(2.6rem, 4.4vw + 1rem, 4.6rem); font-weight: 500; }
h2, .h2{ font-size: clamp(2rem, 2.6vw + 1rem, 3rem); }
h3, .h3{ font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem); }
.lede{ font-size: clamp(1.05rem, .4vw + 1rem, 1.25rem); color: var(--ink-soft); }

/* -------------------- 5. Layout helpers -------------------- */
.container{ width: var(--container); margin-inline: auto; }
.section{ padding: clamp(3.5rem, 7vw, 7rem) 0; position: relative; }
.section--tight{ padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.stack{ display: grid; gap: 1rem; }
.center{ text-align: center; }
.max-prose{ max-width: 62ch; }
.mx-auto{ margin-inline: auto; }

/* -------------------- 6. Buttons -------------------- */
.btn{
  --btn-bg: var(--forest-700);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: 0 1.7rem;
  border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--paper);
  font-weight: 700; font-size: .96rem; letter-spacing: -.01em;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--coral{ --btn-bg: var(--coral); color: #fff8f4; }
.btn--coral:hover{ background: var(--coral-600); }
.btn--ghost{
  background: transparent; color: var(--forest-700);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover{ background: var(--forest-700); color: var(--paper); border-color: var(--forest-700); }
.btn--sm{ min-height: 44px; padding: 0 1.3rem; font-size: .88rem; }
.btn svg{ width: 18px; height: 18px; }

/* -------------------- 7. Domain-for-sale banner -------------------- */
.domain-sale-banner{
  position: relative;
  z-index: 9999;
  width: 100%;
  color: #fff8f2;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 107, 74, 0.38), transparent 36%),
    linear-gradient(100deg, #0f2018 0%, #16281f 55%, #1f4a3c 100%);
  border-bottom: 1px solid rgba(255, 244, 230, 0.14);
  box-shadow: 0 8px 28px rgba(15, 32, 24, 0.25);
  font-family: var(--font-body);
}
.domain-sale-banner__content{
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.domain-sale-banner__text{ display: grid; gap: 4px; line-height: 1.35; }
.domain-sale-banner__text strong{
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: -0.01em;
  font-weight: 600;
}
.domain-sale-banner__text span{ color: rgba(255, 248, 242, 0.72); font-size: 0.92rem; }
.domain-sale-banner__button{
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 20px;
  color: #1a0f0a;
  background: var(--amber);
  border: 1px solid #f3ba63;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(231, 163, 62, 0.32);
  font-size: 0.94rem; font-weight: 800; text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.domain-sale-banner__button:hover, .domain-sale-banner__button:focus-visible{
  background: #f3ba63;
  box-shadow: 0 10px 26px rgba(231, 163, 62, 0.42);
  transform: translateY(-2px);
  outline: none;
}
@media (max-width: 680px){
  .domain-sale-banner__content{ min-height: auto; padding: 14px 0; align-items: stretch; flex-direction: column; gap: 12px; }
  .domain-sale-banner__button{ width: 100%; }
}

/* -------------------- 8. Header / Nav (glass) -------------------- */
.site-header{
  position: sticky; top: 0; z-index: 500;
  background: rgba(247, 242, 231, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav{
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 0;
  gap: 1rem;
}
.brand{ display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--forest-800); }
.brand__mark{ width: 38px; height: 38px; flex: none; }
.nav__links{ display: flex; align-items: center; gap: 2.1rem; }
.nav__links a{
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  position: relative; padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav__links a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--coral); border-radius: 2px;
  transition: right .3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"]{ color: var(--forest-800); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after{ right: 0; }
.nav__actions{ display: flex; align-items: center; gap: .85rem; }
.nav__toggle{
  display: none; width: 44px; height: 44px; border-radius: 50%;
  align-items: center; justify-content: center; border: 1.5px solid var(--line-strong);
  background: var(--paper);
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after{
  content: ""; display: block; width: 18px; height: 2px; background: var(--forest-800);
  position: relative; transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav__toggle span::before{ position: absolute; top: -6px; }
.nav__toggle span::after{ position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span{ background: transparent; }
.nav__toggle[aria-expanded="true"] span::before{ transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after{ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px){
  .nav__links{
    position: fixed; inset: 0 0 0 auto; top: var(--hdr-h, 0); width: min(78vw, 340px); height: 100vh;
    background: var(--paper); flex-direction: column; align-items: flex-start; gap: 0;
    padding: 2rem 1.75rem; transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg); border-left: 1px solid var(--line);
  }
  .nav__links.is-open{ transform: translateX(0); }
  .nav__links a{ width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__toggle{ display: inline-flex; }
  .nav__actions .btn{ display: none; }
}

/* -------------------- 9. Hero -------------------- */
.hero{
  position: relative; overflow: clip;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(60% 55% at 85% 8%, rgba(255, 107, 74, 0.16), transparent 60%),
    radial-gradient(50% 50% at 8% 85%, rgba(63, 122, 94, 0.18), transparent 60%),
    var(--bone);
}
.hero__grid{
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}
.hero__copy p.lede{ margin-top: 1.15rem; }
.hero__cta{ display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }
.hero__proof{ display: flex; align-items: center; gap: 1.5rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__proof-item{ display: grid; }
.hero__proof-item strong{ font-family: var(--font-display); font-size: 1.6rem; color: var(--forest-800); }
.hero__proof-item span{ font-size: .82rem; color: var(--ink-soft); }

.hero__visual{ position: relative; aspect-ratio: 1 / 1; }
.blob{
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: blob-float 9s ease-in-out infinite;
}
@keyframes blob-float{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-14px) rotate(4deg); }
}
.hero__ring{
  position: absolute; inset: 8% ; border: 1.5px dashed var(--line-strong); border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.hero__badge{
  position: absolute; bottom: 6%; left: -4%;
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1.1rem;
  background: rgba(255, 253, 248, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero__badge svg{ width: 26px; height: 26px; color: var(--coral); flex: none; }
.hero__badge strong{ display: block; font-size: .85rem; }
.hero__badge span{ font-size: .74rem; color: var(--ink-soft); }

@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ max-width: 420px; margin-inline: auto; order: -1; }
}

/* -------------------- 10. Bento grid -------------------- */
.bento{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.1rem;
}
.bento__item{
  position: relative;
  container-type: inline-size;
  grid-column: span 3;
  padding: 1.9rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.62);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .85rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.bento__item:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(255,255,255,.9); }
.bento__item--wide{ grid-column: span 4; }
.bento__item--narrow{ grid-column: span 2; }
.bento__item--dark{
  background: linear-gradient(150deg, var(--forest-800), var(--forest-700));
  color: var(--bone-soft); border-color: rgba(255,255,255,.08);
}
.bento__item--dark .ink-soft, .bento__item--dark p{ color: rgba(247,242,231,.72); }
.bento__icon{
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: rgba(31, 74, 60, 0.1); color: var(--forest-700);
}
.bento__item--dark .bento__icon{ background: rgba(255,107,74,.16); color: var(--coral); }
.bento__icon svg{ width: 24px; height: 24px; }
.bento__item h3{ font-size: clamp(1.1rem, 1.4cqi + .8rem, 1.4rem); }
.bento__item p{ color: var(--ink-soft); font-size: .95rem; }
@container (max-width: 260px){
  .bento__item h3{ font-size: 1.05rem; }
}
@media (max-width: 760px){
  .bento{ grid-template-columns: 1fr 1fr; }
  .bento__item, .bento__item--wide, .bento__item--narrow{ grid-column: span 2; }
}

/* -------------------- 11. Split / feature sections -------------------- */
.split{
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.split--reverse{ grid-template-columns: 1.1fr .9fr; }
.split--reverse .split__media{ order: 2; }
@media (max-width: 860px){
  .split, .split--reverse{ grid-template-columns: 1fr; }
  .split--reverse .split__media{ order: 0; }
}
.split__media{ position: relative; }
.split__media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__media::before{
  content: ""; position: absolute; inset: -14px -14px auto auto; width: 60%; height: 60%;
  background: var(--coral); opacity: .12; border-radius: 50%; filter: blur(4px); z-index: -1;
}

.checklist{ display: grid; gap: .9rem; margin-top: 1.5rem; }
.checklist li{ display: flex; align-items: flex-start; gap: .8rem; font-weight: 600; }
.checklist svg{ width: 22px; height: 22px; flex: none; color: var(--forest-600); margin-top: 2px; }

/* -------------------- 12. Stats ring / process -------------------- */
.process{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step;
}
@media (max-width: 760px){ .process{ grid-template-columns: 1fr 1fr; } }
.process__step{ position: relative; padding-top: 3.6rem; }
.process__step::before{
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); border: 1.5px solid var(--line-strong); color: var(--forest-700);
}
.process__step h3{ font-size: 1.1rem; margin-bottom: .5rem; }
.process__step p{ color: var(--ink-soft); font-size: .93rem; }

/* -------------------- 13. CTA band -------------------- */
.cta-band{
  position: relative; overflow: clip;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--forest-800), var(--forest-600));
  color: var(--bone-soft);
  display: grid; gap: 1.6rem;
  grid-template-columns: 1.2fr auto;
  align-items: center;
}
.cta-band::after{
  content: ""; position: absolute; right: -10%; top: -30%; width: 60%; aspect-ratio: 1;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,107,74,.35), transparent 70%);
}
.cta-band h2{ color: #fff; }
.cta-band p{ color: rgba(247,242,231,.76); margin-top: .6rem; max-width: 46ch; }
@media (max-width: 720px){ .cta-band{ grid-template-columns: 1fr; text-align: left; } }

/* -------------------- 14. Cards: values / team / testimonial -------------------- */
.card-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px){ .card-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .card-grid{ grid-template-columns: 1fr; } }
.card{
  padding: 1.9rem; border-radius: var(--radius-md); background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.card:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card__icon{
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 1.1rem;
  display: grid; place-items: center; background: var(--bone-soft); color: var(--forest-700);
}
.card__icon svg{ width: 22px; height: 22px; }
.card h3{ font-size: 1.08rem; margin-bottom: .5rem; }
.card p{ color: var(--ink-soft); font-size: .92rem; }

.pill-row{ display: flex; flex-wrap: wrap; gap: .6rem; }
.pill{
  padding: .5rem 1rem; border-radius: var(--radius-pill); font-size: .82rem; font-weight: 700;
  background: var(--bone-soft); color: var(--forest-700); border: 1px solid var(--line);
}

/* -------------------- 15. Timeline (about page) -------------------- */
.timeline{ display: grid; gap: 0; border-left: 2px solid var(--line-strong); margin-left: .6rem; }
.timeline__item{ position: relative; padding: 0 0 2.4rem 2.2rem; }
.timeline__item::before{
  content: ""; position: absolute; left: -7.5px; top: 2px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--coral); box-shadow: 0 0 0 4px var(--bone);
}
.timeline__item:last-child{ padding-bottom: 0; }
.timeline__year{ font-family: var(--font-display); color: var(--forest-700); font-weight: 600; font-size: 1.05rem; }
.timeline__item p{ color: var(--ink-soft); margin-top: .35rem; font-size: .94rem; }

/* -------------------- 16. Forms (contact page) -------------------- */
.contact-wrap{
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px){ .contact-wrap{ grid-template-columns: 1fr; } }
.info-card{
  background: linear-gradient(160deg, var(--forest-800), var(--forest-700));
  color: var(--bone-soft); border-radius: var(--radius-lg); padding: 2.2rem;
  display: grid; gap: 1.6rem; box-shadow: var(--shadow-md);
}
.info-card h3{ color: #fff; font-size: 1.2rem; }
.info-list{ display: grid; gap: 1.1rem; }
.info-list li{ display: flex; gap: .9rem; align-items: flex-start; font-size: .93rem; }
.info-list svg{ width: 20px; height: 20px; flex: none; color: var(--coral); margin-top: 2px; }
.info-list a{ color: #fff; font-weight: 700; }
.info-list span{ display: block; color: rgba(247,242,231,.7); }

.form-card{
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm);
}
.field{ display: grid; gap: .45rem; margin-bottom: 1.15rem; }
.field label{ font-size: .84rem; font-weight: 700; color: var(--forest-800); }
.field input, .field textarea, .field select{
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: .85rem 1rem; background: var(--bone); color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: var(--forest-600); box-shadow: 0 0 0 4px rgba(63,122,94,.15); outline: none;
}
.field textarea{ resize: vertical; min-height: 130px; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px){ .field-row{ grid-template-columns: 1fr; } }
.form-note{ font-size: .82rem; color: var(--ink-soft); margin-top: .3rem; }
.form-success{
  display: none; margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  background: rgba(63,122,94,.12); color: var(--forest-800); font-weight: 700; font-size: .92rem;
}
.form-success.is-visible{ display: block; }

/* -------------------- 17. FAQ / accordion -------------------- */
.faq{ display: grid; gap: .8rem; max-width: 780px; margin-inline: auto; }
.faq__item{ border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); overflow: hidden; }
.faq__item summary{
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__item summary::after{
  content: "+"; font-size: 1.3rem; color: var(--coral); flex: none; transition: transform .25s var(--ease);
}
.faq__item[open] summary::after{ transform: rotate(45deg); }
.faq__item p{ padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .93rem; }

/* -------------------- 18. Footer -------------------- */
.site-footer{
  background: var(--forest-900); color: rgba(247,242,231,.7);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.6rem;
}
.footer__grid{
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247,242,231,.12);
}
@media (max-width: 760px){ .footer__grid{ grid-template-columns: 1fr 1fr; } }
.footer__brand{ display: grid; gap: 1rem; }
.footer__brand .brand{ color: #fff; }
.footer__brand p{ font-size: .9rem; max-width: 32ch; }
.footer h4{ color: #fff; font-family: var(--font-body); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__links{ display: grid; gap: .7rem; }
.footer__links a{ font-size: .92rem; transition: color .2s var(--ease); }
.footer__links a:hover{ color: #fff; }
.social-row{ display: flex; gap: .7rem; margin-top: .3rem; }
.social-row a{
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(247,242,231,.08); transition: background .2s var(--ease), transform .2s var(--ease);
}
.social-row a:hover{ background: var(--coral); transform: translateY(-2px); }
.social-row svg{ width: 17px; height: 17px; }
.footer__bottom{
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.6rem; font-size: .82rem;
}
.footer__bottom a:hover{ color: #fff; }
.footer__bottom-links{ display: flex; gap: 1.4rem; }

/* -------------------- 19. 404 page -------------------- */
.error-page{
  min-height: 62vh; display: grid; place-items: center; text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 0; position: relative; overflow: clip;
}
.error-page__num{
  font-family: var(--font-display); font-size: clamp(6rem, 20vw, 11rem); font-weight: 600;
  line-height: 1; background: linear-gradient(135deg, var(--forest-700), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.error-page__ring{
  position: absolute; width: min(600px, 90vw); aspect-ratio: 1; border: 1.5px dashed var(--line-strong);
  border-radius: 50%; animation: spin 50s linear infinite; z-index: -1;
}

/* -------------------- 20. Scroll reveal -------------------- */
/* Progressive enhancement: content is visible by default so it is never
   hidden from users without JS, slow script execution, or crawlers.
   The pre-reveal (hidden) state only applies once html.js confirms
   JavaScript ran, and main.js immediately reveals anything already
   in view on load, before handing off to IntersectionObserver. */
.reveal{ transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal{ opacity: 0; transform: translateY(22px); }
html.js .reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* -------------------- 21. Misc utilities -------------------- */
.divider{ height: 1px; background: var(--line); border: 0; margin: 0; }
.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--forest-800); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }
::selection{ background: var(--coral); color: #fff; }
