:root {
  --ink: #202117;
  --muted: #6f705f;
  --paper: #fbfaf4;
  --white: #fffef9;
  --corn: #f1b51c;
  --corn-soft: #ffe7a4;
  --caramel: #a65f22;
  --caramel-dark: #6b3b18;
  --leaf: #274538;
  --leaf-soft: #e8efe4;
  --line: rgba(32, 33, 23, 0.14);
  --shadow: 0 24px 70px rgba(59, 43, 20, 0.16);
  --font-sans: "Inter", "Noto Sans Thai", "Noto Sans TC", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(241, 181, 28, 0.16), transparent 34rem),
    linear-gradient(180deg, #fffef9 0%, var(--paper) 42%, #f7f3e8 100%);
  font-family: var(--font-sans);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 254, 249, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(51, 43, 25, 0.08);
  padding: 0 18px;
  border-radius: 0 0 8px 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), #15261f);
  font-size: 0.76rem;
  box-shadow: 0 12px 28px rgba(39, 69, 56, 0.24);
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--caramel);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(32, 33, 23, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 11px 15px;
  color: #fff !important;
  background: var(--leaf);
  border-radius: 8px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switcher button {
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: #fff;
  background: var(--leaf);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 76px);
  padding-top: 52px;
}

.section-note {
  margin: 0 0 18px;
  color: var(--caramel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 6.1vw, 6.5rem);
  font-weight: 750;
}

.mobile-title {
  display: none;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff;
  background: var(--leaf);
  box-shadow: 0 16px 34px rgba(39, 69, 56, 0.22);
}

.button-primary:hover {
  background: #1c342a;
}

.button-secondary {
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
}

.button-secondary:hover {
  box-shadow: 0 12px 26px rgba(49, 38, 18, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 46px 0 0;
}

.hero-stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  color: var(--leaf);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 750;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--leaf);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(20, 18, 12, 0.42) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: 52% 32%;
}

.hero-tag {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 3px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  color: #fff;
  background: rgba(22, 28, 20, 0.68);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.hero-tag span {
  color: var(--corn-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-tag strong {
  font-size: 1.15rem;
  line-height: 1.16;
}

.proposal {
  width: min(1000px, calc(100% - 40px));
  padding-top: 30px;
  padding-bottom: 54px;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}

.benefit-strip article {
  min-height: 76px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 33, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(69, 48, 22, 0.05);
}

.benefit-strip strong,
.benefit-strip span {
  display: block;
}

.benefit-strip strong {
  margin-bottom: 6px;
  color: var(--leaf);
  font-size: 0.9rem;
}

.benefit-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.proposal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 34px;
  align-items: center;
  margin-bottom: 26px;
}

.founder-showcase {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(73, 49, 21, 0.13);
}

.founder-showcase img {
  width: 100%;
  aspect-ratio: 16 / 10.4;
  object-fit: cover;
  object-position: 52% 48%;
}

.founder-letter {
  padding: 10px 6px;
}

.founder-letter .section-note {
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.founder-letter h1 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 2.9vw, 3.25rem);
  line-height: 1.04;
}

.founder-letter h1::after {
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 18px;
  background: var(--corn);
  border-radius: 999px;
  content: "";
}

.founder-letter p {
  max-width: 500px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 1rem;
}

.signature {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 2.05rem;
  font-style: italic;
  text-align: right;
}

.retail-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 0;
}

.retail-copy {
  padding: 34px 34px 30px;
  background: #fffef9;
  border: 1px solid rgba(32, 33, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(61, 42, 18, 0.06);
}

.retail-copy h2 {
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1.12;
}

.retail-copy .check-list {
  margin-bottom: 26px;
}

.retail-copy .button {
  min-height: 46px;
  padding-inline: 17px;
}

.retail-gallery {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px;
}

.retail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(61, 42, 18, 0.1);
}

.retail-gallery img:first-child {
  object-position: 50% 55%;
}

.retail-gallery img:last-child {
  object-position: 50% 42%;
}

.contact-ribbon {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  margin-top: 0;
  padding: 22px 28px;
  color: #fff;
  background: var(--leaf);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 18px 45px rgba(39, 69, 56, 0.2);
}

.contact-ribbon strong,
.contact-ribbon span {
  display: block;
}

.contact-ribbon strong {
  margin-bottom: 5px;
  font-size: 1.04rem;
}

.contact-ribbon span {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.contact-ribbon a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.marquee {
  overflow: hidden;
  padding: 16px 0;
  color: var(--leaf);
  background: var(--corn-soft);
  border-block: 1px solid rgba(166, 95, 34, 0.18);
}

.marquee div {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: drift 30s linear infinite;
}

.marquee span {
  font-family: var(--font-serif);
  font-size: 1.26rem;
  font-weight: 650;
  white-space: nowrap;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  margin-bottom: 42px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 44px;
}

.split-heading p:last-child,
.center-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.center-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.product-card {
  overflow: hidden;
  background: rgba(255, 254, 249, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(61, 42, 18, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--caramel);
  font-weight: 800;
}

.product-card-featured {
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  align-items: stretch;
}

.product-card-featured img {
  height: 100%;
  aspect-ratio: auto;
}

.product-type {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--caramel);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.founder-photo {
  overflow: hidden;
  height: 660px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 30%;
}

.founder-photo-polished img {
  object-position: 54% 47%;
}

.founder-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--leaf);
  background: var(--corn-soft);
  border-radius: 50%;
  content: "✓";
  font-size: 0.82rem;
}

