/*
Theme Name: HomeFinds
Theme URI: https://homefinds.app
Author: HomeFinds
Author URI: https://homefinds.app
Description: A warm, tactile theme for sharing cool and useful home finds. Every find gets its own specimen-style tag, laid out on a discovery board. Built around posts-as-finds, with a custom "Room" taxonomy and per-find buy details (price, retailer, where-to-buy link). No page builder required.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: homefinds
Tags: blog, two-columns, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, e-commerce, editor-style
*/

/* ==========================================================================
   HomeFinds — Design tokens
   --------------------------------------------------------------------------
   Palette:  Paper #FAF4EC · Ink #2B2118 · Find (coral) #FF6242
             Forest #1F6F5C · Amber #FFC24B · Mist #ECE3D6
   Type:     Display "Bricolage Grotesque" · Body "Newsreader"
             Utility/tags "DM Mono"
   Signature: the rotated specimen "find tag" on every card
   ========================================================================== */

:root {
  --paper:        #FAF4EC;
  --paper-deep:   #F3EADD;
  --mist:         #ECE3D6;
  --ink:          #2B2118;
  --ink-soft:     #6A5C4D;
  --find:         #FF6242;
  --find-dark:    #E64a2c;
  --forest:       #1F6F5C;
  --forest-soft:  #2E8B72;
  --amber:        #FFC24B;
  --line:         #DBCFBE;
  --white:        #FFFDF9;

  --shadow-sm: 0 1px 2px rgba(43, 33, 24, .06);
  --shadow-md: 0 8px 24px -12px rgba(43, 33, 24, .25);
  --shadow-lg: 0 24px 60px -28px rgba(43, 33, 24, .35);

  --radius:    14px;
  --radius-lg: 22px;

  --maxw: 1180px;

  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body:    "Newsreader", Georgia, "Times New Roman", serif;
  --font-mono:    "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3: clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4: clamp(2.4rem, 1.8rem + 2.8vw, 3.8rem);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

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

/* subtle paper grain via layered gradients, fixed so it doesn't scroll-jank */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 98, 66, .05), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(31, 111, 92, .05), transparent 30%);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}

a { color: var(--find-dark); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 2px;
  border-radius: 4px;
}

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%); height: 1px; width: 1px;
  margin: -1px; overflow: hidden; padding: 0; position: absolute;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--ink); color: var(--paper);
  padding: .7rem 1.1rem; border-radius: 0 0 8px 0;
  font-family: var(--font-mono); font-size: .8rem;
}
.skip-link:focus { left: 0; color: var(--paper); }

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }

/* ============ HEADER ============ */
.site-header {
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; padding-block: .85rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand:hover { color: inherit; }
.brand__mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  background: var(--find); color: var(--white);
  border-radius: 10px; transform: rotate(-6deg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}
.brand:hover .brand__mark { transform: rotate(4deg) scale(1.05); }
.brand__mark svg { width: 20px; height: 20px; }
.brand__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.35rem; letter-spacing: -0.03em; color: var(--ink);
}
.brand__name b { color: var(--find-dark); font-weight: 800; }
.brand__logo img { max-height: 44px; width: auto; }

.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .3rem; }
.primary-nav a {
  display: block; padding: .45rem .8rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  color: var(--ink); text-decoration: none; letter-spacing: -0.01em;
  transition: background .18s ease, color .18s ease;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { background: var(--ink); color: var(--paper); }

.nav-toggle {
  display: none; border: 1.5px solid var(--ink); background: var(--paper);
  border-radius: 10px; padding: .5rem .7rem; cursor: pointer;
  font-family: var(--font-mono); font-size: .75rem; align-items: center; gap: .4rem;
}
.nav-toggle__bars { display: inline-block; width: 16px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: var(--ink); }
.nav-toggle__bars::before { top: -5px; } .nav-toggle__bars::after { top: 5px; }

/* ============ HERO ============ */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem); }
.hero__eyebrow {
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.hero__eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--find); box-shadow: 0 0 0 4px rgba(255, 98, 66, .2);
}
.hero__title { font-size: var(--step-4); max-width: 16ch; }
.hero__title em { font-style: normal; color: var(--find-dark); position: relative; }
.hero__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em;
  background: var(--amber); z-index: -1; border-radius: 2px;
}
.hero__lede {
  font-size: var(--step-1); color: var(--ink-soft); max-width: 46ch; margin-top: 1.1rem;
  font-weight: 350;
}

