/* ============================================================
   Heard Woodworking — "Heirloom editorial"
   Walnut & Brass: walnut #3E2F23 · brass #B08D57 · cream #EFE9E1 · ink #1C1A17
   Type: Fraunces (display serif) + Familjen Grotesk (body)
   ============================================================ */

:root {
  --walnut: #271C12;
  --walnut-deep: #1F1610;
  --brass: #B08D57;
  --brass-soft: #C9AC7E;
  --cream: #EFE9E1;
  --cream-warm: #F6F2EB;
  --ink: #1C1A17;
  --ink-soft: #4A4239;
  --line: rgba(62, 47, 35, .18);
  --line-light: rgba(239, 233, 225, .22);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Familjen Grotesk", "Helvetica Neue", sans-serif;

  --w: min(1180px, calc(100vw - 2.5rem));
  --ease: cubic-bezier(.22, .8, .26, .99);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* hard lock against horizontal scroll/rubber-banding */
html, body { overflow-x: hidden; overflow-x: clip; max-width: 100vw; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* grain atmosphere over cream pages */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 .24 0 0 0 0 .18 0 0 0 0 .13 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; }
main { position: relative; z-index: 2; }

h1, h2, h3, .display {
  font-family: var(--serif);
  font-variation-settings: "opsz" 100;
  font-weight: 420;
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--ink);
}
em, .ital { font-style: italic; font-weight: 380; }

.wrap { width: var(--w); margin-inline: auto; }

/* --- kicker label --- */
.kicker {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex; align-items: center; gap: .9rem;
}
.kicker::before { content: ""; width: 2.4rem; height: 1px; background: var(--brass); }
.kicker--center { justify-content: center; }
.kicker--center::after { content: ""; width: 2.4rem; height: 1px; background: var(--brass); }

/* --- dovetail divider (from the logo mark) --- */
.dovetail {
  display: flex; justify-content: center; align-items: center; gap: .5rem;
  padding: 0; border: 0; color: var(--brass);
}
.dovetail svg { display: block; }

/* ============ header ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(62, 47, 35, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  border-bottom: 1px solid rgba(176, 141, 87, .25);
}
.nav__in {
  width: var(--w); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 0;
}
.nav__brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.nav__mark { width: 40px; height: 40px; border-radius: 4px; }
.nav__name { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name b {
  font-family: var(--serif); font-weight: 460; font-size: 1.18rem; letter-spacing: .01em;
}
.nav__name span {
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-soft);
}
.nav__links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav__links a {
  text-decoration: none; font-size: .92rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(239, 233, 225, .85);
  white-space: nowrap;
  transition: color .25s;
}
.nav__links a:hover, .nav__links a[aria-current] { color: var(--brass-soft); }
.nav__cta {
  border: 1px solid var(--brass); color: var(--brass-soft) !important;
  padding: .5rem 1.1rem; border-radius: 2px;
  transition: background .25s, color .25s;
}
.nav__cta:hover { background: var(--brass); color: var(--ink) !important; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: .3s; }

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .05em;
  text-decoration: none; padding: .95rem 1.8rem; border-radius: 2px;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-soft); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brass); color: var(--walnut); }
.btn--ghost-light { border: 1px solid rgba(239,233,225,.4); color: var(--cream); }
.btn--ghost-light:hover { border-color: var(--brass); color: var(--brass-soft); }

/* ============ hero ============ */
.hero {
  position: relative; color: var(--cream);
  min-height: calc(100svh - var(--navh, 73px));
  display: flex; align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,26,23,.45) 0%, rgba(28,26,23,.15) 40%, rgba(28,26,23,.88) 100%);
}
.hero .kicker {
  color: var(--brass-soft);
  text-shadow: 0 1px 10px rgba(28, 26, 23, .65);
  max-width: none;
  white-space: nowrap;
}
.hero .kicker::before { display: none; }
.hero h1, .hero p { text-shadow: 0 2px 18px rgba(28, 26, 23, .35); }
.hero__in {
  position: relative; z-index: 2;
  width: var(--w); margin-inline: auto;
  padding: 7rem 0 4.5rem;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  max-width: 12ch;
  margin: 1.2rem 0 1.4rem;
}
.hero h1 em { color: var(--brass-soft); }
.hero p { max-width: 46ch; font-size: 1.12rem; color: rgba(239,233,225,.82); }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }

