/* ============================================================
   HJEM Kensington — MT2 flagship
   Palette from the venue: deep forest green (shopfront, packaging),
   warm cream, sage (SW7 walls), bun-crust gold.
   Type: Fraunces (display serif, echoes the HJ|EM wordmark)
         + Schibsted Grotesk (body/UI).
   ============================================================ */

:root {
  --green: #1e3b2c;
  --green-ink: #142b1f;
  --cream: #f7f2e8;
  --cream-soft: #efe7d7;
  --sage: #a9b7a4;
  --ink: #23281f;
  --ink-soft: rgba(35, 40, 31, 0.72);
  --gold: #b98549;
  --line: rgba(30, 59, 44, 0.16);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --pad-x: clamp(20px, 5vw, 72px);
  --section-y: clamp(72px, 11vw, 150px);
  --radius: 2px;
  --m-dur: 0.9s;
  --m-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: clamp(16px, 1.15vw, 17.5px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* faint paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: inherit; }

::selection { background: var(--green); color: var(--cream); }

/* ---------- type ---------- */

h1, h2, h3 { font-family: var(--serif); font-weight: 460; letter-spacing: -0.015em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  line-height: 1.08;
  font-variation-settings: "opsz" 60;
}

.lede { color: var(--ink-soft); max-width: 56ch; }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px var(--pad-x);
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: padding 0.35s var(--m-ease), border-color 0.35s, box-shadow 0.35s;
}
.nav.is-condensed {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(30, 59, 44, 0.06);
}

.wordmark { text-decoration: none; line-height: 1; }
.wordmark strong {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 27px;
  letter-spacing: 0.02em;
  display: block;
  color: var(--green);
}
.wordmark span {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 3px;
}

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.3s var(--m-ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--green);
  transition: background 0.25s, color 0.25s, transform 0.25s var(--m-ease);
}
.btn-solid { background: var(--green); color: var(--cream); }
.btn-solid:hover { background: var(--green-ink); border-color: var(--green-ink); }
.btn-ghost { color: var(--green); background: transparent; }
.btn-ghost:hover { background: rgba(30, 59, 44, 0.07); }
.btn-cream { background: var(--cream); color: var(--green); border-color: var(--cream); }
.btn-cream:hover { background: #fff; border-color: #fff; }
.btn-ghost-cream { color: var(--cream); border-color: rgba(247, 242, 232, 0.5); }
.btn-ghost-cream:hover { border-color: var(--cream); background: rgba(247, 242, 232, 0.08); }

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: min(calc(100vh - 76px), 940px);
  padding: 0 var(--pad-x);
  gap: clamp(28px, 4vw, 64px);
}

.hero-copy {
  align-self: center;
  padding: clamp(40px, 6vw, 88px) 0;
  max-width: 640px;
}

.hero-kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-kicker::before { content: ""; width: 34px; height: 1.5px; background: var(--gold); }

.hero-title {
  font-size: clamp(4.6rem, 12.5vw, 10.5rem);
  line-height: 0.92;
  font-weight: 500;
  color: var(--green);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  color: var(--gold);
  margin: 14px 0 26px;
}

.hero-lede { max-width: 46ch; color: var(--ink-soft); margin-bottom: 38px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; display: flex; }
.hero-media figure {
  position: relative;
  flex: 1;
  margin: clamp(24px, 4vw, 56px) 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
/* offset frame — quiet signature detail */
.hero-media figure::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(16px, 16px);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  z-index: -1;
}
.hero-media figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--cream);
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
}

/* ---------- marquee ---------- */

.marquee {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  padding: 15px 0;
  border-block: 1px solid var(--green-ink);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 460;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 26px;
}
.marquee span::after { content: "·"; color: var(--gold); padding-left: 26px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- shared section shell ---------- */

.section { padding: var(--section-y) var(--pad-x); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }

/* ---------- signature bakes ---------- */

.bakes { background: var(--cream); }
.bakes-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.bakes-media { position: sticky; top: 110px; }
.bakes-media img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; object-position: center 72%; }

