/* =============================================================================
   Ronaldo Landscaping & Patios
   Layout and section flow follow gardenbuilders.co.uk (the agreed reference).
   Markup, CSS and copy are written from scratch; nothing is lifted.

   Colour: the reference's olive accent (#88884B) and terracotta CTA (#C25E47) are
   replaced by the client's own brand gold, sampled from their brand artwork.
   Ratios measured, see README.
   ============================================================================= */

/* ---------- design tokens ------------------------------------------------- */
:root {
  /* brand */
  --gold:      #FCB003;  /* sampled from client artwork. 9.96:1 on --ink. 1.85:1 on white: never text on light */
  --gold-deep: #946702;  /* same hue, darkened. 5.00:1 on white, 4.51:1 on --panel — small text on light.
                            Solved against BOTH light surfaces: a value tuned only to white
                            measures 4.11:1 on --panel and fails the caps labels that sit there. */
  --gold-mid:  #C58902;  /* same hue. 3.02:1 on white — non-text only: rules, icons, borders */

  /* neutrals */
  --ink:       #141414;
  --ink-soft:  #262626;
  --body:      #4A4A4A;  /* 8.86:1 on white */
  --muted:     #6B6B6B;
  --line:      #E3E3E3;
  --panel:     #F3F3F3;
  --white:     #FFFFFF;

  /* type */
  --sans: "Josefin Sans", "Century Gothic", "Futura", system-ui, -apple-system, sans-serif;
  --serif: "Lora", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;

  /* rhythm */
  --gutter: 1.5rem;
  --maxw: 1280px;
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
}

/* ---------- reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
}
h1, h2, h3, h4 { margin: 0 0 0.6em; color: var(--ink); font-weight: 600; line-height: 1.18; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--gold); padding: 0.85rem 1.25rem; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- type scale ---------------------------------------------------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.h-section {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  line-height: 1.25;
}
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 0.9rem;
}
.rule { display: block; width: 62px; height: 4px; background: var(--gold-mid); margin: 0 0 1.4rem; }
.lede { font-size: clamp(1.06rem, 1.6vw, 1.2rem); color: var(--body); }
.small { font-size: 0.9rem; }

/* ---------- buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.8rem;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent; border-radius: 2px;
  text-decoration: none; cursor: pointer; transition: background-color .18s, color .18s, border-color .18s;
}
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }        /* 9.96:1 */
.btn--gold:hover { background: #E09D02; border-color: #E09D02; }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: var(--white); }

/* ---------- header -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--line);
}
.site-header__in {
  display: flex; align-items: center; gap: 1rem;
  min-height: 74px; padding-block: 0.6rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
/* An inline element cannot constrain an SVG: the mark is a block with explicit box. */
.brand__mark { display: block; width: 38px; height: 38px; flex: 0 0 38px; color: var(--gold-mid); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--sans); font-weight: 700; font-size: 1.16rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink);
}
.brand__sub {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep);
}

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a {
  font-family: var(--sans); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--ink); text-decoration: none; padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--gold-mid); }

.header__actions { display: flex; align-items: center; gap: 0.7rem; }
.phone-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--gold-mid); border-radius: 2px;
  padding: 0.7rem 1.05rem; text-decoration: none;
  font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em; color: var(--ink);
  white-space: nowrap;
}
.phone-pill:hover { background: var(--panel); }
.phone-pill svg { width: 16px; height: 16px; flex: 0 0 16px; color: var(--gold-deep); }

/* JS-free mobile nav: a checkbox drives the panel. */
.nav-toggle { display: none; }
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; cursor: pointer;
  border: 1px solid var(--line); border-radius: 2px; background: var(--white);
}
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 1040px) {
  .nav {
    display: none; position: absolute; inset-inline: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--line); color: var(--gold-deep); }
  .burger { display: flex; }
  .nav-toggle:checked ~ .nav { display: flex; }
  .phone-pill span { display: none; }
  .phone-pill { padding: 0.7rem 0.8rem; }
}
@media (max-width: 620px) {
  .header__actions .btn { display: none; }
  .brand__name { font-size: 1rem; }
}