/* staggered load-in */
.hero .rise { opacity: 0; transform: translateY(26px); animation: rise .9s var(--ease) forwards; }
.hero .rise:nth-child(2) { animation-delay: .12s; }
.hero .rise:nth-child(3) { animation-delay: .24s; }
.hero .rise:nth-child(4) { animation-delay: .36s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============ sections ============ */
.sec { padding: 5.5rem 0; }
.sec--walnut { background: var(--walnut); color: var(--cream); }
.sec--walnut h2, .sec--walnut h3 { color: var(--cream); }
.sec--ink { background: var(--ink); color: var(--cream); }
.sec--ink h2, .sec--ink h3 { color: var(--cream); }
.sec h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 1.1rem 0 1.2rem; }

.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 58ch; }
.sec--walnut .lede, .sec--ink .lede { color: rgba(239,233,225,.78); }

/* intro split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: 3px; box-shadow: 0 30px 60px -30px rgba(28,26,23,.45); }
.split__media::after {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--brass); border-radius: 3px; z-index: -1;
}

/* ============ services grid ============ */
.cats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
  margin-top: 3rem;
}
.cat {
  position: relative; overflow: hidden; border-radius: 3px;
  text-decoration: none; color: var(--cream);
  aspect-ratio: 4 / 5; background: var(--walnut-deep);
}
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), opacity .4s; opacity: .85; }
.cat:hover img { transform: scale(1.05); opacity: 1; }
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(28,26,23,.85) 100%);
}
.cat__label {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1rem; z-index: 2;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 440;
  display: flex; align-items: baseline; justify-content: space-between; gap: .5rem;
}
.cat__label span { font-family: var(--sans); font-size: .8rem; color: var(--brass-soft); letter-spacing: .08em; opacity: 0; transform: translateX(-6px); transition: .35s var(--ease); }
.cat:hover .cat__label span { opacity: 1; transform: none; }
/* editorial asymmetry: feature tiles */
.cat--wide { grid-column: span 2; aspect-ratio: auto; }

/* ============ process ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.4rem; margin-top: 3.2rem; counter-reset: step; }
.step { position: relative; padding-top: 1.6rem; border-top: 1px solid var(--line-light); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -0.85rem; left: 0; background: var(--walnut); padding-right: .8rem;
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--brass-soft);
}
.step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.step p { font-size: .97rem; color: rgba(239,233,225,.75); }

/* ============ stats band ============ */
.stats { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.stat { flex: 1 1 10rem; text-align: center; padding: 1rem 0; }
.stat b { display: block; font-family: var(--serif); font-weight: 420; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--brass); line-height: 1; }
.stat span { font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.sec--ink .stat span { color: rgba(239,233,225,.6); }

/* ============ quote ============ */
.pull {
  font-family: var(--serif); font-style: italic; font-weight: 380;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.35;
  max-width: 26ch; margin-inline: auto; text-align: center; color: var(--cream);
}
.pull cite { display: block; margin-top: 1.6rem; font-family: var(--sans); font-style: normal; font-size: .82rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-soft); }

/* ============ June / receptionist band ============ */
.june { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; }
.june__card {
  background: var(--walnut-deep); border: 1px solid rgba(176,141,87,.35); border-radius: 6px;
  padding: 2.2rem; color: var(--cream);
}
.june__line { display: flex; gap: 1rem; margin: 1.1rem 0; align-items: flex-start; }
.june__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brass); margin-top: .55rem; flex: none; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(176,141,87,.5); } 50% { box-shadow: 0 0 0 7px rgba(176,141,87,0); } }
.june__line p { font-size: .98rem; color: rgba(239,233,225,.85); }
.june__line p b { color: var(--brass-soft); }

