:root {
  color-scheme: light;
  --paper: #f4eee5;
  --paper-deep: #e9dfd2;
  --paper-light: #fbf8f2;
  --ink: #1c2926;
  --ink-soft: #52615c;
  --forest: #173d37;
  --forest-deep: #102c28;
  --coral: #dd6254;
  --amber: #efb756;
  --sage: #a3b3a7;
  --line: rgba(28, 41, 38, .16);
  --white: #fff;
  --shell: min(1400px, calc(100% - 48px));
  --radius: 28px;
  --shadow: 0 30px 80px rgba(33, 38, 34, .12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

section[id] {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

figure,
p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: #fff;
  background: var(--forest-deep);
  border-radius: 99px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 16px 0 0;
  pointer-events: none;
}

.header-shell {
  width: var(--shell);
  min-height: 82px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 24px;
  background: rgba(251, 248, 242, .9);
  box-shadow: 0 18px 50px rgba(33, 38, 34, .09);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(28, 41, 38, .08);
}

.brand-mark img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 21px;
  letter-spacing: .04em;
}

.brand-copy small {
  color: var(--ink-soft);
  font: 600 9px/1.2 Inter, sans-serif;
  letter-spacing: .18em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 11px 13px;
  color: var(--ink-soft);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  background: var(--forest);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: var(--forest);
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  width: var(--shell);
  min-height: 790px;
  margin: 22px auto 0;
  padding: clamp(52px, 6vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(44px, 6vw, 100px);
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 183, 86, .22), transparent 31%),
    var(--forest-deep);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -94px;
  left: -94px;
  border: 1px solid rgba(239, 183, 86, .33);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(239, 183, 86, .05), 0 0 0 62px rgba(239, 183, 86, .025);
}

.eyebrow {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

.hero h1 {
  margin-top: 24px;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: clamp(46px, 5.2vw, 82px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.hero h1 span {
  color: #f5e5cb;
  font-size: .68em;
}

.hero-intro {
  max-width: 620px;
  margin-top: 32px;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 2;
}

.hero-notes {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-notes span {
  padding: 10px 15px;
  color: #f6ead8;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 99px;
  font-size: 12px;
}

.hero-media {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.55fr .72fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.hero-media figure {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0d2220;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.hero-media figure:hover img {
  transform: scale(1.035);
}

.hero-main {
  grid-row: 1 / 3;
}

.hero-main img {
  object-position: 53% center;
}

.hero-rain img {
  object-position: center 35%;
}

.hero-media figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 15px;
  background: rgba(8, 28, 25, .56);
  backdrop-filter: blur(12px);
  font-size: 12px;
}

.hero-main figcaption b {
  color: var(--amber);
}

.brand-ribbon {
  width: var(--shell);
  margin: 20px auto 0;
  padding: 21px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-ribbon > p {
  font-family: "Songti SC", STSong, serif;
  font-size: 26px;
}

.brand-ribbon div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-ribbon i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.section {
  width: var(--shell);
  margin: 0 auto;
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: end;
  gap: 8vw;
}

.section h2,
.travel-section h2,
.family-section h2,
.creator-section h2,
.about-section h2 {
  margin-top: 20px;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.section-heading > p,
.food-intro > p:last-child,
.family-heading > p:last-child,
.travel-copy > p,
.growth-text p,
.creator-copy > p,
.geo-copy p,
.about-brand p,
.faq p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

.story-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .4);
}

.story-wide {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
}

.story-card figure {
  min-height: 320px;
  overflow: hidden;
}

.story-wide figure {
  min-height: 470px;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  padding: 34px;
}

.story-wide .story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  background: var(--paper-light);
}

.story-copy > span,
.food-card span,
.family-moments span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.story-copy h3,
.food-card h3,
.geo-copy h3 {
  margin: 14px 0;
  font-family: "Songti SC", STSong, serif;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.3;
}

.story-copy p,
.food-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.travel-section {
  min-height: 850px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  color: #fff;
  background: var(--forest-deep);
}

.travel-image {
  position: relative;
  min-height: 850px;
  overflow: hidden;
}

.travel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--forest-deep));
}

.travel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-stamp {
  position: absolute;
  z-index: 2;
  bottom: 52px;
  left: 52px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .18em;
}

.travel-copy {
  padding: 120px clamp(36px, 7vw, 118px) 90px clamp(36px, 6vw, 96px);
  align-self: center;
}

.travel-copy .eyebrow {
  color: var(--amber);
}

.travel-copy h2 {
  color: #fff;
}

.travel-copy > p {
  margin-top: 30px;
  color: rgba(255, 255, 255, .65);
}

.travel-list {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.travel-list > div {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.travel-list dt {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.travel-list dd {
  display: grid;
  gap: 6px;
}

.travel-list b {
  font-size: 16px;
}

.travel-list span {
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
  line-height: 1.7;
}

.food-section {
  padding-top: 150px;
}

.food-intro {
  max-width: 920px;
}

.food-intro > p:last-child {
  max-width: 760px;
  margin-top: 26px;
}

.food-gallery {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.food-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-deep);
}

.food-large {
  grid-row: 1 / 3;
}

.food-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(10, 24, 22, .94));
}

.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-card > div {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  color: #fff;
}

.food-card h3 {
  margin: 9px 0 5px;
  color: #fff;
  font-size: clamp(22px, 2.1vw, 34px);
}

.food-card p {
  color: rgba(255, 255, 255, .62);
}

.family-section {
  padding: 140px max(24px, calc((100vw - 1400px) / 2));
  background: var(--paper-light);
}

.family-heading {
  max-width: 860px;
}

.family-heading > p:last-child {
  margin-top: 28px;
}

.family-moments {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 24px;
}

.family-moments figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.family-primary {
  height: 650px;
}

.family-secondary {
  height: 510px;
}

.family-moments img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-moments figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px 20px;
  display: grid;
  gap: 7px;
  color: #fff;
  border-radius: 18px;
  background: rgba(15, 36, 32, .74);
  backdrop-filter: blur(12px);
}