/* ---------- hero ---------------------------------------------------------- */
/* Every container renders at exactly the ratio its image was cut to. No min-height:
   a min-height silently changes the rendered box ratio and the browser then re-crops
   the photograph on top of the crop the pipeline already made. Narrow screens get a
   separately cut 1.7:1 frame via <picture>, not a squashed wide one. */
.hero { position: relative; background: var(--ink); }
.hero__img { width: 100%; aspect-ratio: 2.2 / 1; object-fit: cover; display: block; }
.hero--short .hero__img { aspect-ratio: 3.4 / 1; }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.18) 100%);
}
.hero__body {
  position: absolute; inset: 0; display: flex; align-items: center;
}
.hero__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.hero__text { max-width: 46rem; color: var(--white); }
.hero .display { color: var(--white); text-shadow: 0 2px 24px rgba(0,0,0,.4); }
.hero__sub {
  font-weight: 600; font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  letter-spacing: 0.02em; color: #F2F2F2; margin-bottom: 1.6rem; max-width: 40rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero picture { display: block; }

/* Below 760px a 3.4:1 band is ~115px tall, far too short to hold a headline. Stack
   instead: photograph on top, wording underneath on the ink panel. */
@media (max-width: 760px) {
  .hero__img, .hero--short .hero__img { aspect-ratio: 1.7 / 1; }
  .hero__veil { display: none; }
  .hero__body { position: static; }
  .hero__text { padding-block: 1.9rem 2.1rem; max-width: none; }
  .hero .display { text-shadow: none; }
}

/* rating line */
.rating-line {
  display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  margin-bottom: 1rem; font-weight: 600; letter-spacing: 0.04em; font-size: 0.95rem;
}
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; display: block; }