/* ============ portfolio page ============ */
.folio { display: grid; gap: 5rem; }
.folio__item { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.4rem; align-items: center; }
.folio__item:nth-child(even) .folio__media { order: 2; }
.folio__media img { border-radius: 3px; box-shadow: 0 30px 60px -32px rgba(28,26,23,.5); }
.folio__n { font-family: var(--serif); font-style: italic; color: var(--brass); font-size: 1.1rem; }
.folio__item h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: .5rem 0 .8rem; }
.folio__item p { color: var(--ink-soft); max-width: 44ch; }

/* ============ about page ============ */
.bio { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; }
.bio img { border-radius: 3px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.value { border: 1px solid var(--line); border-radius: 4px; padding: 1.8rem; background: var(--cream-warm); }
.value h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.value p { font-size: .95rem; color: var(--ink-soft); }

/* ============ contact page ============ */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact__list { list-style: none; display: grid; gap: 1.4rem; margin-top: 2rem; }
.contact__list li { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.contact__list b { font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: .3rem; }
.contact__list a { font-family: var(--serif); font-size: 1.4rem; text-decoration: none; }
.contact__list a:hover { color: var(--walnut); text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 5px; }

.form { background: var(--cream-warm); border: 1px solid var(--line); border-radius: 6px; padding: 2.2rem; }
.form h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.form p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.form label { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin: 1rem 0 .35rem; }
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 3px; padding: .75rem .9rem;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--brass); outline-offset: 1px; border-color: transparent; }
.form button { margin-top: 1.6rem; width: 100%; cursor: pointer; border: 0; justify-content: center; }
.form__note { font-size: .82rem !important; color: var(--ink-soft); margin-top: 1rem !important; margin-bottom: 0 !important; }
.form__ok { display: none; padding: 1rem; border: 1px solid var(--brass); border-radius: 3px; background: rgba(176,141,87,.12); margin-top: 1.4rem; font-size: .95rem; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============ cut list (articles) ============ */
.cardgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.card {
  display: flex; flex-direction: column; text-decoration: none;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--cream-warm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -26px rgba(28,26,23,.4); }
.card img { aspect-ratio: 16/10; object-fit: cover; }
.card__body { padding: 1.4rem 1.5rem 1.7rem; }
.card__tag { font-size: .68rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); }
.card h3 { font-size: 1.32rem; margin: .55rem 0 .55rem; line-height: 1.2; }
.card p { font-size: .93rem; color: var(--ink-soft); }
.cardgrid--4 { grid-template-columns: repeat(4, 1fr); }
.cardgrid--4 .card img { aspect-ratio: 4/3; }
.card__go {
  display: inline-block; margin-top: .9rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--brass);
  transition: transform .25s var(--ease);
}
.card:hover .card__go { transform: translateX(4px); }

.article { max-width: 720px; margin-inline: auto; }
.article h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 1.2rem 0 1rem; }
.article .meta { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 2.4rem; }
.article h2 { font-size: 1.75rem; margin: 2.6rem 0 .9rem; }
.article p, .article li { color: #38322B; font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.1rem; }
.article ul, .article ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.article img { border-radius: 4px; margin: 2rem 0; }
.article .cta-inline {
  border: 1px solid var(--brass); border-radius: 5px; background: var(--cream-warm);
  padding: 1.6rem 1.8rem; margin: 2.6rem 0;
}
.article .cta-inline p { margin-bottom: 1rem; }

/* ============ gallery pages ============ */
.galgrid { columns: 3 320px; column-gap: 1.1rem; margin-top: 3rem; }
.galgrid a {
  display: block; margin-bottom: 1.1rem; break-inside: avoid;
  border-radius: 3px; overflow: hidden; cursor: zoom-in;
  background: var(--walnut-deep);
}
.galgrid img { width: 100%; transition: transform .5s var(--ease), opacity .4s; }
.galgrid a:hover img { transform: scale(1.03); opacity: .92; }

.folio__link { margin-top: 1.2rem; display: inline-flex; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(28, 26, 23, .94);
  padding: 2.5rem 4.5rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 3px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox button {
  position: absolute; background: none; border: 0; cursor: pointer;
  color: var(--cream); font-family: var(--sans); font-size: 2rem; line-height: 1;
  padding: .8rem; opacity: .7; transition: opacity .2s;
}
.lightbox button:hover { opacity: 1; }
.lightbox .lb-close { top: 1rem; right: 1.4rem; font-size: 2.4rem; }
.lightbox .lb-prev { left: .6rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: .6rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  color: rgba(239,233,225,.6); font-size: .8rem; letter-spacing: .2em;
}
@media (max-width: 680px) {
  .galgrid { columns: 2 150px; column-gap: .7rem; }
  .galgrid a { margin-bottom: .7rem; }
  .lightbox { padding: 3.5rem .5rem; }
}

/* ============ CTA band ============ */
.ctaband { text-align: center; }
.ctaband h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 18ch; margin-inline: auto; }
.ctaband .hero__cta { justify-content: center; }
.ctaband .phone {
  font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--brass-soft);
  text-decoration: none;
}
.ctaband .phone:hover { text-decoration: underline; text-underline-offset: 6px; }

