:root {
  --page: #ffffff;
  --paper: #fbfaf7;
  --ink: #25221e;
  --muted: #6f6a62;
  --soft: #9b9488;
  --line: #ded8cf;
  --line-dark: #c8c0b5;
  --accent: #7b6a58;
  --night: #181714;
  --shadow: 0 18px 56px rgba(37, 34, 30, 0.08);
}

/* Aesop-like homepage v2 overrides */
body {
  font-family: Inter, "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

h1,
h2,
h3,
button,
input {
  font-family: Inter, "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

.aesop-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.58fr);
  grid-template-areas:
    "image copy"
    "dots copy";
  gap: 22px 72px;
  align-content: center;
}

.hero-image-frame {
  grid-area: image;
  min-height: min(68vh, 680px);
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: min(68vh, 680px);
  object-fit: cover;
  filter: saturate(0.82);
}

.aesop-hero .hero-copy {
  grid-area: copy;
}

.hero-dots {
  grid-area: dots;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--soft);
  border-radius: 50%;
}

.hero-dot.is-active {
  background: var(--ink);
  border-color: var(--ink);
}

.story-longform {
  max-width: 760px;
  margin: 42px 0 34px;
}

.story-longform p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.9;
}

.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
  background: #f4f1ec;
}

.partner-strip {
  display: grid;
  align-items: center;
  min-height: 48vh;
  margin-top: 64px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-logos span {
  display: grid;
  min-height: 118px;
  place-items: center;
  color: var(--soft);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 72px;
  padding: 54px 40px 64px;
  background: var(--night);
  color: var(--page);
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a {
  color: var(--page);
}

.site-footer h2 {
  max-width: 420px;
  font-size: 28px;
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h3 {
  padding-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.footer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-form input {
  min-height: 48px;
  padding: 0;
  background: transparent;
  color: var(--page);
  border: 0;
}

.footer-form button {
  background: transparent;
  color: var(--page);
  border: 0;
}

@media (max-width: 1020px) {
  .aesop-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .aesop-hero {
    grid-template-areas:
      "image"
      "dots"
      "copy";
  }

  .hero-image-frame,
  .hero-image-frame img {
    min-height: 420px;
  }

  .partner-logos,
  .site-footer nav {
    grid-template-columns: 1fr;
  }
}

/* User requested smaller hero headline. */
.hero.aesop-hero h1 {
  font-size: clamp(26px, 2.25vw, 36px);
  font-weight: 300;
  line-height: 1.24;
}

@media (min-width: 1280px) and (max-height: 900px) {
  .hero.aesop-hero h1 {
    font-size: clamp(24px, 2vw, 34px);
  }
}

/* Aesop-like product shelf for SoulKey Code */
.code-section {
  background: var(--paper);
}

.code-section .section-heading {
  margin-bottom: 26px;
}

.product-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  border: 0;
  background: transparent;
}

.product-shelf article {
  display: grid;
  grid-template-rows: auto auto auto auto auto auto;
  justify-items: center;
  min-height: 0;
  padding: 0;
  text-align: center;
  border: 0;
  background: transparent;
}

.product-shelf span {
  min-height: 24px;
  color: #7a4c29;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.product-shelf img {
  width: min(78%, 360px);
  height: 290px;
  margin: 18px auto 38px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.78);
}

.product-shelf h3 {
  min-height: 58px;
  max-width: 360px;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.product-shelf p {
  min-height: 54px;
  max-width: 360px;
  margin: 14px auto 20px;
  color: var(--muted);
  font-size: 16px;
}

.shelf-spec {
  display: grid;
  align-items: center;
  width: min(100%, 400px);
  min-height: 58px;
  margin: 0 auto 18px;
  padding: 0 28px;
  color: var(--ink);
  font-size: 20px;
  text-align: left;
  border: 1px solid var(--line-dark);
}

.product-shelf strong {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
}

.shelf-button {
  display: grid;
  align-items: center;
  justify-content: center;
  width: min(100%, 400px);
  min-height: 68px;
  background: #333230;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
}

.code-section > .shop-all {
  display: table;
  margin: 44px auto 0;
}

@media (max-width: 1020px) {
  .product-shelf {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .product-shelf img {
    height: 260px;
  }
}

/* Keep the homepage hero contained within one desktop viewport. */
.hero.aesop-hero {
  min-height: calc(100vh - 76px);
  padding-top: 36px;
  padding-bottom: 26px;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.62fr);
  gap: 14px 64px;
}

.hero.aesop-hero .hero-image-frame {
  min-height: 0;
  height: clamp(420px, calc(100vh - 190px), 620px);
}

.hero.aesop-hero .hero-image-frame img {
  min-height: 0;
  height: 100%;
  object-position: center;
}

.hero.aesop-hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.06;
}

.hero.aesop-hero .hero-text {
  max-width: 520px;
  margin: 22px 0 24px;
  font-size: 16px;
}

.hero.aesop-hero .microcopy {
  margin-bottom: 0;
}

@media (min-width: 1280px) and (max-height: 900px) {
  .hero.aesop-hero h1 {
    font-size: clamp(38px, 3.6vw, 58px);
  }

  .hero.aesop-hero .hero-image-frame {
    height: clamp(380px, calc(100vh - 176px), 560px);
  }
}

@media (max-width: 1020px) {
  .hero.aesop-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .hero.aesop-hero .hero-image-frame,
  .hero.aesop-hero .hero-image-frame img {
    height: auto;
    min-height: 0;
  }

  .hero.aesop-hero .hero-image-frame img {
    aspect-ratio: 4 / 3;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  min-height: 76px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-block;
  width: 168px;
  text-decoration: none;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.top-nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.top-nav a:hover,
.inline-cta:hover,
.shop-all:hover,
.secondary-link:hover {
  color: var(--ink);
}

main {
  border-bottom: 1px solid var(--line);
}

.hero,
.story-section,
.code-section,
.shop-section,
.reviews-section,
.faq-section {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 88px 40px;
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 96px;
  align-items: center;
  min-height: calc(100vh - 76px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
}

h2 {
  max-width: 840px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 32px;
  font-size: 18px;
}

.microcopy,
.form-note {
  color: var(--soft);
  font-size: 13px;
}

.birth-card {
  align-self: stretch;
  display: grid;
  align-content: space-between;
  min-height: 540px;
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.birth-card h2 {
  font-size: clamp(36px, 4vw, 64px);
}

.birth-card p {
  max-width: 360px;
  margin: 16px 0 48px;
}

.card-index,
.code-grid span,
.shop-grid span,
.reviews-grid span {
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dl {
  display: grid;
  gap: 0;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--soft);
}

dd {
  margin: 0;
  color: var(--ink);
}

.primary-action,
.secondary-action,
.secondary-link,
.inline-cta,
.shop-all,
.text-button,
.icon-button {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 24px;
  background: var(--ink);
  color: var(--page);
}

.secondary-action,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 20px;
  border: 1px solid var(--line-dark);
}

.text-button,
.inline-cta,
.shop-all {
  padding: 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
}

.icon-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 44px;
}

.section-heading .eyebrow {
  margin-top: 9px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(110px, 0.18fr) minmax(0, 1fr);
  gap: 56px;
}

.section-kicker {
  color: var(--soft);
  font-size: 13px;
}

.story-copy {
  max-width: 1080px;
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin: 34px 0 28px;
}

.story-columns p {
  margin: 0;
  font-size: 17px;
}

.code-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.code-grid article,
.reviews-grid article {
  display: grid;
  align-content: start;
  min-height: 420px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.code-grid h3 {
  margin: 36px 0 16px;
}

.mini-product {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.mini-product strong,
.mini-product em {
  font-style: normal;
}

.mini-product em {
  color: var(--muted);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.shop-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 520px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shop-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.72);
}

.shop-grid div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.shop-grid p {
  margin: 0;
  font-size: 14px;
}

.shop-grid strong {
  margin-top: auto;
  font-weight: 400;
}

.shop-all {
  display: inline-block;
  margin-top: 30px;
}

.reviews-grid article {
  min-height: 260px;
}

.reviews-grid p {
  margin: 0 0 36px;
  color: var(--ink);
  font-size: 18px;
}

.case-card {
  background: var(--paper);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 72px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--muted);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin: 0;
  padding: 0 0 24px;
}

.flow-shell {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 23, 20, 0.36);
}

.flow-shell.is-open {
  display: flex;
}

.flow-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  overflow: auto;
  padding: 42px;
  background: var(--page);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.close-button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.progress-track {
  height: 2px;
  margin: 0 54px 36px 0;
  overflow: hidden;
  background: var(--line);
}

.progress-fill {
  display: block;
  width: 12%;
  height: 100%;
  background: var(--ink);
  transition: width 240ms ease;
}

.flow-step {
  display: none;
}

.flow-step.is-active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.form-grid .form-note,
.form-grid .primary-action {
  grid-column: 1 / -1;
}

.stacked-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

input {
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  background: var(--page);
  color: var(--ink);
  border: 1px solid var(--line-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.check-row {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
}

.check-row input {
  min-height: auto;
  margin-top: 4px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.choice-button,
.style-option {
  min-height: 104px;
  padding: 18px;
  text-align: left;
  background: var(--page);
  color: var(--ink);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.choice-button strong,
.style-option strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 400;
}

.choice-button span,
.style-option span {
  color: var(--muted);
  font-size: 13px;
}

.choice-button.is-selected,
.style-option.is-selected {
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.generation-state {
  min-height: 340px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.spark {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border: 1px solid var(--ink);
  transform: rotate(45deg);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.35;
    transform: rotate(45deg) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.04);
  }
}

.generation-state ul {
  padding: 0;
  margin: 24px 0 0;
  color: var(--muted);
  list-style: none;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.insight-grid > div,
.conversion-panel {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insight-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-grid strong {
  font-size: 19px;
  font-weight: 400;
}

.conversion-panel {
  border: 1px solid var(--line);
}

.conversion-panel h3 {
  margin-bottom: 8px;
}

.style-choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.style-option {
  display: grid;
  min-height: 240px;
  align-content: end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: var(--page);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}

.style-option span {
  color: rgba(255, 255, 255, 0.82);
}

.recommendations {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 0;
  margin: 26px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.recommendation-card {
  display: grid;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.recommendation-card.is-primary {
  background: var(--paper);
}

.recommendation-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.75);
}

.recommendation-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.recommendation-label {
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  color: var(--ink);
  font-weight: 400;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 20px;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.8);
}

.product-copy {
  display: grid;
  gap: 18px;
}

.detail-block {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.detail-block h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: none;
  width: min(420px, 100%);
  height: 100vh;
  padding: 76px 26px 26px;
  background: var(--page);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cart-drawer.is-open {
  display: block;
}

.cart-product {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 22px 0;
}

.cart-product img {
  aspect-ratio: 1;
  object-fit: cover;
}

.included-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  color: var(--muted);
  list-style: none;
}

.included-list li::before {
  content: "+";
  margin-right: 8px;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 24px;
  }

  .top-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero,
  .story-section,
  .faq-section,
  .section-heading,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .story-section,
  .code-section,
  .shop-section,
  .reviews-section,
  .faq-section {
    padding: 64px 24px;
  }

  .hero {
    min-height: auto;
    gap: 42px;
  }

  .birth-card {
    min-height: 420px;
  }

  .story-columns,
  .code-grid,
  .shop-grid,
  .reviews-grid,
  .recommendations,
  .insight-grid,
  .style-choice-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 10px;
  }

  .flow-shell {
    align-items: stretch;
    padding: 0;
  }

  .flow-panel {
    max-height: 100vh;
    padding: 32px 20px;
  }

  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .primary-action,
  .secondary-action,
  .secondary-link {
    width: 100%;
  }

  .button-row {
    display: grid;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Final homepage v2 overrides */
body,
h1,
h2,
h3,
button,
input {
  font-family: Inter, "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

.aesop-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.58fr);
  grid-template-areas:
    "image copy"
    "dots copy";
  gap: 22px 72px;
  align-content: center;
}

.hero-image-frame {
  grid-area: image;
  min-height: min(68vh, 680px);
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: min(68vh, 680px);
  object-fit: cover;
  filter: saturate(0.82);
}

.aesop-hero .hero-copy {
  grid-area: copy;
}

.hero-dots {
  grid-area: dots;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--soft);
  border-radius: 50%;
}

.hero-dot.is-active {
  background: var(--ink);
  border-color: var(--ink);
}

.story-longform {
  max-width: 760px;
  margin: 42px 0 34px;
}

.story-longform p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.9;
}

.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
  background: #f4f1ec;
}

.partner-strip {
  display: grid;
  align-items: center;
  min-height: 48vh;
  margin-top: 64px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-logos span {
  display: grid;
  min-height: 118px;
  place-items: center;
  color: var(--soft);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 72px;
  padding: 54px 40px 64px;
  background: var(--night);
  color: var(--page);
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a {
  color: var(--page);
}

.site-footer h2 {
  max-width: 420px;
  font-size: 28px;
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer nav div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h3 {
  padding-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.footer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-form input {
  min-height: 48px;
  padding: 0;
  background: transparent;
  color: var(--page);
  border: 0;
}

.footer-form button {
  background: transparent;
  color: var(--page);
  border: 0;
}

@media (max-width: 1020px) {
  .aesop-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .aesop-hero {
    grid-template-areas:
      "image"
      "dots"
      "copy";
  }

  .hero-image-frame,
  .hero-image-frame img {
    min-height: 420px;
  }

  .reviews-grid,
  .partner-logos,
  .site-footer nav {
    grid-template-columns: 1fr;
  }
}