/* featured find spotlight */
.spotlight {
  margin: 2rem auto 0;
  max-width: 900px;
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 0;
  border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white); box-shadow: var(--shadow-md);
}
.spotlight__media {
  position: relative; background: var(--white);
  border-right: 1.5px solid var(--line);
  display: grid; place-items: center;
}
.spotlight__media img {
  width: 100%; height: 100%; max-height: 260px;
  object-fit: contain; padding: 1.1rem;
}
.spotlight__body { padding: clamp(1.3rem, 2.4vw, 1.9rem); display: flex; flex-direction: column; gap: .65rem; }
.spotlight__kicker {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--find-dark);
}
.spotlight__title { font-size: var(--step-1); letter-spacing: -0.02em; line-height: 1.15; }
.spotlight__title a { color: var(--ink); text-decoration: none; }
.spotlight__title a:hover { color: var(--find-dark); }
.spotlight__excerpt { color: var(--ink-soft); font-size: .96rem; }
.spotlight__meta { margin-top: auto; padding-top: .4rem; display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.spotlight__meta .buy-box__price,
.spotlight__meta .buybox__price { font-size: 1.5rem; }

/* ============ SECTION HEADINGS ============ */
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-block: 2.6rem 1.4rem;
  border-bottom: 1.5px dashed var(--line); padding-bottom: .9rem;
}
.section-head h2 { font-size: var(--step-2); }
.section-head__count { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-soft); letter-spacing: .04em; }

/* ============ FINDS GRID ============ */
.finds {
  display: grid; gap: clamp(1.2rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  padding-bottom: 3rem;
}

.find-card {
  position: relative; background: var(--white);
  border: 1.5px solid var(--ink); border-radius: var(--radius);
  overflow: visible; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.find-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.find-card__media {
  position: relative; aspect-ratio: 4 / 3; background: var(--mist);
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  overflow: hidden;
}
.find-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.find-card:hover .find-card__media img { transform: scale(1.04); }
.find-card__media--empty {
  display: grid; place-items: center; color: var(--ink-soft);
  font-family: var(--font-mono); font-size: .8rem;
  background: repeating-linear-gradient(45deg, var(--mist), var(--mist) 12px, var(--paper-deep) 12px, var(--paper-deep) 24px);
}

/* signature: the specimen find-tag */
.find-tag {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--amber); color: var(--ink);
  font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  padding: .3rem .6rem .3rem .55rem; border-radius: 6px;
  border: 1.5px solid var(--ink); box-shadow: var(--shadow-sm);
  transform: rotate(3deg);
}
.find-tag::before { /* the punch-hole + string nub */
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  border: 1.5px solid var(--ink); background: var(--white);
}
.find-tag--price { background: var(--find); color: var(--white); }
.find-tag--price::before { background: var(--white); border-color: var(--white); }

.find-card__body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.find-card__rooms { display: flex; flex-wrap: wrap; gap: .35rem; }
.room-chip {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--forest);
  text-decoration: none; padding: .12rem .45rem;
  border: 1px solid var(--forest); border-radius: 999px;
}
.room-chip:hover { background: var(--forest); color: var(--white); }
.find-card__title { font-size: 1.28rem; letter-spacing: -0.02em; line-height: 1.15; }
.find-card__title a { color: var(--ink); text-decoration: none; }
.find-card__title a:hover { color: var(--find-dark); }
.find-card__excerpt { font-size: .96rem; color: var(--ink-soft); margin: 0; }
.find-card__foot {
  margin-top: auto; padding-top: .85rem; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
}
.find-card__retailer { font-family: var(--font-mono); font-size: .74rem; color: var(--ink-soft); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  letter-spacing: -0.01em; text-decoration: none; cursor: pointer;
  padding: .62rem 1.1rem; border-radius: 999px;
  border: 1.5px solid var(--ink); background: var(--ink); color: var(--paper);
  transition: transform .15s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--find-dark); border-color: var(--find-dark); color: var(--white); }