/* ============ footer ============ */
.foot { background: var(--ink); color: rgba(239,233,225,.75); position: relative; z-index: 2; }
.foot__in {
  width: var(--w); margin-inline: auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
  padding: 4rem 0 3rem;
}
.foot h4 { font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; font-weight: 600; }
.foot a { color: rgba(239,233,225,.75); text-decoration: none; }
.foot a:hover { color: var(--brass-soft); }
.foot ul { list-style: none; display: grid; gap: .55rem; font-size: .95rem; }
.foot ul li, .foot ul a { overflow-wrap: anywhere; }
.foot__in > div { min-width: 0; }
.foot__brand b { font-family: var(--serif); font-weight: 460; font-size: 1.3rem; color: var(--cream); display: block; margin-bottom: .6rem; }
.foot__brand p { font-size: .92rem; max-width: 30ch; }
.foot__legal {
  border-top: 1px solid rgba(239,233,225,.12);
  padding: 1.4rem 0; font-size: .82rem; color: rgba(239,233,225,.5);
}
.foot__legal .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.foot__credit {
  border-top: 1px solid rgba(239,233,225,.1);
  text-align: center; padding: 1.1rem 0;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(239,233,225,.4);
}
.foot__credit a { color: var(--brass-soft); text-decoration: none; }
.foot__credit a:hover { text-decoration: underline; }

/* ============ reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero .rise { opacity: 1; transform: none; animation: none; transition: none; }
}

/* ============ page hero (inner pages) ============ */
.pagehero { background: var(--walnut); color: var(--cream); padding: 5rem 0 4rem; }
.pagehero h1 { color: var(--cream); font-size: clamp(2.4rem, 6vw, 4.2rem); margin-top: 1.1rem; max-width: 16ch; }
.pagehero h1 em { color: var(--brass-soft); }
.pagehero p { color: rgba(239,233,225,.8); max-width: 52ch; margin-top: 1.1rem; font-size: 1.1rem; }

/* ============ responsive ============ */
@media (max-width: 960px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .june, .bio, .contact, .folio__item { grid-template-columns: 1fr; gap: 2.4rem; }
  .folio__item:nth-child(even) .folio__media { order: 0; }
  .cardgrid, .cardgrid--4 { grid-template-columns: 1fr 1fr; }
  .foot__in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) and (min-width: 681px) {
  .nav__links { gap: 1.2rem; }
  .nav__name span { display: none; }
}
@media (max-width: 680px) {
  .sec { padding: 3.8rem 0; }
  .nav__links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--walnut); border-bottom: 1px solid rgba(176,141,87,.25);
    padding: .6rem 0 1.2rem;
  }
  .nav__links.open { display: flex; }
  .nav__links li { padding: .65rem 1.4rem; }
  .nav__cta { display: inline-block; margin: .4rem 1.4rem 0; text-align: center; }
  .nav__toggle { display: block; }
  .cats { grid-template-columns: 1fr; }
  .cat { aspect-ratio: 16/10; }
  .cat--wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .cardgrid, .cardgrid--4 { grid-template-columns: 1fr; }
  .split__media::after { display: none; }
  .hero .kicker { font-size: .64rem; letter-spacing: .18em; white-space: nowrap; }
  .hero .kicker::before { display: none; }
  .foot__in { grid-template-columns: 1fr; gap: 1.9rem; }
}