/* ---------- sections ------------------------------------------------------ */
.section { padding-block: var(--section-y); }
.section--panel { background: var(--panel); }
.section--ink { background: var(--ink); color: #D8D8D8; }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .eyebrow { color: var(--gold); }
.section--ink .rule { background: var(--gold); }
.section__head { max-width: 52rem; margin-bottom: 2.6rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .rule { margin-inline: auto; }

/* ---------- tile grid (reference: 8 category tiles) ----------------------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; list-style: none; margin: 0; padding: 0; }
.tile { position: relative; margin: 0; }
.tile a { display: block; position: relative; text-decoration: none; overflow: hidden; background: var(--ink); }
.tile img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform .5s ease, opacity .3s;
}
.tile a:hover img { transform: scale(1.05); opacity: .85; }
.tile__label {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 2.6rem 0.9rem 0.9rem; text-align: center;
  font-weight: 600; font-size: 0.79rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.78) 68%);
}
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .tiles { grid-template-columns: 1fr; } }

/* ---------- two-up text + image band -------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--flip .split__media { order: -1; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--flip .split__media { order: 0; }
  .split__media img { aspect-ratio: 3 / 2; }
}

/* ---------- work grid (reference: awards grid, caption under) ------------- */
.work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 1.2rem; list-style: none; margin: 0; padding: 0; }
.work li { margin: 0; }
.work img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.work__cap {
  margin-top: 0.85rem; font-weight: 600; font-size: 0.79rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
}
.work__note { font-size: 0.84rem; color: var(--muted); letter-spacing: 0; text-transform: none; font-weight: 400; }
@media (max-width: 880px) { .work { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .work { grid-template-columns: 1fr; } }

/* ---------- proof band (replaces the reference's accreditation wall) ------ */
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.proof__n { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--gold); }
.proof__l {
  margin-top: 0.6rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #CFCFCF;
}
@media (max-width: 700px) { .proof { grid-template-columns: 1fr; gap: 2.2rem; } }

/* ---------- reviews ------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; list-style: none; margin: 0; padding: 0; }
.review {
  margin: 0; background: var(--white); border: 1px solid var(--line);
  padding: 1.7rem 1.5rem; display: flex; flex-direction: column;
}
.review blockquote { margin: 0 0 1.1rem; font-family: var(--serif); font-size: 1.02rem; line-height: 1.62; color: var(--ink); }
.review blockquote p:last-child { margin-bottom: 0; }
.review__reply {
  margin: 0 0 1.1rem; padding: 0.8rem 1rem; background: var(--panel);
  border-left: 3px solid var(--gold-mid); font-size: 0.9rem; color: var(--body);
}
.review__reply b {
  display: block; font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 0.25rem;
}
.review__meta { margin-top: auto; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.review__who { display: block; font-weight: 600; font-size: 0.87rem; letter-spacing: 0.05em; color: var(--ink); }
.review__when { display: block; font-size: 0.78rem; color: var(--muted); }
.review .stars { margin-bottom: 0.8rem; color: var(--gold-mid); }
@media (max-width: 900px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews { grid-template-columns: 1fr; } }

/* On the reviews page the entries run from four words to four paragraphs. A grid row
   stretches every card to the tallest one and leaves large voids, so flow them in
   columns instead and let each card be its own height. */
.reviews--flow { display: block; columns: 3; column-gap: 1.3rem; }
.reviews--flow .review { display: block; break-inside: avoid; margin-bottom: 1.3rem; }
.reviews--flow .review__meta { margin-top: 1rem; }
@media (max-width: 900px) { .reviews--flow { columns: 2; } }
@media (max-width: 600px) { .reviews--flow { columns: 1; } }

/* ---------- FAQ (reference: 3-col cards, "+" expander) -------------------- */
.faq { columns: 3; column-gap: 1.2rem; }
.faq details {
  break-inside: avoid; background: var(--white); border: 1px solid var(--line);
  margin-bottom: 1.2rem; padding: 1.1rem 1.3rem;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; gap: 1rem; align-items: flex-start;
  justify-content: space-between;
  font-weight: 600; font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: 0 0 26px; width: 26px; height: 26px;
  display: grid; place-items: center; background: var(--gold-mid); color: var(--white);
  font-size: 1.05rem; line-height: 1; font-weight: 400;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { margin-bottom: 0.85rem; }
.faq p:last-child { margin-bottom: 0; }
@media (max-width: 1000px) { .faq { columns: 2; } }
@media (max-width: 680px)  { .faq { columns: 1; } }

/* ---------- full-bleed photo band ---------------------------------------- */
.band { position: relative; background: var(--ink); }
.band__img { width: 100%; aspect-ratio: 2.6 / 1; object-fit: cover; display: block; }
.band picture { display: block; }
.band__veil { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.band__body { position: absolute; inset: 0; display: flex; align-items: center; text-align: center; }
.band__inner { width: 100%; max-width: 60rem; margin-inline: auto; padding-inline: var(--gutter); color: var(--white); }
@media (max-width: 760px) {
  .band__img { aspect-ratio: 1.7 / 1; }
  .band__veil { display: none; }
  .band__body { position: static; }
  .band__inner { padding-block: 2.2rem 2.4rem; }
}
.band__inner h2 { color: var(--white); }
.band__inner .eyebrow { color: var(--gold); }
.band .btn--ghost { margin-top: 0.6rem; }

/* three-point icon row over the band */
.points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin: 0; padding: 0; list-style: none; }
.points li { margin: 0; color: var(--white); }
.points__ico {
  width: 54px; height: 54px; margin: 0 auto 0.9rem; border: 2px solid var(--gold);
  border-radius: 50%; display: grid; place-items: center; color: var(--gold);
}
.points__ico svg { width: 24px; height: 24px; display: block; }
.points b { display: block; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.3rem; }
.points span { font-size: 0.92rem; color: #D5D5D5; }
@media (max-width: 760px) { .points { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- service detail list ------------------------------------------ */
.svc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.4rem 2.6rem; list-style: none; margin: 0; padding: 0; }
.svc-list > li { margin: 0; }
.svc-list img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; margin-bottom: 1.2rem; }
.svc-list h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.09em; }
@media (max-width: 800px) { .svc-list { grid-template-columns: 1fr; } }

/* ---------- gallery ------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; list-style: none; margin: 0; padding: 0; }
.gallery li { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption { margin-top: 0.6rem; font-size: 0.84rem; color: var(--muted); }
.gallery figure { margin: 0; }
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- contact / form ------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.deets { list-style: none; margin: 0 0 2rem; padding: 0; }
.deets li { display: flex; gap: 0.9rem; margin-bottom: 1.1rem; align-items: flex-start; }
.deets svg { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 0.28rem; color: var(--gold-deep); }
.deets b { display: block; font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); }
.deets a { color: var(--ink); text-decoration: none; font-weight: 600; }
.deets a:hover { color: var(--gold-deep); text-decoration: underline; }

.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 600; color: var(--ink); letter-spacing: 0.06em; font-size: 0.8rem; text-transform: uppercase; }
.hours td { text-align: right; color: var(--body); }

.form { background: var(--panel); padding: clamp(1.5rem, 3vw, 2.4rem); border: 1px solid var(--line); }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; margin-bottom: 0.4rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
}
.field input, .field textarea, .field select {
  width: 100%; padding: 0.8rem 0.9rem; font: inherit; font-size: 1rem;
  color: var(--ink); background: var(--white); border: 1px solid #CFCFCF; border-radius: 2px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-deep); }
.form__note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.form__error { color: #A32014; font-size: 0.85rem; margin-top: 0.35rem; display: none; }
.field.is-bad input, .field.is-bad textarea { border-color: #A32014; }
.field.is-bad .form__error { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- breadcrumbs --------------------------------------------------- */
.crumbs { background: var(--panel); border-bottom: 1px solid var(--line); font-size: 0.8rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0.85rem 0; }
.crumbs li { margin: 0; display: flex; gap: 0.5rem; align-items: center; color: var(--muted); }
.crumbs li + li::before { content: "/"; color: #B4B4B4; }
.crumbs a { color: var(--body); text-decoration: none; }
.crumbs a:hover { color: var(--gold-deep); text-decoration: underline; }

/* ---------- footer -------------------------------------------------------- */
.subfoot { background: var(--white); border-top: 1px solid var(--line); padding-block: 2.6rem; }
.subfoot__in { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; align-items: start; }
.subfoot .brand__mark { width: 46px; height: 46px; flex-basis: 46px; }
.subfoot b { display: block; font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.5rem; }
.subfoot a { color: var(--ink); text-decoration: none; font-weight: 600; }
.subfoot a:hover { color: var(--gold-deep); text-decoration: underline; }
@media (max-width: 800px) { .subfoot__in { grid-template-columns: 1fr; gap: 1.6rem; } }

.site-footer { background: var(--ink); color: #B9B9B9; padding-block: 3rem 2rem; font-size: 0.92rem; }
.site-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.site-footer h2 {
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: #D2D2D2; text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.site-footer__base {
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid #333;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between;
  font-size: 0.82rem; color: #8E8E8E;
}
@media (max-width: 860px) { .site-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .site-footer__cols { grid-template-columns: 1fr; } }

/* ---------- misc ---------------------------------------------------------- */
.cols-2 { columns: 2; column-gap: 2.5rem; }
@media (max-width: 700px) { .cols-2 { columns: 1; } }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0 0 1.4rem; padding: 0; }
.chips li {
  margin: 0; background: var(--panel); border: 1px solid var(--line);
  padding: 0.4rem 0.8rem; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--ink);
}
.section--ink .chips li { background: var(--ink-soft); border-color: #383838; color: #E4E4E4; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .tile a:hover img { transform: none; }
}