.btn--find { background: var(--find); border-color: var(--ink); color: var(--white); }
.btn--find:hover { background: var(--find-dark); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--sm { padding: .42rem .8rem; font-size: .82rem; }
.btn svg { width: 15px; height: 15px; }

/* ============ SINGLE FIND (product layout) ============ */
.single-find { padding-block: clamp(1.6rem, 3.5vw, 2.4rem) 3rem; }

.product {
  display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(1.6rem, 3.2vw, 2.8rem); align-items: start;
}
.product__media {
  position: sticky; top: 84px; align-self: start;
  border: 1.5px solid var(--ink); border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product__media img { width: 100%; height: 100%; object-fit: contain; padding: clamp(.9rem, 2vw, 1.5rem); }
.product__media--empty {
  color: var(--ink-soft); font-family: var(--font-mono); font-size: .85rem;
  background: repeating-linear-gradient(45deg, var(--mist), var(--mist) 12px, var(--paper-deep) 12px, var(--paper-deep) 24px);
}

.product__col { min-width: 0; }
.product__title { font-size: var(--step-2); margin: .35rem 0 0; }

/* primary call to action */
.buybox__cta {
  display: inline-flex; justify-content: center; width: 100%;
  padding-block: .8rem; font-size: 1.02rem; margin-top: 1.2rem;
}

/* article body sits right under the CTA, full column width */
.product__col .find-content {
  max-width: none; margin: 1.6rem 0 0; padding-top: 1.6rem;
  border-top: 1.5px dashed var(--line);
  font-size: 1.08rem; line-height: 1.75;
}
.product__col .find-content > * + * { margin-top: 1.1rem; }
.product__col .entry-foot { max-width: none; margin: 1.8rem 0 0; }
.product__col .comments-area { max-width: none; margin: 2.4rem 0 0; }

/* affiliate disclosure — quiet, end of article */
.find-disclosure {
  margin: 1.4rem 0 0; font-size: .8rem; line-height: 1.5;
  font-style: italic; color: var(--ink-soft); opacity: .8;
}

/* price token still defined in case the spotlight is reverted to show it */
.buy-box__price { font-family: var(--font-display); font-weight: 800; font-size: 1.85rem; line-height: 1; color: var(--find-dark); }

/* article body (static pages) */
.find-content { max-width: 680px; margin-inline: auto; font-size: 1.12rem; line-height: 1.75; }

/* ============ RELATED FINDS ============ */
.related {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
  border-top: 1.5px solid var(--ink);
}
.related__title { font-size: var(--step-2); margin: 0 0 1.4rem; }
.related .finds {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  padding-bottom: 1rem;
}
.find-content > * + * { margin-top: 1.2rem; }
.find-content h2 { font-size: var(--step-2); margin-top: 2.2rem; }
.find-content h3 { font-size: var(--step-1); margin-top: 1.8rem; }
.find-content a { color: var(--find-dark); }
.find-content blockquote {
  border-left: 4px solid var(--find); margin: 1.6rem 0; padding: .4rem 0 .4rem 1.3rem;
  font-style: italic; color: var(--ink-soft); font-size: 1.2rem;
}
.find-content img { border-radius: var(--radius); border: 1.5px solid var(--line); }
.find-content ul, .find-content ol { padding-left: 1.4rem; }
.find-content li + li { margin-top: .4rem; }
.find-content code { font-family: var(--font-mono); font-size: .9em; background: var(--paper-deep); padding: .1em .4em; border-radius: 5px; }
.find-content pre { background: var(--ink); color: var(--paper); padding: 1.1rem; border-radius: var(--radius); overflow-x: auto; }
.find-content pre code { background: none; color: inherit; }

.entry-foot {
  max-width: 680px; margin: 2.4rem auto 0; padding-top: 1.4rem;
  border-top: 1.5px dashed var(--line); display: flex; flex-wrap: wrap;
  align-items: center; gap: .8rem; justify-content: space-between;
}
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag-list a {
  font-family: var(--font-mono); font-size: .74rem; color: var(--ink-soft);
  text-decoration: none; padding: .15rem .55rem; border: 1px solid var(--line); border-radius: 999px;
}
.tag-list a:hover { border-color: var(--ink); color: var(--ink); }

/* ============ ARCHIVE / PAGE HEADERS ============ */
.page-banner { padding-block: clamp(2rem, 5vw, 3.4rem) 0; }
.page-banner__eyebrow { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); }
.page-banner__title { font-size: var(--step-3); margin-top: .6rem; }
.page-banner__desc { color: var(--ink-soft); max-width: 54ch; margin-top: .6rem; font-size: var(--step-1); font-weight: 350; }

/* ============ PAGINATION ============ */
.pagination { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; padding: 1rem 0 3.5rem; }
.pagination .page-numbers {
  font-family: var(--font-display); font-weight: 700; min-width: 42px; text-align: center;
  padding: .5rem .7rem; border: 1.5px solid var(--ink); border-radius: 10px;
  text-decoration: none; color: var(--ink); background: var(--white);
  transition: background .15s ease, color .15s ease;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--ink); color: var(--paper); }