.bake-list { counter-reset: bake; }
.bake {
  counter-increment: bake;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px 22px;
}
.bake:last-child { border-bottom: 1px solid var(--line); }
.bake::before {
  content: counter(bake, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  padding-top: 9px;
}
.bake h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  grid-column: 2;
}
.bake h3 em { font-style: italic; font-weight: 400; color: var(--ink-soft); font-size: 0.72em; margin-left: 10px; }
.bake p { grid-column: 2; color: var(--ink-soft); max-width: 52ch; }

.bakes-note {
  margin-top: 34px;
  padding-left: 86px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--green);
}

/* ---------- order (embedded Embargo) ---------- */

.order { background: var(--green); color: var(--cream); }
.order .eyebrow { color: var(--sage); }
.order .h2 { color: var(--cream); }
.order .lede { color: rgba(247, 242, 232, 0.75); }

.order-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.order-frame-wrap {
  position: relative;
  margin-top: clamp(36px, 5vw, 56px);
  background: var(--green-ink);
  border-radius: 6px;
  overflow: hidden;
  height: min(84vh, 880px);
  overscroll-behavior: contain;
}
.order-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.order-skeleton {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(247, 242, 232, 0.6);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.order-skeleton::before {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(247, 242, 232, 0.25);
  border-top-color: var(--cream);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.order-frame-wrap.is-loaded .order-skeleton { display: none; }

.order-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13.5px;
  color: rgba(247, 242, 232, 0.6);
}
.order-foot a { color: var(--cream); font-weight: 500; }
.demo-tag {
  border: 1px solid rgba(247, 242, 232, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); aspect-ratio: 3 / 4; object-fit: cover; object-position: center 78%; }
.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(-16px, 16px);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.story-copy p + p { margin-top: 1.1em; }
.story-copy .lede { max-width: 58ch; }
.story-fact-row {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.story-fact strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--green);
}
.story-fact span { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ---------- garden (full-bleed) ---------- */

.garden {
  position: relative;
  color: var(--cream);
  overflow: clip;
}
.garden-media {
  position: absolute;
  inset: 0;
}
.garden-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}
.garden::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 43, 31, 0.82) 0%, rgba(20, 43, 31, 0.45) 55%, rgba(20, 43, 31, 0.25) 100%);
}
.garden-inner {
  position: relative;
  z-index: 2;
  padding: clamp(110px, 16vw, 210px) var(--pad-x);
  max-width: 700px;
}
.garden .eyebrow { color: var(--sage); }
.garden .h2 { color: var(--cream); }
.garden p { color: rgba(247, 242, 232, 0.85); max-width: 46ch; }
.garden-quote {
  margin-top: 34px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
}
.garden-quote cite { font-style: normal; font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); display: block; margin-top: 8px; }

/* ---------- reviews ---------- */

.reviews { background: var(--cream-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card:nth-child(2) { margin-top: 22px; }
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.review-text { font-family: var(--serif); font-size: 1.08rem; line-height: 1.5; font-weight: 400; }
.review-author { margin-top: auto; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- pantry ---------- */

.pantry-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}
.pantry-media img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; }
.pantry-list { margin-top: 30px; }
.pantry-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15.5px;
}
.pantry-list li:last-child { border-bottom: 1px solid var(--line); }
.pantry-list li span:last-child { color: var(--ink-soft); font-size: 13.5px; white-space: nowrap; padding-top: 2px; }

/* ---------- FAQ ---------- */

