/*
 * Domain Canyon editorial corporate layer.
 * Independent implementation using only local brand data and assets.
 */
:root {
  --editorial-paper: #f6f5f2;
  --editorial-white: #fff;
  --editorial-ink: #22252b;
  --editorial-muted: #73767d;
  --editorial-line: rgb(34 37 43 / .13);
  --editorial-line-soft: rgb(34 37 43 / .075);
  --editorial-shadow: 0 2.8rem 9rem rgb(20 22 27 / .10);
  --editorial-shadow-strong: 0 4rem 14rem rgb(20 22 27 / .18);
  --editorial-radius: clamp(2rem, 2.15vw, 4.4rem);
  --editorial-radius-small: clamp(1.4rem, 1.25vw, 2.5rem);
  --editorial-ease: cubic-bezier(.16, 1, .3, 1);
  --editorial-header-inset: clamp(1.2rem, 1.3vw, 2.4rem);
  --editorial-header-h: clamp(6.8rem, 4.8vw, 8.8rem);
}

html {
  scroll-padding-top: calc(var(--header-height) + 4rem);
  background: var(--editorial-paper);
}

body {
  background: var(--editorial-paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  content: '';
}

body.is-page-entering::before {
  animation: editorial-page-enter .82s var(--editorial-ease) forwards;
}

body.is-page-leaving::before {
  animation: editorial-page-leave .56s var(--editorial-ease) forwards;
}

@keyframes editorial-page-enter {
  from { transform: scaleY(1); transform-origin: top; }
  to { transform: scaleY(0); transform-origin: top; }
}

@keyframes editorial-page-leave {
  to { transform: scaleY(1); }
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: .25rem;
  pointer-events: none;
  background: transparent;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
  will-change: transform;
}

/* Header */
.site-header {
  height: calc(var(--editorial-header-h) + (var(--editorial-header-inset) * 2));
  padding: var(--editorial-header-inset) var(--page-gutter);
  transition: transform .58s var(--editorial-ease);
}

.site-header::before { display: none; }

.site-header__inner {
  height: var(--editorial-header-h);
  padding-inline: clamp(1.7rem, 1.8vw, 3.5rem);
  border-color: rgb(34 37 43 / .10);
  border-radius: 2.5rem;
  color: var(--ink);
  background: rgb(255 255 255 / .94);
  box-shadow: 0 1.2rem 5rem rgb(34 37 43 / .08);
  backdrop-filter: blur(24px) saturate(150%);
}

.site-header[data-theme='dark']:not(.is-scrolled):not(.is-menu-open) .site-header__inner {
  border-color: rgb(255 255 255 / .30);
  color: var(--white);
  background: rgb(22 24 29 / .30);
  box-shadow: none;
}

.site-header[data-theme='dark']:not(.is-scrolled):not(.is-menu-open) .site-header__logo {
  color: var(--white);
}

.site-header.is-scrolled .site-header__inner,
.site-header.is-menu-open .site-header__inner {
  color: var(--ink);
  background: rgb(255 255 255 / .97);
  box-shadow: 0 1.8rem 6rem rgb(34 37 43 / .12);
}

.site-header__logo {
  width: clamp(15rem, 10vw, 20rem);
  min-width: 0;
}

.site-header__logo svg { overflow: visible; }

.site-header__actions { gap: clamp(.65rem, .75vw, 1.3rem); }
.partner-mark { width: clamp(6rem, 4vw, 8.2rem); }
.social-link { width: 4rem; height: 4rem; }
.header-shortcut { min-width: clamp(10rem, 7.1vw, 13.8rem); height: 4.2rem; }
.menu-trigger { gap: 1rem; font-size: clamp(1.2rem, .82vw, 1.6rem); }
.menu-trigger::after {
  width: 1px;
  height: 2.3rem;
  margin-left: .4rem;
  opacity: .18;
  background: currentColor;
  content: '';
}

.menu-backdrop {
  background: rgb(25 27 32 / .32);
  backdrop-filter: blur(6px);
}

.mega-menu {
  top: 1.2rem;
  right: 1.2rem;
  max-height: calc(100dvh - 2.4rem);
  border: 1px solid var(--editorial-line);
  border-radius: 3.2rem;
  box-shadow: var(--editorial-shadow-strong);
}

.mega-menu.is-open {
  width: min(31vw, 52rem);
  height: min(78rem, calc(100dvh - 2.4rem));
}

.mega-menu.has-submenu.is-open { width: min(49vw, 86rem); }
.mega-menu__layout { width: min(49vw, 86rem); min-width: 70rem; padding: 9rem 3.5rem 3rem; }
.mega-menu__link,
.mega-menu__parent {
  min-height: 5rem;
  font-size: clamp(1.8rem, 1.35vw, 2.65rem);
  letter-spacing: -.02em;
}
.mega-menu__submenu-list a { font-size: 1.55rem; }

/* Shared editorial rhythm */
.section {
  padding-block: clamp(9rem, 9vw, 18rem);
}

.section--soft { background: #f0f0ed; }
.container { position: relative; }

.eyebrow {
  gap: 1.1rem;
  margin-bottom: clamp(2rem, 2vw, 3.6rem);
  font-size: clamp(1.05rem, .72vw, 1.35rem);
  letter-spacing: .15em;
}

.eyebrow::before {
  width: clamp(2.7rem, 2.5vw, 4.8rem);
  height: 1px;
  border-radius: 0;
}

.section-title {
  max-width: 15ch;
  font-size: clamp(4.2rem, 4.65vw, 9rem);
  line-height: .96;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.lead { line-height: 1.55; }

.cta-pill {
  width: auto;
  min-width: clamp(15rem, 11vw, 22rem);
  height: clamp(4.8rem, 3.55vw, 6.8rem);
  gap: 2rem;
  padding-inline: clamp(1.8rem, 1.5vw, 3rem);
  font-size: clamp(1.2rem, .82vw, 1.6rem);
  box-shadow: inset 0 0 0 0 var(--red);
}

.cta-pill:hover {
  transform: translateY(-.25rem);
  box-shadow: 0 1.5rem 4rem rgb(222 39 31 / .16);
}

/* Home hero */
.home-hero {
  min-height: 100svh;
  background: var(--ink);
}

.hero-slide::after {
  background:
    linear-gradient(90deg, rgb(13 15 19 / .78) 0%, rgb(13 15 19 / .26) 54%, rgb(13 15 19 / .10) 100%),
    linear-gradient(0deg, rgb(13 15 19 / .38), transparent 36%);
}

.hero-slide[data-theme='light']::after {
  background:
    linear-gradient(90deg, rgb(255 255 255 / .90) 0%, rgb(255 255 255 / .36) 52%, transparent 78%),
    linear-gradient(0deg, rgb(255 255 255 / .32), transparent 40%);
}

.hero-slide__content {
  right: var(--page-gutter);
  bottom: clamp(9rem, 9vw, 16rem);
  left: var(--page-gutter);
  grid-template-columns: minmax(0, 1.4fr) minmax(28rem, .6fr);
  align-items: end;
  gap: clamp(5rem, 10vw, 19rem);
}

.hero-slide__title {
  max-width: 10.5ch;
  font-size: clamp(5.8rem, 5.35vw, 10.5rem);
  line-height: .93;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.hero-slide__aside { padding-bottom: .6rem; }
.hero-slide__aside p { max-width: 35ch; font-size: clamp(1.55rem, 1.08vw, 2.1rem); line-height: 1.55; }
.hero-slide__aside .cta-pill { margin-top: 2.7rem; }

.hero-nav {
  right: auto;
  bottom: 2.5rem;
  left: var(--page-gutter);
  gap: .35rem;
}

.hero-nav__button {
  width: 5.2rem;
  height: 5.2rem;
  border-color: rgb(255 255 255 / .28);
  background: transparent;
}

.hero-progress {
  right: var(--page-gutter);
  bottom: 0;
  left: var(--page-gutter);
  height: 1px;
  background: rgb(255 255 255 / .3);
}

.word-reveal { overflow: hidden; }
.word-reveal > span { will-change: transform, opacity; }

/* Home story */
.product-story {
  overflow: clip;
  background: #f0f0ed;
}

.product-story__grid {
  min-height: clamp(82rem, 70vw, 120rem);
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(5rem, 8vw, 14rem);
}

.product-story__copy h2 {
  max-width: 10ch;
  font-size: clamp(4.8rem, 4.8vw, 9.4rem);
  line-height: .95;
  letter-spacing: -.052em;
}

.product-story__copy p { max-width: 44ch; line-height: 1.62; }
.product-story__visual { min-height: 65rem; }
.product-story__backdrop {
  inset: 7% 0 6% 3%;
  border-radius: 49% 51% 44% 56% / 56% 43% 57% 44%;
  background: radial-gradient(circle at 35% 28%, #fff 0%, #ececea 48%, #dddcd8 100%);
  box-shadow: inset 0 0 0 1px rgb(34 37 43 / .06), var(--editorial-shadow);
}
.product-story__visual::before,
.product-story__visual::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgb(222 39 31 / .30);
  border-radius: 50%;
  content: '';
}
.product-story__visual::before { top: 8%; left: -5%; width: 72%; aspect-ratio: 1; }
.product-story__visual::after { right: -5%; bottom: 5%; width: 35%; aspect-ratio: 1; }
.product-story__image { filter: drop-shadow(0 4rem 5rem rgb(34 37 43 / .2)); }

.countries-section { overflow: clip; padding-bottom: clamp(13rem, 14vw, 27rem); background: var(--white); }
.countries-section__intro {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  align-items: end;
  gap: clamp(3rem, 7vw, 12rem);
  margin-bottom: clamp(7rem, 9vw, 16rem);
}
.countries-section__intro .eyebrow { align-self: start; }
.countries-section__intro h2 {
  max-width: 12ch;
  font-size: clamp(4.8rem, 5vw, 9.8rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.countries-section__intro p { grid-column: 2; max-width: 46ch; font-size: var(--lead); line-height: 1.55; }
.feature-rail { gap: 1.6rem; }
.feature-card {
  min-height: clamp(38rem, 30vw, 51rem);
  padding: clamp(3rem, 3vw, 5.8rem);
  border-color: var(--editorial-line);
  border-radius: var(--editorial-radius);
  background: #fafaf8;
  box-shadow: 0 0 0 rgb(34 37 43 / 0);
  transition: transform .55s var(--editorial-ease), border-color .3s, box-shadow .55s var(--editorial-ease), background .3s;
}
.feature-card:hover {
  border-color: var(--red);
  background: var(--white);
  box-shadow: var(--editorial-shadow);
  transform: translateY(-1.1rem);
}
.feature-card__metric { font-size: clamp(5rem, 5vw, 10rem); line-height: .88; letter-spacing: -.07em; }
.feature-card h2,
.feature-card h3 { margin-top: auto; font-size: clamp(2.4rem, 2vw, 4rem); }

.brands-preview { background: var(--editorial-paper); }
.brands-preview__intro {
  grid-template-columns: 1.25fr .75fr;
  padding-bottom: clamp(5rem, 7vw, 13rem);
  border-bottom-color: var(--editorial-line);
}
.brands-preview__wordmark h2 { font-size: clamp(6.5rem, 7.3vw, 14.5rem); line-height: .85; letter-spacing: -.075em; }
.brand-grid { gap: 1.2rem; margin-top: 1.2rem; }
.brand-card {
  min-height: clamp(20rem, 17vw, 31rem);
  border-color: transparent;
  border-radius: var(--editorial-radius-small);
  background: #fff;
  box-shadow: 0 0 0 1px var(--editorial-line-soft);
  transition: transform .5s var(--editorial-ease), box-shadow .5s var(--editorial-ease), border-color .3s;
}
.brand-card:hover { border-color: var(--red); box-shadow: var(--editorial-shadow); transform: translateY(-.8rem); }

.corporate-film-section { background: var(--editorial-paper); }
.corporate-film { box-shadow: var(--editorial-shadow-strong); }
.corporate-film::after { background: linear-gradient(180deg, transparent 20%, rgb(8 10 13 / .78)); }
.corporate-film__content { max-width: 92rem; }
.corporate-film__content h2 { font-size: clamp(4.8rem, 5vw, 9.8rem); line-height: .94; letter-spacing: -.055em; }

.news-row {
  grid-template-columns: minmax(22rem, .72fr) minmax(0, 1.45fr) auto;
  min-height: clamp(22rem, 18vw, 31rem);
  padding-block: 2.5rem;
  border-color: var(--editorial-line);
}
.news-row__thumb { border-radius: var(--editorial-radius-small); }
.news-row__title { max-width: 18ch; font-size: clamp(2.8rem, 2.7vw, 5.2rem); line-height: .98; letter-spacing: -.04em; }
.news-row__summary { max-width: 58ch; }

/* Shared inner-page hero */
.page-hero {
  min-height: clamp(64rem, 51vw, 96rem);
  padding-top: calc(var(--header-height) + clamp(6rem, 7vw, 13rem));
  overflow: clip;
  border-bottom-color: var(--editorial-line-soft);
  background: var(--editorial-paper);
}

.page-hero__grid { grid-template-columns: minmax(0, 1.3fr) minmax(28rem, .7fr); }
.page-hero__copy { z-index: 2; }
.page-hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(5.4rem, 5.45vw, 10.7rem);
  line-height: .93;
  letter-spacing: -.058em;
  text-wrap: balance;
}
.page-hero__copy p { max-width: 46ch; margin-top: 3rem; font-size: clamp(1.6rem, 1.08vw, 2.15rem); line-height: 1.55; }
.page-hero__visual { min-height: 42rem; }
.page-hero__orb {
  right: -10%;
  bottom: -26%;
  width: clamp(38rem, 38vw, 76rem);
  box-shadow: inset -5rem -5rem 12rem rgb(34 37 43 / .16), 0 5rem 15rem rgb(222 39 31 / .18);
}
.page-hero__ring { right: 32%; bottom: 22%; width: 68%; }

/* About */
.about-intro { min-height: 150svh; background: #202329; }
.about-intro__sticky { top: 0; height: 100svh; padding: clamp(1.2rem, 1.3vw, 2.4rem); }
.about-intro__media {
  inset: clamp(1.2rem, 1.3vw, 2.4rem);
  border-radius: var(--editorial-radius);
  transform: scale(calc(.91 + (var(--progress, 0) * .09)));
}
.about-intro__media::after {
  background:
    linear-gradient(90deg, rgb(21 23 28 / .78), rgb(21 23 28 / .10) 70%),
    linear-gradient(0deg, rgb(21 23 28 / .46), transparent 55%);
}
.about-intro__copy {
  right: auto;
  bottom: clamp(6rem, 7vw, 13rem);
  left: var(--page-gutter);
  max-width: 72rem;
  padding: 0;
}
.about-intro__copy h1 { max-width: 12ch; font-size: clamp(5.2rem, 5.4vw, 10.5rem); line-height: .94; letter-spacing: -.055em; }
.about-intro__copy p { max-width: 48ch; font-size: clamp(1.6rem, 1.05vw, 2.05rem); }
.value-card {
  min-height: 42rem;
  padding: clamp(3rem, 3vw, 5.5rem);
  border: 1px solid var(--editorial-line);
  border-radius: var(--editorial-radius);
  background: var(--white);
}
.value-card h2,
.value-card h3 { margin-top: auto; font-size: clamp(2.8rem, 2.6vw, 5rem); }
.value-card p { max-width: 34ch; }
.stat-card { min-width: clamp(24rem, 22vw, 42rem); border-radius: var(--editorial-radius-small); }
.achievement-row { grid-template-columns: 11rem minmax(24rem, .8fr) minmax(0, 1.2fr); padding-block: clamp(3rem, 3.5vw, 6rem); }
.achievement-row h3 { font-size: clamp(2.3rem, 2.1vw, 4rem); }

/* History */
.history-layout { grid-template-columns: minmax(20rem, .35fr) minmax(0, 1.65fr); gap: clamp(5rem, 8vw, 15rem); }
.history-year-button { font-size: clamp(4.4rem, 4.5vw, 8.8rem); letter-spacing: -.06em; }
.history-entry { min-height: 62rem; grid-template-columns: 14rem minmax(25rem, .7fr) minmax(34rem, 1.3fr); border-color: var(--editorial-line); }
.history-entry__year { font-size: clamp(5rem, 5vw, 10rem); }
.history-entry__image-button { border-radius: var(--editorial-radius); }

/* Brand and global */
.brand-list-grid { gap: 1.3rem; }
.brand-detail-hero { min-height: 100svh; padding-top: calc(var(--header-height) + 7rem); }
.brand-detail-hero__copy h1 { max-width: 12ch; font-size: clamp(5rem, 5.2vw, 10rem); line-height: .95; letter-spacing: -.055em; }
.brand-detail-hero__disc { box-shadow: var(--editorial-shadow); }
.global-stage { border-radius: var(--editorial-radius); box-shadow: var(--editorial-shadow-strong); }
.global-stage__info { border-radius: 2rem; }

/* Sustainability */
.sustain-hero__copy h1 { max-width: 11ch; font-size: clamp(5.4rem, 5.5vw, 10.7rem); line-height: .93; letter-spacing: -.058em; }
.sustain-block { gap: clamp(5rem, 9vw, 17rem); padding-block: clamp(8rem, 10vw, 19rem); }
.sustain-block__media { border-radius: var(--editorial-radius); box-shadow: var(--editorial-shadow); }
.sustain-block__copy h2 { max-width: 12ch; font-size: clamp(4rem, 4.1vw, 8rem); line-height: .97; letter-spacing: -.05em; }
.outline-marquee span { font-size: clamp(7rem, 10vw, 19rem); }

/* Services and solutions */
.service-group {
  grid-template-columns: minmax(22rem, .4fr) minmax(0, 1.6fr);
  gap: clamp(4rem, 8vw, 15rem);
  padding-block: clamp(6rem, 7vw, 13rem);
  border-color: var(--editorial-line);
}
.service-group__title {
  top: calc(var(--header-height) + 4rem);
  max-width: 12ch;
  font-size: clamp(3.2rem, 3.1vw, 6rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.service-group__grid { gap: 1.2rem; }
.service-card {
  min-height: 27rem;
  padding: clamp(2.7rem, 2.7vw, 5rem);
  border-color: var(--editorial-line);
  border-radius: var(--editorial-radius-small);
  background: #fafaf8;
}
.service-card h3 { max-width: 15ch; font-size: clamp(2.2rem, 1.9vw, 3.7rem); line-height: 1.02; }
.service-card:hover { background: var(--white); box-shadow: var(--editorial-shadow); transform: translateY(-.7rem); }
.solution-grid { gap: 1.4rem; }
.solution-card {
  min-height: clamp(43rem, 34vw, 63rem);
  padding: clamp(3rem, 3.2vw, 6rem);
  border-color: var(--editorial-line);
  border-radius: var(--editorial-radius);
  background: #fafaf8;
}
.solution-card h2 { max-width: 10ch; margin-top: clamp(8rem, 10vw, 18rem); font-size: clamp(3.7rem, 3.7vw, 7.2rem); line-height: .96; letter-spacing: -.05em; }

/* Pricing - actual production classes */
.pricing-overview { gap: 1.3rem; }
.pricing-overview .price-card { min-height: 58rem; border-radius: var(--editorial-radius); }
.pricing-category-nav {
  top: calc(var(--editorial-header-inset) + var(--editorial-header-h) + .8rem);
  width: min(calc(100% - (var(--page-gutter) * 2)), 176rem);
  padding: .75rem;
  border-color: var(--editorial-line-soft);
  border-radius: 2rem;
  background: rgb(255 255 255 / .96);
  box-shadow: 0 1.3rem 4rem rgb(34 37 43 / .08);
}
.pricing-category-nav .filter-pill { min-height: 4.7rem; padding-inline: 1.6rem; }
.pricing-category-section {
  padding-block: clamp(9rem, 9vw, 17rem);
  border-color: var(--editorial-line);
  scroll-margin-top: calc(var(--header-height) + 9rem);
}
.pricing-category-section:nth-of-type(even) { background: #f0f0ed; }
.pricing-category-section__head {
  grid-template-columns: clamp(6rem, 6vw, 11rem) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 3vw, 5rem);
  margin-bottom: clamp(5rem, 6vw, 11rem);
}
.pricing-category-section__index { font-size: clamp(2.5rem, 2vw, 4rem); }
.pricing-category-section h2 { max-width: 14ch; font-size: clamp(4.6rem, 4.75vw, 9.2rem); line-height: .95; letter-spacing: -.055em; }
.package-grid { gap: 1.4rem; }
.package-card {
  min-height: clamp(55rem, 42vw, 73rem);
  padding: clamp(3rem, 3vw, 5.5rem);
  border-color: var(--editorial-line);
  border-radius: var(--editorial-radius);
  background: var(--white);
  box-shadow: 0 0 0 rgb(34 37 43 / 0);
}
.package-card.is-popular {
  border-color: var(--red);
  background: linear-gradient(180deg, rgb(222 39 31 / .055), #fff 26%);
  box-shadow: 0 3rem 10rem rgb(222 39 31 / .12);
  transform: translateY(-1rem);
}
.package-card h3 { max-width: 13ch; font-size: clamp(2.6rem, 2.3vw, 4.5rem); line-height: 1; }
.package-card__starting { font-size: clamp(1.5rem, 1vw, 2rem); }
.package-card li { font-size: clamp(1.45rem, .98vw, 1.9rem); }
.package-card .cta-pill { margin-top: auto; }
.combined-package-grid { gap: 1.4rem; }
.combined-package { min-height: 48rem; border-radius: var(--editorial-radius); }

/* Careers, contact, FAQ and investors */
.career-video-card { min-width: clamp(30rem, 36vw, 68rem); border-radius: var(--editorial-radius); }
.role-row { padding-block: clamp(3rem, 3.2vw, 5.6rem); }
.role-row h3 { font-size: clamp(2.4rem, 2vw, 4rem); }
.contact-grid { gap: clamp(5rem, 7vw, 13rem); }
.location-panel,
.contact-form { border-radius: var(--editorial-radius); }
.location-map { border-radius: var(--editorial-radius-small); }
.contact-form { padding: clamp(2.5rem, 3vw, 5.5rem); background: var(--white); box-shadow: 0 0 0 1px var(--editorial-line-soft); }
.form-field input,
.form-field textarea,
.form-field select { min-height: 6.6rem; border-color: var(--editorial-line); border-radius: 1.3rem; background: #fafaf8; }
.form-field textarea { min-height: 15rem; }
.faq-layout,
.investor-layout { gap: clamp(5rem, 8vw, 15rem); }
.faq-aside,
.investor-nav { top: calc(var(--header-height) + 4rem); }
.accordion__item { border-color: var(--editorial-line); }
.accordion__button { min-height: 9rem; font-size: clamp(2rem, 1.65vw, 3.2rem); }
.investor-section { min-height: 56rem; padding-block: 5rem 10rem; }

/* News and resources */
.news-filters { padding: 1.2rem; border: 1px solid var(--editorial-line); border-radius: 2rem; background: var(--white); }
.resource-grid { gap: 1.3rem; }
.resource-card { min-height: 42rem; padding: clamp(3rem, 3vw, 5.5rem); border-radius: var(--editorial-radius); }
.resource-card h2 { max-width: 10ch; font-size: clamp(3rem, 3vw, 5.8rem); line-height: .98; }

/* Footer */
.site-footer { background: var(--white); }
.site-footer__top,
.footer-cta {
  position: relative;
  min-height: clamp(50rem, 34vw, 68rem);
  overflow: hidden;
}
.footer-cta::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 8%, rgb(222 39 31 / .25), transparent 34%),
    linear-gradient(135deg, rgb(255 255 255 / .03), transparent 45%);
  content: '';
}
.footer-cta__inner { position: relative; z-index: 1; gap: clamp(5rem, 8vw, 15rem); }
.footer-cta__copy h2,
.site-footer__intro { max-width: 12ch; font-size: clamp(4.5rem, 4.5vw, 8.7rem); line-height: .95; letter-spacing: -.052em; }
.footer-documents { gap: 1.2rem; }
.pdf-card { min-height: 19rem; border-radius: 2.2rem; }
.footer-main { border-top: 1px solid var(--editorial-line); }
.footer-main__grid { gap: clamp(4rem, 7vw, 12rem); }
.footer-bottom { border-top-color: var(--editorial-line); }

/* Splash */
.splash { z-index: 300; background: var(--red); }
.splash__mark { width: min(36rem, 72vw); }
.splash__base { opacity: .22; filter: brightness(0) invert(1); }
.splash__fill { overflow: hidden; }
.splash__fill img { filter: brightness(0) invert(1); }

/* Motion primitives */
.reveal {
  opacity: 0;
  transform: translateY(5rem);
  transition: opacity .9s var(--editorial-ease), transform .9s var(--editorial-ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
[data-stagger] > * {
  opacity: 0;
  transform: translateY(3.5rem) scale(.985);
  transition: opacity .78s var(--editorial-ease), transform .78s var(--editorial-ease);
}
[data-stagger].is-visible > * { opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: .06s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: .12s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: .18s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: .24s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: .30s; }

[data-pointer-card] {
  position: relative;
  isolation: isolate;
}
[data-pointer-card]::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  border-radius: inherit;
  background: radial-gradient(42rem circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgb(222 39 31 / .09), transparent 55%);
  content: '';
  transition: opacity .35s;
}
[data-pointer-card]:hover::before { opacity: 1; }

@media (max-width: 1180px) {
  .site-header .partner-mark,
  .site-header .social-link { display: none; }
  .mega-menu.has-submenu.is-open { width: min(70vw, 84rem); }
  .hero-slide__content { grid-template-columns: minmax(0, 1.3fr) minmax(25rem, .7fr); gap: 4rem; }
  .countries-section__intro { grid-template-columns: 1fr; }
  .countries-section__intro p { grid-column: 1; }
  .service-group { grid-template-columns: minmax(18rem, .4fr) minmax(0, 1.6fr); gap: 4rem; }
}

@media (max-width: 900px) {
  .site-header .header-shortcut:first-of-type { display: none; }
  .page-hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .85fr); }
  .package-grid { grid-template-columns: 1fr; }
  .package-card,
  .package-card.is-popular { min-height: auto; transform: none; }
  .pricing-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .history-entry { grid-template-columns: 9rem 1fr; }
  .history-entry__image-button { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --editorial-header-inset: 1rem;
    --editorial-header-h: 6.4rem;
  }

  body::before { display: none; }
  .page-progress { height: .2rem; }
  .site-header { padding: 1rem; }
  .site-header__inner { padding-inline: 1.45rem; border-radius: 1.8rem; }
  .site-header__logo { width: 13.2rem; }
  .site-header .header-shortcut,
  .site-header .partner-mark,
  .site-header .social-link { display: none; }
  .menu-trigger::after { display: none; }
  .menu-trigger__label { font-size: 1.3rem; }
  .mobile-menu { inset: 1rem; border-radius: 2.4rem; }

  .section { padding-block: 8rem; }
  .section-title { font-size: clamp(4rem, 12vw, 6rem); }
  .eyebrow { margin-bottom: 1.8rem; }
  .cta-pill { min-width: 15rem; height: 5.2rem; font-size: 1.3rem; }

  .home-hero { min-height: 100svh; }
  .hero-slide::after,
  .hero-slide[data-theme='light']::after {
    background: linear-gradient(180deg, rgb(18 20 24 / .06) 12%, rgb(18 20 24 / .25) 48%, rgb(18 20 24 / .84) 100%);
  }
  .hero-slide[data-theme='light'] { color: var(--white); }
  .hero-slide[data-theme='light'] .hero-slide__aside p { color: rgb(255 255 255 / .78); }
  .hero-slide__content { right: 2.3rem; bottom: 9.4rem; left: 2.3rem; display: block; }
  .hero-slide__title { max-width: 10ch; font-size: clamp(4.8rem, 15.6vw, 6.9rem); line-height: .94; }
  .hero-slide__aside { margin-top: 2.2rem; }
  .hero-slide__aside p { max-width: 31ch; font-size: 1.55rem; }
  .hero-slide__aside .cta-pill { margin-top: 2rem; color: var(--white); border-color: rgb(255 255 255 / .7); background: transparent; }
  .hero-nav { bottom: 2.2rem; left: 2.3rem; }
  .hero-nav__button { width: 4.1rem; height: 4.1rem; }
  .hero-progress { right: 2.3rem; left: 2.3rem; }

  .product-story__grid { min-height: auto; grid-template-columns: 1fr; gap: 5rem; }
  .product-story__copy { position: static; }
  .product-story__copy h2,
  .countries-section__intro h2 { font-size: clamp(4rem, 12vw, 6rem); }
  .product-story__visual { min-height: 45rem; }
  .countries-section__intro { display: block; margin-bottom: 5rem; }
  .countries-section__intro p { margin-top: 2rem; }
  .feature-card { min-height: 35rem; }
  .brands-preview__intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .brands-preview__wordmark h2 { font-size: clamp(5.4rem, 17vw, 7rem); }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-card { min-height: 17rem; }
  .corporate-film__content h2 { font-size: 4.4rem; }
  .news-row { grid-template-columns: 1fr; min-height: auto; gap: 2rem; }
  .news-row__thumb { aspect-ratio: 16 / 10; }
  .news-row__date { justify-self: start; }

  .page-hero { min-height: 76rem; padding-top: 13rem; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__copy h1 { font-size: clamp(4.8rem, 14vw, 7rem); }
  .page-hero__copy p { font-size: 1.6rem; }
  .page-hero__visual { min-height: 23rem; }
  .page-hero__orb { right: -25%; bottom: -70%; width: 43rem; }

  .about-intro { min-height: 100svh; }
  .about-intro__sticky { padding: 1rem; }
  .about-intro__media { inset: 1rem; }
  .about-intro__copy { right: 2.3rem; bottom: 5.5rem; left: 2.3rem; }
  .about-intro__copy h1 { font-size: clamp(4.7rem, 14vw, 6.8rem); }
  .value-card { min-height: 34rem; }
  .achievement-row { grid-template-columns: 1fr; gap: 1.5rem; }

  .history-layout { grid-template-columns: 1fr; }
  .history-years { display: none; }
  .history-entry { grid-template-columns: 1fr; min-height: auto; }
  .history-entry__year { font-size: 6rem; }

  .brand-detail-hero { min-height: auto; padding-top: 13rem; }
  .brand-detail-hero__grid { grid-template-columns: 1fr; }
  .brand-detail-hero__copy h1 { font-size: 5rem; }
  .global-stage { min-height: 62rem; }
  .sustain-block { grid-template-columns: 1fr; gap: 4rem; }
  .sustain-block:nth-child(even) .sustain-block__media { order: 0; }

  .service-group { grid-template-columns: 1fr; gap: 3rem; padding-block: 6rem; }
  .service-group__title { position: static; font-size: 3.8rem; }
  .service-group__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 23rem; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 39rem; }

  .pricing-overview { grid-template-columns: 1fr; }
  .pricing-category-nav {
    top: 8.2rem;
    width: calc(100% - 2rem);
    margin-inline: 1rem;
    border-radius: 1.6rem;
  }
  .pricing-category-section { padding-block: 7rem; }
  .pricing-category-section__head { grid-template-columns: 4.5rem 1fr; gap: 1.4rem; margin-bottom: 4rem; }
  .pricing-category-section h2 { font-size: clamp(4rem, 12vw, 5.4rem); }
  .package-card { padding: 2.5rem; }
  .combined-package-grid { grid-template-columns: 1fr; }

  .contact-grid,
  .faq-layout,
  .investor-layout { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .contact-form { padding: 2rem; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 32rem; }

  .footer-cta__inner,
  .footer-main__grid { grid-template-columns: 1fr; }
  .footer-cta__copy h2 { font-size: 4.6rem; }
}

@media (max-width: 420px) {
  :root { --page-gutter-mobile: 1.8rem; }
  .brand-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .brand-card { min-height: 15rem; padding: 1.4rem; }
  .hero-slide__title { font-size: 4.85rem; }
  .page-hero__copy h1 { font-size: 4.75rem; }
  .pricing-category-nav .filter-pill { min-height: 4.4rem; padding-inline: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before,
  .page-progress { display: none; }
  .site-header,
  .reveal,
  [data-stagger] > *,
  .feature-card,
  .brand-card,
  .service-card,
  .package-card,
  .cta-pill { transition: none !important; transform: none !important; }
  .reveal,
  [data-stagger] > * { opacity: 1 !important; }
  [data-pointer-card]::before { display: none; }
}

/* Final contrast and surface authority for themed inner-page heroes. */
.page-hero.page-hero--red {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 32%, rgb(255 255 255 / .16), transparent 31%),
    linear-gradient(118deg, #de271f 0%, #bd201a 52%, #68110e 100%);
}

.page-hero.page-hero--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgb(222 39 31 / .22), transparent 30%),
    linear-gradient(132deg, #1d2026 0%, #2f3238 60%, #17191d 100%);
}

.page-hero.page-hero--red .page-hero__copy p,
.page-hero.page-hero--dark .page-hero__copy p {
  color: rgb(255 255 255 / .74);
}

.page-hero.page-hero--red .page-hero__eyebrow,
.page-hero.page-hero--dark .page-hero__eyebrow {
  color: rgb(255 255 255 / .86);
}

.page-hero.page-hero--red .page-hero__orb {
  background: radial-gradient(circle at 35% 28%, #fff 0%, #ffd9d7 20%, #ef7771 52%, #a31611 100%);
  box-shadow: inset -5rem -5rem 12rem rgb(83 11 8 / .24), 0 5rem 15rem rgb(70 8 6 / .3);
}

.page-hero.page-hero--dark .page-hero__orb {
  background: radial-gradient(circle at 35% 28%, #ffebe9 0%, #e34b44 34%, #841712 70%, #34100e 100%);
  box-shadow: inset -5rem -5rem 12rem rgb(17 18 22 / .36), 0 5rem 15rem rgb(222 39 31 / .22);
}

.page-hero.page-hero--red .page-hero__ring,
.page-hero.page-hero--dark .page-hero__ring {
  border-color: rgb(255 255 255 / .38);
}

.page-hero__orb,
.page-hero__ring,
.story-candy,
.brand-leaf {
  translate: 0 var(--editorial-y, 0px);
}