.pagination .dots { border: none; background: none; }

/* ============ COMMENTS ============ */
.comments-area { max-width: 680px; margin: 3rem auto 0; }
.comments-title { font-size: var(--step-2); }
.comment-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.comment-list .comment { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.comment-list .children { list-style: none; padding-left: 1.4rem; border-left: 2px solid var(--mist); }
.comment-author { font-family: var(--font-display); font-weight: 700; }
.comment-metadata { font-family: var(--font-mono); font-size: .72rem; color: var(--ink-soft); }
.comment-respond input[type=text], .comment-respond input[type=email],
.comment-respond input[type=url], .comment-respond textarea, .search-field, .wp-block-search__input {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: .7rem .9rem; border: 1.5px solid var(--ink); border-radius: 10px;
  background: var(--white); color: var(--ink);
}
.comment-form p { margin-bottom: 1rem; }
.comment-form label { display: block; font-family: var(--font-mono); font-size: .76rem; margin-bottom: .3rem; color: var(--ink-soft); }

/* ============ SEARCH FORM ============ */
.search-form { display: flex; gap: .5rem; }
.search-form .search-field { flex: 1; }
.search-form .search-submit {
  font-family: var(--font-display); font-weight: 700; padding: .6rem 1.1rem;
  border: 1.5px solid var(--ink); background: var(--ink); color: var(--paper);
  border-radius: 10px; cursor: pointer;
}
.search-form .search-submit:hover { background: var(--find-dark); border-color: var(--find-dark); }

/* ============ FOOTER ============ */
.site-footer { border-top: 1.5px solid var(--ink); background: var(--ink); color: var(--paper); margin-top: 2rem; }
.site-footer a { color: var(--amber); }
.site-footer a:hover { color: var(--white); }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-block: 3rem 2.2rem; }
.footer-brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--paper); }
.footer-brand p { color: #C9BBA9; max-width: 36ch; }
.footer-col h4 { color: var(--amber); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-mono); font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-family: var(--font-display); font-weight: 500; text-decoration: none; }
.site-footer__bottom {
  border-top: 1px solid rgba(250, 244, 236, .15); padding-block: 1.2rem 1.6rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  font-family: var(--font-mono); font-size: .76rem; color: #B8A992;
}

/* ============ WIDGETS (footer) ============ */
.widget { margin-bottom: 1.5rem; }
.widget-title { color: var(--amber); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-mono); font-weight: 500; }
.site-footer .widget ul { list-style: none; padding: 0; margin: 0; }
.site-footer .widget li { margin-bottom: .5rem; }

/* ============ EMPTY STATE ============ */
.empty-state { text-align: center; padding: 4rem 1rem; max-width: 38ch; margin-inline: auto; }
.empty-state__mark { font-size: 3rem; }
.empty-state h2 { font-size: var(--step-2); margin-top: .6rem; }
.empty-state p { color: var(--ink-soft); }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .spotlight { grid-template-columns: 1fr; max-width: 520px; }
  .spotlight__media { border-right: none; border-bottom: 1.5px solid var(--line); }
  .spotlight__media img { max-height: 220px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .product { grid-template-columns: 1fr; gap: 1.4rem; }
  .product__media { position: static; max-width: 380px; margin-inline: auto; width: 100%; }
  .product__title { margin-top: .2rem; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1.5px solid var(--ink);
    padding: .8rem 1.2rem; display: none; box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: .2rem; }
  .primary-nav a { padding: .7rem .9rem; }
}
@media (max-width: 540px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 2.8rem); }
}