.family-moments b {
  font-family: "Songti SC", STSong, serif;
  font-size: 23px;
  font-weight: 500;
}

.growth-section {
  padding-top: 150px;
}

.growth-layout {
  margin-top: 60px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: stretch;
  gap: 70px;
}

.growth-portrait {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius);
}

.growth-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growth-portrait figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  color: #fff;
  border-radius: 16px;
  background: rgba(15, 36, 32, .74);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.growth-text {
  display: grid;
  align-content: stretch;
}

.growth-text article {
  padding: 44px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.growth-text article:last-child {
  border-bottom: 1px solid var(--line);
}

.growth-text > article > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.growth-text h3 {
  margin: 0 0 12px;
  font-family: "Songti SC", STSong, serif;
  font-size: 30px;
  font-weight: 500;
}

.creator-section {
  padding: 140px max(24px, calc((100vw - 1400px) / 2));
  color: #fff;
  background: var(--forest-deep);
}

.creator-panel {
  display: grid;
  grid-template-columns: 1fr .88fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 36px;
  background: #163731;
}

.creator-copy {
  padding: clamp(48px, 6vw, 90px);
}

.creator-copy .eyebrow,
.geo-copy .eyebrow {
  color: var(--amber);
}

.creator-copy h2 {
  color: #fff;
}

.creator-copy > p {
  margin-top: 28px;
  color: rgba(255, 255, 255, .64);
}

.creator-tags {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.creator-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 99px;
  color: #f8e8d3;
  font-size: 12px;
}

.creator-panel figure {
  position: relative;
  min-height: 610px;
}

.creator-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-panel figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(12, 30, 27, .72);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.geo-copy {
  margin: 80px 0 0 25%;
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, .17);
}

.geo-copy h3 {
  max-width: 900px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
}

.geo-copy p {
  max-width: 980px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .58);
}