.menu-section {
  width: 100%;
  max-width: none;
  background: #ffffff;
  border-block: 1px solid rgba(32, 33, 23, 0.08);
}

.menu-section > * {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
}

.menu-list {
  display: grid;
  gap: 10px;
}

.menu-list article {
  padding: 22px;
  background: #fbfaf4;
  border: 1px solid rgba(32, 33, 23, 0.11);
  border-radius: 8px;
}

.menu-list span,
.menu-list strong,
.menu-list small {
  display: block;
}

.menu-list span {
  color: var(--leaf);
  font-size: 1.02rem;
  font-weight: 800;
}

.menu-list strong {
  margin: 5px 0 8px;
  font-family: var(--font-serif);
  font-size: 1.52rem;
  line-height: 1;
}

.menu-list small {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.menu-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(47, 32, 13, 0.1);
}

.menu-gallery img:nth-child(1) {
  grid-row: span 2;
  height: 512px;
}

.retail-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.retail-steps article {
  min-height: 290px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 254, 249, 0.92), rgba(255, 247, 222, 0.72));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.retail-steps span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--caramel);
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 750;
}

.retail-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.channel-section {
  padding-top: 20px;
}

.channel-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: center;
  padding: 48px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(39, 69, 56, 0.94), rgba(24, 42, 34, 0.98)),
    var(--leaf);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.channel-card .section-note {
  color: var(--corn-soft);
}

.channel-card p {
  color: rgba(255, 255, 255, 0.78);
}

.channel-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.channel-links a {
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: background 160ms ease, transform 160ms ease;
}

.channel-links a:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.channel-links span,
.channel-links strong {
  display: block;
}

.channel-links span {
  margin-bottom: 14px;
  color: var(--corn-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.channel-links strong {
  font-size: 1.08rem;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 44px;
  align-items: end;
  padding-bottom: 72px;
}

.closing p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer a:hover {
  color: var(--ink);
}

body[data-lang="zh"] h1,
body[data-lang="zh"] h2,
body[data-lang="zh"] .menu-list strong,
body[data-lang="th"] h1,
body[data-lang="th"] h2,
body[data-lang="th"] .menu-list strong {
  font-family: var(--font-sans);
  line-height: 1.12;
}

body[data-lang="th"],
body[data-lang="zh"] {
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1050px) {
  .hero,
  .founder,
  .menu-layout,
  .channel-card,
  .closing,
  .proposal-card,
  .retail-panel {
    grid-template-columns: 1fr;
  }

  .benefit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-ribbon {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-media,
  .hero-media img,
  .founder-photo {
    min-height: 0;
    height: auto;
  }

  .hero-media img,
  .founder-photo img {
    aspect-ratio: 5 / 4;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    grid-template-columns: 1fr;
  }

  .product-card-featured img {
    aspect-ratio: 4 / 3;
  }

  .retail-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .closing {
    align-items: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-open .site-header {
    z-index: 40;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: block;
  }

  .nav-open .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-open .nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 45;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(32, 33, 23, 0.12);
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 28px;
    color: var(--ink);
    background: rgba(255, 254, 249, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    font-size: 1.35rem;
  }

  .language-switcher {
    padding: 6px;
  }

  .language-switcher button {
    min-width: 54px;
    height: 38px;
    font-size: 0.92rem;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    padding: 13px 18px;
    font-size: 1rem;
  }

  .section-pad {
    width: min(100% - 28px, var(--max));
    padding: 68px 0;
  }

  .proposal {
    width: min(100% - 28px, 1000px);
    padding-top: 20px;
    padding-bottom: 42px;
  }

  .founder-letter {
    padding: 0;
  }

  .founder-letter h1 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .retail-copy {
    padding: 26px 22px;
  }

  .retail-gallery {
    grid-template-columns: 1fr;
  }

  .retail-gallery img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  h1 {
    font-size: clamp(3.45rem, 17vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .menu-section > * {
    width: min(100% - 28px, var(--max));
  }

  .menu-gallery {
    grid-template-columns: 1fr;
  }

  .menu-gallery img,
  .menu-gallery img:nth-child(1) {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .retail-steps {
    grid-template-columns: 1fr;
  }

  .channel-card {
    padding: 28px;
  }

  .channel-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    width: min(100% - 28px, var(--max));
  }
}

@media (max-width: 520px) {
  .benefit-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .benefit-strip article {
    min-height: 88px;
    padding: 12px;
  }

  .benefit-strip strong {
    font-size: 0.82rem;
  }

  .benefit-strip span {
    font-size: 0.72rem;
  }

  .founder-showcase img {
    aspect-ratio: 4 / 3.15;
    object-position: 57% 48%;
  }

  .hero {
    gap: 34px;
  }

  h1 {
    font-size: clamp(2.72rem, 11vw, 3.05rem);
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  .hero-lede {
    max-width: 315px;
    font-size: 1rem;
  }

  .hero-actions,
  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 4 / 5;
    object-position: 53% 22%;
  }

  .founder-photo img {
    aspect-ratio: 4 / 5;
    object-position: 53% 22%;
  }
}
