/* ==========================================================================
   PrimeGround Projects — custom styles
   Direction: white page, moss green + monogram black from the logo, concrete greys.
   Light-dominant editorial; moss and ink are punctuation.
   Type: Barlow Condensed (display ONLY) / Montserrat (small utility text)
         / Barlow (body) / Lora italic (the single pull-quote).
   ========================================================================== */

:root {
  --ink: #121619;
  --coal: #1c2226;
  --coal-soft: #262d32;
  --moss: #31491a;            /* the brand green — logo letters + wordmark */
  --moss-deep: #263a14;       /* hover / darker green */
  --moss-light: #9cc26a;      /* accent text on dark (AA on ink) */
  --paper: #ffffff;           /* the logo sits on pure white — so does the page */
  --paper-deep: #f2f2ee;      /* concrete-white alternate band */
  --concrete: #dcdad3;        /* soft rule / plate */
  --stone: #646a63;
  --stone-light: #a7ada5;
  --line: rgba(18, 22, 25, 0.22);
  --line-light: rgba(255, 255, 255, 0.26);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif; /* display sizes ONLY */
  --font-strong: 'Montserrat', 'Avenir Next', sans-serif;         /* nav, labels, buttons, chips */
  --font-body: 'Barlow', -apple-system, 'Helvetica Neue', sans-serif;
  --font-serif: 'Lora', Georgia, serif;                           /* the one pull-quote */

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
}

/* --- Base -------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: min(1180px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--wide { width: min(1400px, 100% - 2 * var(--gutter)); }
.container--narrow { width: min(900px, 100% - 2 * var(--gutter)); }

:focus-visible { outline: 2px solid var(--moss); outline-offset: 3px; }
.on-dark :focus-visible { outline-color: var(--moss-light); }
::selection { background: var(--moss); color: var(--paper); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--moss); color: var(--paper); padding: 0.75rem 1.25rem;
  font-family: var(--font-strong); font-weight: 700;
}
.skip:focus { left: 0; }

/* --- Type roles --------------------------------------------------------- */

.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.94;
}
.display--hero { font-size: clamp(3.2rem, 9.6vw, 7.4rem); }
.display--xl   { font-size: clamp(2.4rem, 6vw, 4.35rem); }
.display--lg   { font-size: clamp(1.95rem, 4.2vw, 3rem); }
.display--md   { font-size: clamp(1.45rem, 2.9vw, 2rem); }

.lead {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  line-height: 1.44;
  color: var(--coal);
}
.on-dark .lead { color: rgba(255, 255, 255, 0.86); }

.eyebrow {
  display: block;
  font-family: var(--font-strong);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: ""; display: block; width: 3.5rem; height: 5px; background: var(--moss); margin-bottom: 0.9rem; }
.on-dark .eyebrow { color: var(--paper); }
.on-dark .eyebrow::before { background: var(--moss-light); }