.faq { max-width: 860px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 460;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s var(--m-ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 24px; color: var(--ink-soft); max-width: 60ch; }

/* ---------- locations ---------- */

.locations { background: var(--cream-soft); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.loc-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
  text-decoration: none;
  display: block;
  transition: transform 0.35s var(--m-ease), box-shadow 0.35s;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(30, 59, 44, 0.1); }
.loc-card h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--green); margin-bottom: 6px; }
.loc-card address { font-style: normal; color: var(--ink-soft); margin-bottom: 18px; }
.loc-hours { font-size: 14px; border-top: 1px solid var(--line); padding-top: 16px; }
.loc-hours div { display: flex; justify-content: space-between; padding: 3px 0; }
.loc-hours span:first-child { color: var(--ink-soft); }
.loc-more {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
.loc-more::after { content: " →"; }

/* ---------- footer ---------- */

.footer { background: var(--green-ink); color: rgba(247, 242, 232, 0.75); }
.footer-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(5rem, 16vw, 15rem);
  line-height: 0.85;
  color: var(--green);
  -webkit-text-stroke: 1px rgba(247, 242, 232, 0.35);
  text-align: center;
  padding: clamp(48px, 7vw, 90px) var(--pad-x) 0;
  user-select: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: clamp(48px, 6vw, 72px) var(--pad-x);
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer p, .footer li { font-size: 14.5px; line-height: 1.9; list-style: none; }
.footer-bottom {
  border-top: 1px solid rgba(247, 242, 232, 0.12);
  padding: 22px var(--pad-x);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(247, 242, 232, 0.45);
}

/* ---------- sticky mobile order bar ---------- */

.sticky-order {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: var(--green-ink);
  color: var(--cream);
  transform: translateY(100%);
  transition: transform 0.45s var(--m-ease);
}
.sticky-order.is-visible { transform: translateY(0); }
.sticky-order .brand { font-family: var(--serif); font-size: 17px; }
.sticky-order .btn { padding: 10px 20px; font-size: 13.5px; }

/* ---------- inner-page headers (menu / locations) ---------- */

.page-head {
  padding: clamp(56px, 9vw, 110px) var(--pad-x) clamp(36px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 0.98;
  color: var(--green);
  font-variation-settings: "opsz" 120;
}
.page-head .lede { margin-top: 18px; }

/* ---------- menu page ---------- */

.menu-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.menu-section { break-inside: avoid; margin-bottom: clamp(40px, 5vw, 64px); }
.menu-section h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--green);
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1.5px solid var(--green);
}
.menu-section .menu-note { font-size: 13px; color: var(--ink-soft); margin: 8px 0 10px; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 6px 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item .name { font-weight: 500; font-size: 15.5px; }
.menu-item .name small { display: block; font-weight: 400; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.menu-item .price { font-family: var(--serif); font-size: 15px; color: var(--green); white-space: nowrap; }
.menu-cta {
  background: var(--green);
  color: var(--cream);
  border-radius: 6px;
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(40px, 6vw, 64px);
}
.menu-cta h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--cream); }
.menu-cta p { color: rgba(247, 242, 232, 0.7); font-size: 14.5px; }

/* ---------- location pages ---------- */

.loc-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.loc-detail dl { border-top: 1px solid var(--line); }
.loc-detail dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.loc-detail dt { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); padding-top: 3px; }
.loc-detail dd { font-size: 15.5px; }
.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-photo img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; margin-top: 20px; }

/* ---------- reveal motion ---------- */

@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity var(--m-dur) var(--m-ease), transform var(--m-dur) var(--m-ease);
    transition-delay: var(--reveal-delay, 0s);
  }
  html.js [data-reveal].is-in { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1060px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card:nth-child(2) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav .btn { margin-left: auto; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-bottom: 8px; }
  .hero-media figure { margin-top: 0; }
  .hero-media img { aspect-ratio: 4 / 3; }

  .bakes-grid, .story-grid, .pantry-grid, .loc-grid, .menu-layout, .loc-page-grid { grid-template-columns: 1fr; }
  .bakes-media { position: static; }
  .bakes-note { padding-left: 0; }
  .bake { grid-template-columns: 44px 1fr; }
  .story-media { order: -1; }
  .story-media::after { display: none; }
  .pantry-media { order: -1; }

  .order-frame-wrap { height: 78vh; }

  .sticky-order { display: flex; }
}

@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-media figure::after { display: none; }
}
