:root {
  --sky: #76c9f2;
  --sky-deep: #2d8fbe;
  --sky-soft: #e9f8ff;
  --pink: #f3b8d0;
  --pink-deep: #c95583;
  --pink-soft: #fff0f6;
  --red: #f4777d;
  --orange: #f6a45f;
  --yellow: #f6d469;
  --green: #72cd91;
  --violet: #9b91dd;
  --ink: #243440;
  --ink-soft: #60717e;
  --white: #ffffff;
  --surface: #fafdff;
  --line: rgba(36, 52, 64, 0.16);
  --shadow: 0 18px 52px rgba(39, 96, 128, 0.14);
  --rainbow: linear-gradient(90deg, #f4777d 0 14%, #f6a45f 14% 28%, #f6d469 28% 42%, #72cd91 42% 57%, #76c9f2 57% 72%, #9b91dd 72% 86%, #f3b8d0 86% 100%);
  --header-height: 78px;
  --shell: min(1240px, calc(100% - 80px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--surface);
}

html[data-language="zh"] [data-lang="en"],
html[data-language="en"] [data-lang="zh"] {
  display: none !important;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--sky-deep);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  display: flex;
  margin-bottom: 48px;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.2;
}

.section-summary {
  width: min(420px, 42%);
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.rainbow-line {
  height: 7px;
  background: var(--rainbow);
  background-size: 180% 100%;
  animation: rainbow-flow 12s linear infinite;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  background: var(--sky-deep);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.button-outline {
  color: var(--ink);
  border-color: currentColor;
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 5px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  transition: height 220ms ease, color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.nav-shell {
  display: flex;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  min-width: 148px;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-size: 20px;
}

.brand-name small {
  margin-top: 5px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a,
.nav-contact {
  position: relative;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after,
.nav-contact::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.nav-contact:hover::after,
.nav-contact.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-toggle {
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid currentColor;
  border-radius: 17px;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.menu-toggle,
.mobile-panel {
  display: none;
}

.site-header.is-scrolled,
body:not(.has-image-hero) .site-header {
  height: 68px;
  color: var(--ink);
  background: rgba(250, 253, 255, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand-lockup img,
body:not(.has-image-hero) .site-header .brand-lockup img {
  filter: none;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 640px;
  height: 90svh;
  max-height: 900px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--sky-deep);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  animation: hero-settle 1.2s ease-out both;
}

.home-hero .hero-media {
  background-image: url("https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=high-end%20realistic%20lifestyle%20photograph%2C%20an%20Asian%20woman%20sitting%20in%20a%20sunlit%20contemporary%20home%20with%20a%20joyful%20golden%20retriever%20and%20a%20white%20cat%2C%20smooth%20plain%20sky%20blue%20wall%20on%20the%20left%20completely%20empty%20and%20unmarked%2C%20pale%20pink%20room%20on%20the%20right%2C%20soft%20natural%20rainbow%20light%20on%20the%20wall%2C%20white%20sofa%2C%20clean%20daylight%2C%20wide%20composition%2C%20people%20and%20pets%20centered%20right%2C%20generous%20empty%20blue%20wall%20on%20the%20left%20for%20overlay%20copy%2C%20no%20lettering%2C%20no%20words%2C%20no%20typography%2C%20no%20signage%2C%20no%20poster%2C%20no%20logo%2C%20no%20watermark&image_size=landscape_16_9");
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(27, 48, 61, 0.28);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  padding-bottom: 86px;
}

.hero-content-inner {
  max-width: 790px;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.02;
}

.hero h1 small {
  display: block;
  margin-top: 13px;
  font-family: Arial, sans-serif;
  font-size: 0.38em;
  font-weight: 700;
  line-height: 1.25;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  right: max(40px, calc((100% - 1240px) / 2));
  bottom: 82px;
  z-index: 3;
}

.hero > .rainbow-line,
.page-hero > .rainbow-line {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
}

/* Home */
.philosophy-intro {
  padding: 118px 0;
  background: var(--surface);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 80px;
}

.philosophy-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.16;
}

.philosophy-copy > p {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

.dual-growth {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.growth-panel {
  min-height: 540px;
  padding: 82px max(40px, calc((100vw - 1240px) / 2));
}

.growth-panel.sky {
  padding-right: 8vw;
  background: var(--sky-soft);
}

.growth-panel.pink {
  padding-left: 8vw;
  background: var(--pink-soft);
}

.growth-direction {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.growth-direction svg {
  width: 22px;
}

.growth-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.2;
}

.growth-panel p {
  max-width: 530px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.chapters-section {
  padding: 118px 0;
}

.chapter-list {
  border-top: 1px solid var(--line);
}

.chapter-row {
  display: grid;
  grid-template-columns: 88px 0.75fr 1.25fr;
  gap: 34px;
  padding: 38px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.chapter-number {
  font-family: Georgia, serif;
  font-size: 32px;
}

.chapter-row:nth-child(1) .chapter-number {
  color: var(--sky-deep);
}

.chapter-row:nth-child(2) .chapter-number {
  color: var(--pink-deep);
}

.chapter-row:nth-child(3) .chapter-number {
  color: #578d66;
}

.chapter-row h3 {
  margin: 0;
  font-size: 24px;
}

.chapter-row p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.featured-plans {
  padding: 112px 0 124px;
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 6px;
  color: var(--white);
  background: var(--sky-soft);
}

.feature-card:nth-child(n + 2) {
  min-height: 440px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-card:hover img {
  transform: scale(1.03);
}

.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(28, 49, 61, 0.22);
}

.feature-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.feature-caption span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
}

.feature-caption h3 {
  margin: 0;
  font-size: 28px;
}

.promise-band {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
}

.promise-band .section-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.promise-band h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.15;
}

.promise-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(36, 52, 64, 0.3);
}

.promise-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 24px 0;
  gap: 18px;
  border-bottom: 1px solid rgba(36, 52, 64, 0.3);
}

.promise-list svg {
  width: 22px;
}

.promise-list h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.promise-list p {
  margin: 0;
  color: rgba(36, 52, 64, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.cta-band {
  padding: 90px 0;
  background: var(--pink-soft);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.22;
}

/* Page heroes */
.page-hero {
  position: relative;
  display: flex;
  min-height: 610px;
  height: 82svh;
  max-height: 820px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--sky-deep);
}

.brand-hero .page-hero-media {
  background-image: url("https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=bright%20emotional%20editorial%20photograph%20of%20an%20Asian%20man%20and%20a%20border%20collie%20gently%20planting%20a%20small%20seedling%20together%20in%20a%20sunlit%20garden%20studio%2C%20sky%20blue%20and%20pale%20pink%20details%2C%20subtle%20rainbow%20sunlight%20refraction%2C%20authentic%20companionship%2C%20highly%20realistic%2C%20wide%20composition%2C%20clear%20space%20for%20headline%2C%20no%20text%2C%20no%20logo&image_size=landscape_16_9");
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  padding-bottom: 78px;
}

.page-hero-content h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.14;
}

.page-hero-index {
  position: absolute;
  right: max(40px, calc((100% - 1240px) / 2));
  bottom: 84px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
}

.story-manifesto {
  padding: 120px 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 80px;
}

.manifesto-copy {
  max-width: 850px;
}

.manifesto-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.2;
}

.manifesto-copy p {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.9;
}

.story-chapters {
  background: var(--white);
}

.story-chapter {
  display: grid;
  min-height: 600px;
  grid-template-columns: 1fr 1fr;
}

.story-chapter:nth-child(even) .story-chapter-media {
  order: 2;
}

.story-chapter-media {
  min-height: 560px;
  overflow: hidden;
}

.story-chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-chapter-copy {
  display: flex;
  padding: 76px max(40px, calc((100vw - 1240px) / 2));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.story-chapter:nth-child(1) .story-chapter-copy {
  background: var(--sky-soft);
}

.story-chapter:nth-child(2) .story-chapter-copy {
  background: var(--pink-soft);
}

.story-chapter:nth-child(3) .story-chapter-copy {
  background: #effbef;
}

.story-chapter-copy .chapter-number {
  margin-bottom: 40px;
}

.story-chapter-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.2;
}

.story-chapter-copy p {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.story-chapter-copy strong {
  color: var(--ink);
}

.identity-section {
  padding: 118px 0;
}

.identity-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.identity-mark {
  display: grid;
  min-height: 480px;
  padding: 56px;
  place-items: center;
  border-radius: 6px;
  background: var(--pink-soft);
}

.identity-mark img {
  max-width: 360px;
}

.identity-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 52px);
}

.identity-copy > p {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.symbol-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.symbol-list div {
  display: grid;
  grid-template-columns: 18px 110px 1fr;
  padding: 17px 0;
  align-items: start;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.symbol-list i {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
}

.symbol-list div:nth-child(1) i {
  background: var(--sky);
}

.symbol-list div:nth-child(2) i {
  background: var(--pink);
}

.symbol-list div:nth-child(3) i {
  background: var(--green);
}

.symbol-list span:last-child {
  color: var(--ink-soft);
}

.slogan-section {
  padding: 106px 0 118px;
  background: var(--ink);
  color: var(--white);
}

.slogan-primary {
  display: flex;
  margin-bottom: 72px;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.slogan-primary h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.12;
}

.slogan-primary p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.slogan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.slogan-item {
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.slogan-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.slogan-item h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.slogan-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

/* Products */
.color-hero {
  padding: 170px 0 90px;
  background: var(--sky-soft);
}

.color-hero.pink {
  background: var(--pink-soft);
}

.color-hero .section-shell {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.color-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 6vw, 74px);
  line-height: 1.12;
}

.color-hero-aside p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.catalog-section {
  padding: 48px 0 120px;
  background: var(--white);
}

.filter-bar {
  display: flex;
  margin-bottom: 42px;
  padding-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-button {
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 19px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.result-count {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 18px;
}

.product-card {
  min-width: 0;
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--sky-soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 3px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 9px;
  font-weight: 900;
}

.favorite-button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 16px rgba(36, 52, 64, 0.12);
  transition: color 180ms ease, transform 180ms ease;
}

.favorite-button:hover {
  transform: scale(1.06);
}

.favorite-button.is-favorite {
  color: var(--pink-deep);
}

.favorite-button.is-favorite svg {
  fill: currentColor;
}

.favorite-button svg {
  width: 19px;
  height: 19px;
}

.product-info {
  padding-top: 18px;
}

.product-meta {
  display: flex;
  margin-bottom: 8px;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
}

.product-info h2 {
  margin-bottom: 8px;
  font-size: 21px;
}

.product-info > p {
  min-height: 48px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.growth-tip {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.growth-tip summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

.growth-tip summary::-webkit-details-marker {
  display: none;
}

.growth-tip summary::after {
  content: "+";
  font-size: 18px;
}

.growth-tip[open] summary::after {
  content: "−";
}

.growth-tip p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.compliance-note {
  display: grid;
  margin-top: 90px;
  padding: 46px;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  border-radius: 6px;
  background: var(--pink-soft);
}

.compliance-note svg {
  width: 28px;
}

.compliance-note h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.compliance-note p {
  max-width: 900px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

/* About */
.about-visual {
  padding: 148px 0 0;
  background: var(--pink-soft);
}

.about-heading {
  padding-bottom: 70px;
}

.about-heading h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.14;
}

.about-hero-image {
  position: relative;
  width: min(1480px, calc(100% - 40px));
  height: min(70vh, 720px);
  min-height: 500px;
  margin-inline: auto;
  overflow: hidden;
}

.about-hero-image img {
  height: 100%;
  object-fit: cover;
}

.about-hero-image .rainbow-line {
  position: absolute;
  inset: auto 0 0;
}

.origin-section {
  padding: 120px 0;
}

.origin-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 90px;
}

.origin-copy {
  max-width: 820px;
}

.origin-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(36px, 4vw, 52px);
}

.origin-copy p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.95;
}

.values-section {
  padding: 108px 0 120px;
  background: var(--sky-soft);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(36, 52, 64, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
}

.value-card:nth-child(2) {
  background: rgba(255, 240, 246, 0.86);
}

.value-card:nth-child(3) {
  background: rgba(239, 251, 239, 0.86);
}

.value-card:nth-child(4) {
  background: rgba(255, 248, 219, 0.86);
}

.value-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 68px;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.method-section {
  display: grid;
  min-height: 660px;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--ink);
}

.method-image {
  min-height: 600px;
  overflow: hidden;
}

.method-image img {
  height: 100%;
  object-fit: cover;
}

.method-copy {
  display: flex;
  padding: 74px max(40px, calc((100vw - 1240px) / 2));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.method-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 52px);
}

.method-copy > p {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.method-steps {
  display: grid;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.method-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.method-steps span:first-child {
  color: var(--sky);
  font-family: Georgia, serif;
}

.standards-section {
  padding: 110px 0;
}

.standards-list {
  border-top: 1px solid var(--line);
}

.standard-row {
  display: grid;
  grid-template-columns: 70px 0.8fr 1.2fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.standard-row > span {
  color: var(--pink-deep);
  font-family: Georgia, serif;
  font-size: 24px;
}

.standard-row h3 {
  margin: 0;
  font-size: 19px;
}

.standard-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

/* Contact */
.contact-hero {
  padding: 164px 0 88px;
  background: var(--pink-soft);
}

.contact-heading h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(46px, 6vw, 74px);
  line-height: 1.14;
}

.contact-email-hero {
  display: flex;
  margin-top: 56px;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 28px;
}

.contact-main {
  padding: 110px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.contact-aside h2 {
  margin-bottom: 48px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.25;
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-details div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  color: var(--ink-soft);
  font-size: 11px;
}

.contact-details p,
.contact-details a {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 30px;
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-row > label,
.form-row > legend {
  display: block;
  margin-bottom: 9px;
  padding: 0;
  font-size: 13px;
  font-weight: 800;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 52, 64, 0.3);
  border-radius: 5px;
  outline: 0;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row textarea {
  min-height: 146px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 3px rgba(118, 201, 242, 0.2);
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: #b72751;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #9f2147;
  font-size: 11px;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.field-meta > span:last-child {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 11px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.choice-item {
  position: relative;
}

.choice-item input {
  position: absolute;
  opacity: 0;
}

.choice-item span {
  display: grid;
  min-height: 44px;
  padding: 8px 10px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
  text-align: center;
}

.choice-item input:checked + span {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.choice-item input:focus-visible + span {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--sky-deep);
}

.consent-row a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-note {
  margin: -14px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.6;
}

.contact-visual {
  position: relative;
  height: min(68vh, 680px);
  min-height: 500px;
  overflow: hidden;
}

.contact-visual img {
  height: 100%;
  object-fit: cover;
}

.contact-visual p {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  margin: 0;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(34px, 6vw, 70px);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 16px rgba(36, 52, 64, 0.4);
}

.contact-visual .rainbow-line {
  position: absolute;
  inset: auto 0 0;
}

/* Legal and accessibility */
.legal-hero {
  padding: 154px 0 72px;
  background: var(--sky-soft);
}

.legal-hero.pink {
  background: var(--pink-soft);
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 66px);
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-layout {
  display: grid;
  padding: 80px 0 112px;
  grid-template-columns: 260px minmax(0, 780px);
  gap: 80px;
}

.legal-nav {
  position: sticky;
  top: 100px;
  display: grid;
  align-self: start;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.legal-nav a:hover {
  color: var(--ink);
}

.legal-content section {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-callout {
  margin: 26px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--sky);
  background: var(--sky-soft);
}

.legal-callout p {
  margin: 0;
}

.data-table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.data-table th,
.data-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.data-table th {
  background: var(--pink-soft);
}

/* Footer */
.site-footer {
  color: var(--white);
  background: var(--ink);
}

.site-footer > .rainbow-line {
  height: 6px;
}

.footer-main {
  display: grid;
  width: var(--shell);
  min-height: 330px;
  margin-inline: auto;
  padding: 66px 0 46px;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.8fr;
  gap: 44px;
}

.footer-brand .brand-lockup {
  color: var(--white);
}

.footer-brand p {
  max-width: 280px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.footer-column a,
.footer-column button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  font-size: 12px;
  text-align: left;
}

.footer-column a:hover,
.footer-column button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-statement {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.42;
  text-align: right;
}

.footer-bottom {
  display: flex;
  width: var(--shell);
  margin-inline: auto;
  padding: 20px 0 24px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

/* Consent, dialog and feedback */
.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 300;
  display: none;
  max-width: 760px;
  margin-inline: auto;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(250, 253, 255, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.consent-banner.is-visible {
  display: flex;
}

.consent-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.consent-banner a {
  color: var(--ink);
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.consent-actions button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.consent-actions .accept {
  color: var(--white);
  background: var(--ink);
}

.privacy-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.privacy-dialog::backdrop {
  background: rgba(26, 45, 57, 0.5);
  backdrop-filter: blur(4px);
}

.dialog-head,
.dialog-body,
.dialog-actions {
  padding: 22px 24px;
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.dialog-head h2 {
  margin: 0;
  font-size: 22px;
}

.dialog-body > p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.preference-row {
  display: flex;
  padding: 17px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.preference-row h3 {
  margin-bottom: 4px;
  font-size: 14px;
}

.preference-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border-radius: 13px;
  background: #c9d2d8;
  transition: background-color 180ms ease;
}

.switch span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background: var(--white);
  transition: transform 180ms ease;
}

.switch input:checked + span {
  background: var(--sky-deep);
}

.switch input:checked + span::after {
  transform: translateX(20px);
}

.switch input:disabled + span {
  background: var(--ink);
  opacity: 0.7;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  display: flex;
  min-width: 220px;
  padding: 14px 17px;
  align-items: center;
  gap: 11px;
  border-radius: 5px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast svg {
  width: 17px;
}

.toast span {
  font-size: 12px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1.01);
  }
}

@keyframes rainbow-flow {
  to {
    background-position: 180% 0;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 52px, 1240px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .nav-actions {
    gap: 12px;
  }

  .hero-scroll,
  .page-hero-index {
    right: 26px;
  }

  .growth-panel,
  .story-chapter-copy,
  .method-copy {
    padding: 64px 42px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    gap: 60px;
  }

  .choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 70px;
    --shell: calc(100% - 40px);
  }

  .desktop-nav,
  .nav-contact {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .site-header.is-menu-open {
    height: 70px;
    color: var(--ink);
    background: var(--surface);
    box-shadow: none;
  }

  .mobile-panel {
    position: fixed;
    inset: 70px 0 0;
    display: flex;
    padding: 28px 20px;
    flex-direction: column;
    justify-content: space-between;
    color: var(--ink);
    background: var(--surface);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }

  .site-header.is-menu-open .mobile-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-panel nav {
    display: grid;
  }

  .mobile-panel nav a {
    display: flex;
    padding: 15px 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 25px;
    font-weight: 700;
  }

  .mobile-panel nav svg {
    width: 20px;
  }

  .mobile-utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
  }

  .philosophy-grid,
  .manifesto-grid,
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .dual-growth,
  .story-chapter,
  .identity-grid,
  .method-section {
    grid-template-columns: 1fr;
  }

  .story-chapter:nth-child(even) .story-chapter-media {
    order: 0;
  }

  .chapter-row {
    grid-template-columns: 62px 1fr;
  }

  .chapter-row p {
    grid-column: 2;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card:first-child {
    grid-column: 1 / 3;
  }

  .promise-band .section-shell {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .slogan-primary {
    align-items: start;
    flex-direction: column;
  }

  .color-hero .section-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-aside .eyebrow {
    grid-column: 1 / 3;
    margin-bottom: -10px;
  }

  .contact-aside h2 {
    margin: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-statement {
    grid-column: 1 / 4;
    text-align: left;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .brand-lockup {
    min-width: auto;
  }

  .brand-lockup img {
    width: 40px;
    height: 40px;
  }

  .brand-name strong {
    font-size: 17px;
  }

  .language-toggle {
    min-width: 40px;
    padding: 0 8px;
  }

  .hero {
    min-height: 630px;
    height: 88svh;
  }

  .home-hero .hero-media {
    background-position: 62% center;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .philosophy-intro,
  .chapters-section,
  .featured-plans,
  .story-manifesto,
  .identity-section,
  .slogan-section,
  .origin-section,
  .values-section,
  .standards-section {
    padding: 76px 0;
  }

  .philosophy-copy > p,
  .origin-copy p {
    font-size: 15px;
  }

  .growth-panel,
  .story-chapter-copy,
  .method-copy {
    min-height: 480px;
    padding: 60px 15px;
  }

  .chapter-row {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .chapter-number {
    font-size: 25px;
  }

  .chapter-row h3 {
    font-size: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:first-child,
  .feature-card:nth-child(n + 2) {
    min-height: 410px;
    grid-column: auto;
  }

  .promise-band {
    padding: 76px 0;
  }

  .cta-band {
    padding: 70px 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 610px;
    height: 80svh;
  }

  .brand-hero .page-hero-media {
    background-position: 64% center;
  }

  .page-hero-content {
    padding-bottom: 68px;
  }

  .page-hero-index {
    display: none;
  }

  .story-chapter-media,
  .method-image {
    min-height: 390px;
  }

  .identity-mark {
    min-height: 350px;
    padding: 30px;
  }

  .symbol-list div {
    grid-template-columns: 16px 86px 1fr;
    gap: 10px;
  }

  .slogan-grid {
    grid-template-columns: 1fr;
  }

  .slogan-item,
  .slogan-item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .color-hero,
  .contact-hero,
  .legal-hero {
    padding: 132px 0 66px;
  }

  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .compliance-note {
    margin-top: 66px;
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .about-visual {
    padding-top: 126px;
  }

  .about-heading {
    padding-bottom: 48px;
  }

  .about-hero-image {
    width: 100%;
    min-height: 390px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 260px;
  }

  .value-card svg {
    margin-bottom: 44px;
  }

  .standard-row {
    grid-template-columns: 46px 1fr;
    gap: 18px;
  }

  .standard-row p {
    grid-column: 2;
  }

  .contact-email-hero {
    font-size: 20px;
  }

  .contact-main {
    padding: 76px 0;
  }

  .contact-aside {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-aside .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .form-split {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-visual {
    height: 500px;
    min-height: 0;
  }

  .contact-visual img {
    object-position: 60% center;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .footer-main {
    min-height: auto;
    padding: 54px 0 42px;
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand,
  .footer-statement {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .consent-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .toast {
    right: 15px;
    bottom: 15px;
    left: 15px;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