.muted { color: var(--stone); }
.on-dark .muted { color: var(--stone-light); }

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  font-family: var(--font-strong);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 1.9rem;
  border: 2px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
}
.btn--primary { background: var(--moss); color: var(--paper); border-color: var(--moss); }
.btn--primary:hover { background: var(--moss-deep); border-color: var(--moss-deep); color: var(--paper); }
/* On moss / ink bands the green button disappears — flip it to white. */
.on-dark .btn--primary { background: var(--paper); color: var(--moss); border-color: var(--paper); }
.on-dark .btn--primary:hover { background: var(--paper-deep); border-color: var(--paper-deep); color: var(--ink); }
.btn--ghost { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.band-paper .btn--ghost:hover, .band-paper-deep .btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--dark:hover { background: var(--coal-soft); border-color: var(--coal-soft); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* --- Nav ---------------------------------------------------------------- */

.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-nav > .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 88px;
}
.nav-brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-brand img { height: 54px; width: auto; }
.wordmark {
  font-family: var(--font-strong); font-weight: 800; font-size: 1.22rem;
  letter-spacing: -0.005em; line-height: 1; text-transform: uppercase; color: var(--ink);
  display: flex; flex-direction: column; gap: 0.22rem;
}
.wordmark .g { color: var(--moss); }
.wordmark small {
  font-weight: 700; font-size: 0.58rem; letter-spacing: 0.34em; color: var(--stone);
  text-transform: uppercase;
}
.on-dark .wordmark { color: var(--paper); }
.on-dark .wordmark .g { color: var(--moss-light); }
.on-dark .wordmark small { color: var(--stone-light); }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-link {
  font-family: var(--font-strong);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { border-color: var(--moss); }
.nav-call {
  font-family: var(--font-strong); font-weight: 700; font-size: 0.86rem;
  letter-spacing: 0.06em; text-decoration: none;
  background: var(--moss); color: var(--paper);
  padding: 0.85rem 1.4rem;
  transition: background 0.25s var(--ease);
  white-space: nowrap;
}
.nav-call:hover { background: var(--moss-deep); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 40px; padding: 8px 6px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: transform 0.25s var(--ease); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease);
  }
  .nav-links.is-open { max-height: 30rem; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-link { display: block; padding: 1.1rem var(--gutter); border-bottom: 0; }
  .nav-call { display: block; text-align: center; margin: 0.9rem var(--gutter) 1.2rem; }
}
@media (max-width: 420px) {
  .wordmark small { display: none; }
  .wordmark { font-size: 1.05rem; }
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(100svh, 960px);
  display: flex; align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,16,12,0.88) 0%, rgba(12,16,12,0.78) 28%, rgba(12,16,12,0.42) 56%, rgba(12,16,12,0.08) 80%, rgba(12,16,12,0) 100%),
    linear-gradient(to top, rgba(12,16,12,0.82) 0%, rgba(12,16,12,0.36) 34%, rgba(12,16,12,0.04) 66%, rgba(12,16,12,0.30) 100%);
}
@media (max-width: 760px) {
  .hero-media img { object-position: 62% 50%; }
  .hero-media::after {
    background: linear-gradient(to top, rgba(12,16,12,0.94) 0%, rgba(12,16,12,0.78) 44%, rgba(12,16,12,0.46) 74%, rgba(12,16,12,0.5) 100%);
  }
}
.hero-inner { position: relative; padding: clamp(3rem, 9vw, 6rem) 0 clamp(2.5rem, 5vw, 3.75rem); }
.hero .display--hero { max-width: 13ch; text-shadow: 0 2px 30px rgba(12, 16, 12, 0.35); }
.hero .lead {
  max-width: 44ch; margin: 1.5rem 0 2.1rem;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 14px rgba(12, 16, 12, 0.6);
}
.hero-kicker {
  font-family: var(--font-strong); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--moss-light); margin-bottom: 1.1rem;
  text-shadow: 0 1px 10px rgba(12, 16, 12, 0.6);
}
.hero-kicker .dot { opacity: 0.6; margin: 0 0.5rem; }

/* --- Trust strip -------------------------------------------------------- */