.geo-regions {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.geo-regions article {
  min-height: 235px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.geo-regions span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.geo-regions h4 {
  margin: 18px 0 0;
  color: #fff;
  font-family: "Songti SC", STSong, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.geo-regions p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  line-height: 1.85;
}

.about-section {
  width: var(--shell);
  margin: 0 auto;
  padding: 140px 0 90px;
}

.about-brand {
  padding: clamp(40px, 5vw, 76px);
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 70px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--paper-light);
}

.about-logo {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(221, 98, 84, .22);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 20px rgba(221, 98, 84, .05), 0 0 0 40px rgba(221, 98, 84, .025);
}

.about-logo img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.about-brand h2 {
  font-size: clamp(40px, 4vw, 66px);
}

.about-brand p {
  margin-top: 22px;
}

.faq {
  margin-top: 100px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.faq-title h2 {
  font-size: clamp(38px, 4vw, 62px);
}

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

.faq details {
  padding: 25px 4px;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding-right: 42px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 750;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: -4px;
  color: var(--coral);
  font-size: 27px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 18px 50px 0 0;
}

.site-footer {
  width: var(--shell);
  margin: 0 auto 24px;
  overflow: hidden;
  color: #fff;
  border-radius: 34px;
  background: var(--ink);
}

.footer-main {
  min-height: 230px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
  gap: 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.footer-brand div {
  display: grid;
  gap: 4px;
}

.footer-brand b {
  font-size: 23px;
}

.footer-brand span,
.footer-main p,
.footer-bottom {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom {
  padding: 19px 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1240px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .site-nav a {
    padding: 10px 8px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
    gap: 50px;
  }

  .hero-media {
    min-height: 540px;
  }
}

@media (max-width: 1020px) {
  html {
    scroll-padding-top: 90px;
  }

  .header-shell {
    min-height: 72px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-mark img {
    width: 44px;
    height: 44px;
  }

  .nav-toggle {
    position: relative;
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 96px;
    right: 16px;
    left: 16px;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 24px;
    background: rgba(251, 248, 242, .98);
    box-shadow: var(--shadow);
    transition: .25s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    padding: 14px 15px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    min-height: 620px;
  }

  .section-heading,
  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .travel-section {
    grid-template-columns: 1fr;
  }

  .travel-image,
  .travel-section {
    min-height: 620px;
  }

  .travel-image::after {
    background: linear-gradient(180deg, transparent 55%, var(--forest-deep));
  }

  .travel-copy {
    padding: 80px 8vw 100px;
  }

  .food-gallery,
  .family-moments,
  .growth-layout,
  .creator-panel {
    grid-template-columns: 1fr;
  }

  .food-gallery {
    grid-template-rows: auto;
  }

  .food-large {
    grid-row: auto;
  }

  .food-card,
  .food-large {
    min-height: 500px;
  }

  .family-primary,
  .family-secondary {
    height: min(68vw, 640px);
  }

  .growth-portrait {
    min-height: min(110vw, 760px);
  }

  .creator-panel figure {
    min-height: 540px;
  }

  .geo-copy {
    margin-left: 10%;
  }

  .about-brand {
    grid-template-columns: 180px 1fr;
    gap: 50px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 20px);
    --radius: 22px;
  }

  .site-header {
    padding-top: 8px;
  }

  .header-shell {
    padding: 8px 9px 8px 12px;
    border-radius: 18px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .site-nav {
    top: 86px;
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
  }

  .hero {
    margin-top: 12px;
    padding: 58px 22px 24px;
    gap: 42px;
    border-radius: 28px;
  }

  .hero h1 {
    font-size: clamp(40px, 13.4vw, 64px);
  }

  .hero-intro {
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-media {
    min-height: 630px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.45fr .85fr;
  }

  .hero-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .hero-city,
  .hero-rain {
    grid-row: 2;
  }

  .hero-main figcaption {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-ribbon {
    padding: 20px 10px;
    display: grid;
  }

  .brand-ribbon div {
    gap: 9px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .section,
  .family-section,
  .creator-section,
  .about-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

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

  .story-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .story-card figure,
  .story-wide figure {
    min-height: 320px;
  }

  .story-copy,
  .story-wide .story-copy {
    padding: 28px;
  }

  .travel-image {
    min-height: 520px;
  }

  .travel-copy {
    padding: 74px 24px 88px;
  }

  .food-card,
  .food-large {
    min-height: 430px;
  }

  .food-card > div {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .family-primary,
  .family-secondary {
    height: 115vw;
    max-height: 600px;
  }

  .growth-layout {
    gap: 34px;
  }

  .growth-portrait {
    min-height: 125vw;
  }

  .growth-text article {
    padding: 32px 0;
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .creator-panel {
    border-radius: 28px;
  }

  .creator-copy {
    padding: 54px 25px;
  }

  .creator-panel figure {
    min-height: 105vw;
  }

  .geo-copy {
    margin: 65px 0 0;
    padding-left: 22px;
  }

  .geo-regions {
    grid-template-columns: 1fr;
  }

  .about-brand {
    padding: 48px 24px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-logo {
    width: 150px;
  }

  .faq {
    margin-top: 75px;
  }

  .footer-main {
    padding: 38px 26px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding: 18px 26px;
    flex-direction: column;
    gap: 5px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