.trust {
  background: var(--moss); color: var(--paper);
  font-family: var(--font-strong); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.trust ul {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 0.5rem 2rem; padding: 1.15rem 0;
}
.trust li { display: flex; align-items: center; gap: 0.55rem; }
.trust .tick { color: var(--moss-light); font-size: 1rem; line-height: 1; }
@media (max-width: 720px) { .trust ul { justify-content: flex-start; } }

/* --- Sections ----------------------------------------------------------- */

section { padding: var(--section-y) 0; }
.band-paper { background: var(--paper); }
.band-paper-deep { background: var(--paper-deep); }
.band-moss { background: var(--moss); color: var(--paper); }
.band-ink { background: var(--ink); color: var(--paper); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head .lead { margin-top: 1.1rem; }

/* --- Intro grid --------------------------------------------------------- */

.intro-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.intro-grid .lead { margin: 0; font-size: clamp(1.3rem, 2.5vw, 1.75rem); max-width: 22ch; }
.intro-copy p { color: var(--coal); }
.ledger { border-top: 4px solid var(--ink); margin-top: clamp(2.5rem, 5vw, 4rem); }
.ledger-row {
  display: grid; grid-template-columns: 11rem minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 0.5rem 3rem; align-items: center;
  padding: clamp(1.15rem, 2.2vw, 1.6rem) 0;
  border-bottom: 2px solid var(--line);
}
.ledger-row:last-child { border-bottom: 4px solid var(--ink); }
.ledger-row .ledger-tag {
  font-family: var(--font-strong); font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss);
}
.ledger-row dt {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 0.96;
}
.ledger-row dd { margin: 0; font-family: var(--font-body); font-weight: 600; font-size: 1.08rem; color: var(--coal); }
@media (max-width: 760px) {
  .ledger-row { grid-template-columns: 1fr; gap: 0.35rem; }
}
.intro-figure { margin: clamp(2.5rem, 5vw, 4rem) 0 0; }
.intro-figure img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: 50% 55%; }
.figcap {
  font-family: var(--font-strong); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink);
  margin-top: 0.85rem;
}
.figcap::before { content: ""; display: inline-block; width: 1.4rem; height: 3px; background: var(--moss); margin-right: 0.7rem; vertical-align: 0.22em; }
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } .intro-grid .lead { max-width: none; } }

/* --- Service rows ------------------------------------------------------- */

.service-row {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  border-top: 2px solid var(--ink);
  align-items: center;
}
.service-row:last-child { border-bottom: 2px solid var(--ink); }
.service-row:nth-child(even) .svc-media { order: 2; }
.svc-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc-body h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem); line-height: 0.96; margin-bottom: 0.9rem; }
.svc-body p { color: var(--coal); max-width: 56ch; }
.svc-points {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 2.25rem; margin-top: 1.3rem; max-width: 34rem;
}
.svc-points li {
  font-family: var(--font-body); font-weight: 600; font-size: 1.04rem;
  color: var(--ink); display: flex; align-items: baseline; gap: 0.6rem;
}
.svc-points li::before { content: "\2713"; font-family: var(--font-strong); font-weight: 800; color: var(--moss); }
@media (max-width: 480px) { .svc-points { grid-template-columns: 1fr; } }
.svc-tag {
  display: inline-block; font-family: var(--font-strong); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper); background: var(--moss);
  padding: 0.35rem 0.65rem; margin-bottom: 0.9rem;
}
@media (max-width: 760px) {
  .service-row { grid-template-columns: 1fr; gap: 1.1rem; }
  .service-row:nth-child(even) .svc-media { order: 0; }
  .svc-media img { aspect-ratio: 16 / 10; }
}

/* --- Retaining-wall feature --------------------------------------------- */

.wall-steps {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem) clamp(2rem, 5vw, 4.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.wall-step { border-top: 5px solid var(--moss); padding-top: 1.15rem; }
.wall-step h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); line-height: 1; margin-bottom: 0.6rem; }
.wall-step p { color: var(--coal); margin: 0; font-weight: 500; max-width: 52ch; }
.wall-figures { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); }
.wall-figures figure { margin: 0; }
.wall-figures img { width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.wall-figures .wide img { object-position: 50% 60%; }
@media (max-width: 700px) { .wall-steps, .wall-figures { grid-template-columns: 1fr; } }

/* --- Why us band (ink, dimmed photo backdrop) ---------------------------- */

.why { position: relative; overflow: hidden; }
.why-bg { position: absolute; inset: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; opacity: 0.22; filter: saturate(0.6); }
.why-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(18,22,25,0.92) 0%, rgba(18,22,25,0.72) 50%, rgba(18,22,25,0.88) 100%); }
.why > .container { position: relative; }
.promise-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line-light); }
.promise {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.75rem, 3.5vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line-light);
}
.promise:nth-child(odd) { border-right: 1px solid var(--line-light); }
.promise:nth-child(even) { padding-left: clamp(1.5rem, 3vw, 2.5rem); }
.promise h3 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem); line-height: 1.02; margin-bottom: 0.7rem;
}
.promise p { color: rgba(255, 255, 255, 0.82); max-width: 46ch; }
@media (max-width: 720px) {
  .promise-grid { grid-template-columns: 1fr; }
  .promise:nth-child(odd) { border-right: 0; }
  .promise:nth-child(even) { padding-left: 0; }
}

/* --- Area covered (map) -------------------------------------------------- */

.area-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.area-map { width: 100%; height: auto; display: block; }
.map-frame { border: 4px solid var(--ink); }
.suburb-line { margin-top: 1.5rem; font-weight: 600; font-size: 1.05rem; color: var(--ink); max-width: 44ch; }
.suburb-line strong { color: var(--moss); font-weight: 700; }
.area-note { margin-top: 1.25rem; font-size: 0.98rem; font-weight: 500; color: var(--stone); }
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; } }

/* --- Photo divider bands -------------------------------------------------- */

.photo-band { padding: 0; line-height: 0; }
.photo-band img { width: 100%; height: clamp(240px, 38vh, 430px); object-fit: cover; }

/* --- Pull quote --------------------------------------------------------- */

.quote-band { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.quote-band .container { border-block: 4px solid var(--ink); padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter); }
blockquote.pull {
  margin: 0 auto; max-width: 24ch; text-align: center;
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.7rem, 3.8vw, 2.9rem); line-height: 1.25; color: var(--ink);
}
blockquote.pull footer {
  margin-top: 1.4rem; font-family: var(--font-strong); font-style: normal; font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss);
}

/* --- Contact / CTA ------------------------------------------------------ */

.cta-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }

.contact-lines { margin-top: 2rem; display: grid; gap: 1.35rem; }
.contact-lines dt {
  font-family: var(--font-strong); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss-light);
  margin-bottom: 0.2rem;
}
.contact-lines dd { margin: 0; font-size: 1.15rem; }
.contact-lines dd.big { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.5rem); line-height: 1; }
.contact-lines a { text-decoration: none; border-bottom: 1px solid var(--line-light); }
.contact-lines dd.big a { border-bottom-width: 2px; }
.contact-lines a:hover { border-color: var(--moss-light); }

.contact-form { display: grid; gap: 1.1rem; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-pair { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: var(--font-strong); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.45rem; color: rgba(255, 255, 255, 0.9);
}
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-weight: 500; font-size: 1rem;
  color: var(--paper); background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light); padding: 0.85rem 0.95rem;
  border-radius: 0; transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.45); }
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--moss-light); background: rgba(255, 255, 255, 0.13);
}
.field select option { color: var(--ink); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 0.95rem; min-height: 1.2rem; }
.form-status.is-ok { color: #cfe7a8; }
.form-status.is-err { color: #f3c2b0; }
.form-note { font-size: 0.88rem; color: rgba(255, 255, 255, 0.74); }

/* --- Footer ------------------------------------------------------------- */

.site-footer { background: var(--ink); color: var(--paper); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-brand .wordmark { font-size: 1.35rem; }
.footer-tag { margin-top: 1rem; color: var(--stone-light); max-width: 34ch; }
.footer-heading {
  font-family: var(--font-strong); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss-light);
  margin-bottom: 1rem;
}
.footer-list li { margin-bottom: 0.55rem; }
.footer-list a { font-family: var(--font-strong); font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.footer-list a:hover { color: var(--moss-light); }
.footer-base {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--stone-light);
}
.footer-base a { text-decoration: none; }
.footer-base a:hover { color: var(--moss-light); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Reveal ------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
