/* Premium editorial redesign — homepage only */

.landing-v2 {
  --bone: #f3eee4;
  --bone-light: #faf7f1;
  --sand: #ded0bd;
  --sand-deep: #cdbba2;
  --ink-v2: #111410;
  --forest-v2: #1e342c;
  --forest-black: #101511;
  --oxblood: #4a2f2c;
  --gold: #c09a63;
  --warm-white: #fffaf0;
  --line-v2: rgba(17, 20, 16, .18);
  background: var(--bone);
}

.landing-v2 main {
  overflow: clip;
}

.landing-v2 .site-header {
  color: var(--warm-white);
}

.landing-v2 .site-header:not(.is-scrolled):not(.menu-active) .logo,
.landing-v2 .site-header:not(.is-scrolled):not(.menu-active) .site-nav a {
  color: var(--warm-white);
}

.landing-v2 .site-header:not(.is-scrolled):not(.menu-active) .logo small {
  color: #e0b878;
}

.landing-v2 .site-header:not(.is-scrolled):not(.menu-active) .site-nav .nav-cta {
  color: var(--ink-v2);
  background: var(--warm-white);
  border-color: var(--warm-white);
}

.landing-v2 .site-header:not(.is-scrolled):not(.menu-active) .site-nav .nav-cta:hover {
  color: var(--warm-white);
  background: transparent;
}

.landing-v2 .site-header:not(.is-scrolled):not(.menu-active) .menu-toggle {
  color: var(--warm-white);
  border-color: rgba(255, 255, 255, .35);
}

.landing-v2 .site-header.is-scrolled,
.landing-v2 .site-header.menu-active {
  color: var(--ink-v2);
  background: rgba(243, 238, 228, .93);
  border-color: rgba(17, 20, 16, .13);
}

.landing-v2 .site-header.is-scrolled .logo,
.landing-v2 .site-header.is-scrolled .site-nav a,
.landing-v2 .site-header.menu-active .logo,
.landing-v2 .site-header.menu-active .site-nav a {
  color: var(--ink-v2);
}

.landing-v2 .site-header.is-scrolled .site-nav .nav-cta,
.landing-v2 .site-header.menu-active .site-nav .nav-cta {
  color: var(--warm-white);
  background: var(--ink-v2);
}

/* Cinematic opening */

.cinematic-hero {
  position: relative;
  min-height: max(48rem, 100svh);
  overflow: hidden;
  color: var(--warm-white);
  background: var(--forest-black);
}

.hero-slides,
.hero-shade,
.hero-slide,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1.35s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(1.04);
  transform: scale(1.04);
}

.hero-slide:nth-child(1) img {
  object-position: center 58%;
}

.hero-slide:nth-child(2) img {
  object-position: center 50%;
}

.hero-slide:nth-child(3) img {
  object-position: center 54%;
  filter: saturate(.5) contrast(1.06);
}

.hero-slide.is-active img {
  animation: heroDrift 7.8s ease-out both;
}

@keyframes heroDrift {
  from { transform: scale(1.075); }
  to { transform: scale(1.025); }
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 12, 9, .46) 0%, rgba(7, 12, 9, .08) 30%, rgba(7, 12, 9, .67) 100%),
    linear-gradient(90deg, rgba(8, 13, 10, .42) 0%, rgba(8, 13, 10, .05) 70%);
  pointer-events: none;
}

.cinematic-hero-inner {
  position: relative;
  z-index: 3;
  min-height: max(48rem, 100svh);
  display: grid;
  grid-template-rows: auto minmax(12rem, 1fr) auto auto;
  padding-top: calc(var(--header-height) + 1.4rem);
  padding-bottom: 1.5rem;
}

.hero-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255, 250, 240, .7);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-status-row > p {
  margin: 0;
}

.landing-v2 .availability-light {
  margin: 0;
  color: rgba(255, 250, 240, .82);
}

.landing-v2 .availability-light span {
  background: #90b69e;
}

.landing-v2 .availability-light span::after {
  border-color: rgba(193, 224, 202, .5);
}

.hero-title-wrap {
  align-self: end;
  padding-bottom: clamp(1.4rem, 3vh, 2.8rem);
}

.hero-overline {
  margin: 0 0 clamp(1rem, 2.2vh, 1.75rem);
  color: rgba(255, 250, 240, .72);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.landing-v2 .brand-reveal {
  max-width: none;
  margin: 0;
  color: var(--warm-white);
  font-size: clamp(5rem, 10.5vw, 11rem);
  line-height: .75;
  letter-spacing: -.073em;
  text-shadow: 0 .08em .45em rgba(0, 0, 0, .12);
}

.landing-v2 .brand-reveal em {
  color: var(--warm-white);
}

.landing-v2 .brand-prefix {
  opacity: .48;
}

.landing-v2 .brand-tld {
  color: #e3bb7e;
}

.no-js .landing-v2 .brand-prefix,
.no-js .landing-v2 .brand-space {
  display: none;
}

.no-js .landing-v2 .brand-tld {
  max-width: 2.5ch;
  opacity: 1;
  transform: translateY(-.18em);
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(22rem, .7fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  padding: 1.5rem 0 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.hero-message {
  display: grid;
  grid-template-columns: minmax(15rem, .8fr) minmax(18rem, 1fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.hero-rotating-line {
  min-height: 2.3em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.75vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  transition: opacity .35s ease, transform .5s var(--ease);
}

.hero-rotating-line.is-changing {
  opacity: 0;
  transform: translateY(.35rem);
}

.hero-summary {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 250, 240, .7);
  font-size: .8rem;
  line-height: 1.65;
}

.hero-actions-light {
  justify-content: flex-end;
  margin: 0;
}

.button-light {
  color: var(--ink-v2);
  background: var(--warm-white);
  border-color: var(--warm-white);
}

.button-light:hover {
  color: var(--warm-white);
  background: transparent;
}

.text-link-light {
  color: rgba(255, 250, 240, .78);
  border-color: rgba(255, 250, 240, .4);
}

.text-link-light:hover {
  color: var(--warm-white);
  border-color: var(--warm-white);
}

.hero-control-row {
  display: grid;
  grid-template-columns: 4.5rem minmax(11rem, auto) minmax(8rem, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 2.2rem;
  color: rgba(255, 250, 240, .62);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-counter {
  display: flex;
  gap: .3rem;
}

.hero-counter strong {
  color: var(--warm-white);
}

.hero-control-row > p {
  margin: 0;
}

.hero-progress {
  position: relative;
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .26);
}

.hero-progress i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--warm-white);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-progress i.is-running {
  animation: progressFill 6.5s linear both;
}

@keyframes progressFill {
  to { transform: scaleX(1); }
}

.hero-pause,
.tagline-pause {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-pause:hover,
.tagline-pause:hover {
  color: var(--warm-white);
}

/* Continuous brand language */

.brand-marquee {
  position: relative;
  z-index: 4;
  display: flex;
  height: 5rem;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 250, 240, .88);
  background: var(--forest-v2);
  border-top: 1px solid rgba(255, 255, 255, .11);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.brand-marquee-track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  animation: marqueeMove 36s linear infinite;
}

.brand-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(1.8rem, 3vw, 3.4rem);
  padding-right: clamp(1.8rem, 3vw, 3.4rem);
}

.brand-marquee span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .145em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-marquee i {
  color: var(--gold);
  font-size: .38rem;
  font-style: normal;
}

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

/* Shared editorial headings */

.premium-heading {
  margin-bottom: clamp(4.5rem, 8vw, 8rem);
}

.premium-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, .45fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 10rem);
}

.premium-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.5vw, 7rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.052em;
}

.premium-heading h2 em {
  color: var(--forest-v2);
  font-weight: 400;
}

.premium-heading > p,
.premium-heading > div + p {
  margin: 0 0 .2rem;
  color: rgba(17, 20, 16, .66);
  font-size: .84rem;
}

/* Meaning and editorial story */

.name-story {
  padding: clamp(8rem, 13vw, 13rem) 0;
  background: var(--sand);
}

.name-story .eyebrow {
  color: #795b38;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(17rem, .55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 11rem);
}

.dictionary-card {
  position: sticky;
  top: calc(var(--header-height) + 2.2rem);
  padding: 2.25rem 0 0;
  border-top: 1px solid var(--ink-v2);
}

.dictionary-kicker {
  margin: 0 0 1.2rem;
  color: #795b38;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dictionary-card .dictionary-word {
  margin: 0 0 2.6rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  line-height: .92;
  letter-spacing: -.045em;
}

.dictionary-card ol,
.value-path {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dictionary-card li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .8rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(17, 20, 16, .16);
}

.dictionary-card li span {
  padding-top: .2rem;
  color: #795b38;
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.dictionary-card li p {
  margin: 0;
  color: rgba(17, 20, 16, .68);
  font-size: .79rem;
}

.dictionary-note {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  color: rgba(17, 20, 16, .66);
  border-top: 1px solid rgba(17, 20, 16, .16);
  font-size: .76rem;
}

.dictionary-note strong {
  color: var(--ink-v2);
}

.story-editorial {
  display: grid;
  grid-template-columns: minmax(16rem, .8fr) minmax(18rem, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.precision-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #a98f72;
}

.precision-visual picture,
.precision-visual img {
  width: 100%;
  height: 100%;
}

.precision-visual img {
  min-height: 42rem;
  object-fit: cover;
  object-position: center;
  filter: saturate(.77) contrast(1.03);
  transition: transform .9s var(--ease);
}

.precision-visual:hover img {
  transform: scale(1.025);
}

.precision-visual::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(12, 15, 12, .55));
}

.precision-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 1rem;
  left: 1.1rem;
  display: flex;
  justify-content: space-between;
  color: var(--warm-white);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-copy {
  margin-top: clamp(4rem, 9vw, 9rem);
}

.story-lead {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  line-height: .98;
  letter-spacing: -.035em;
}

.story-copy > p:not(.story-lead) {
  margin: 0;
  color: rgba(17, 20, 16, .66);
  font-size: .84rem;
}

.value-path {
  margin-top: 3.5rem;
  border-top: 1px solid var(--ink-v2);
}

.value-path li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(17, 20, 16, .18);
}

.value-path li > span {
  padding-top: .3rem;
  color: #795b38;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.value-path strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}

.value-path p {
  margin: .25rem 0 0;
  color: rgba(17, 20, 16, .62);
  font-size: .7rem;
}

.value-path .is-result strong {
  color: var(--forest-v2);
  font-style: italic;
}

/* Large slogan transition */

.quiet-manifesto {
  padding: clamp(7rem, 12vw, 12rem) 0;
  color: var(--warm-white);
  background: var(--oxblood);
}

.quiet-manifesto .shell > p {
  max-width: 78rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: .87;
  letter-spacing: -.052em;
}

.quiet-manifesto em {
  color: #e0b878;
  font-weight: 400;
}

.manifesto-foot {
  display: grid;
  grid-template-columns: minmax(5rem, 1fr) minmax(18rem, .42fr);
  align-items: center;
  gap: 3rem;
  margin-top: clamp(4rem, 7vw, 7rem);
}

.manifesto-foot > span {
  height: 1px;
  background: rgba(255, 255, 255, .32);
}

.manifesto-foot p {
  margin: 0;
  color: rgba(255, 250, 240, .65);
  font-size: .78rem;
}

/* Visual directions */

.possibilities-v2 {
  padding: clamp(8rem, 13vw, 13rem) 0;
  background: var(--bone);
}

.use-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 15rem;
  gap: 1rem;
}

.use-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 16, .12);
  border-radius: .22rem;
}

.use-card-selection {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.use-card-culture {
  grid-column: 8 / 13;
  grid-row: 1 / 4;
}

.use-card-work {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.use-card-media {
  grid-column: 5 / 8;
  grid-row: 3 / 4;
}

.use-card-impact {
  grid-column: 1 / 5;
  grid-row: 4 / 6;
}

.use-card-craft {
  grid-column: 5 / 13;
  grid-row: 4 / 6;
}

.use-card-image picture,
.use-card-image img,
.use-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.use-card-image img {
  object-fit: cover;
  filter: saturate(.7) contrast(1.04);
  transform: scale(1.01);
  transition: filter .6s ease, transform .8s var(--ease);
}

.use-card-selection img {
  object-position: center 53%;
}

.use-card-culture img {
  object-position: center 48%;
}

.use-card-media img {
  object-position: center 46%;
}

.use-card-craft img {
  object-position: center 48%;
}

.use-card-shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 13, 10, .28) 0%, rgba(9, 13, 10, .03) 38%, rgba(9, 13, 10, .78) 100%);
  transition: background .55s ease;
}

.use-card:hover img {
  filter: saturate(.82) contrast(1.05);
  transform: scale(1.055);
}

.use-card:hover .use-card-shade {
  background: linear-gradient(180deg, rgba(9, 13, 10, .34) 0%, rgba(9, 13, 10, .06) 32%, rgba(9, 13, 10, .84) 100%);
}

.use-card-top {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 250, 240, .78);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.use-card-copy {
  position: absolute;
  z-index: 2;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  color: var(--warm-white);
  transition: transform .5s var(--ease);
}

.use-card:hover .use-card-copy {
  transform: translateY(-.35rem);
}

.use-card-copy > p {
  margin: 0 0 .55rem;
  color: rgba(255, 250, 240, .68);
  font-size: .63rem;
}

.use-card-copy h3,
.use-card-type h3 {
  max-width: calc(100% - 3rem);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.15vw, 3.5rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.035em;
}

.use-card-media .use-card-copy h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.5rem);
}

.card-arrow {
  position: absolute;
  right: 0;
  bottom: .2rem;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 50%;
  transition: background .35s ease, color .35s ease, transform .45s var(--ease);
}

.use-card:hover .card-arrow {
  color: var(--ink-v2);
  background: var(--warm-white);
  transform: rotate(45deg);
}

.use-card-type {
  padding: 1.25rem;
}

.use-card-type .use-card-top {
  position: static;
  color: rgba(17, 20, 16, .55);
}

.use-card-type-copy {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
}

.use-card-quote {
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.8rem);
  line-height: .98;
  letter-spacing: -.03em;
}

.use-card-quote em {
  color: var(--forest-v2);
  font-weight: 400;
}

.use-card-type h3 {
  margin-bottom: .6rem;
  font-size: clamp(1.4rem, 2.05vw, 2.15rem);
}

.use-card-type-copy > p:last-child {
  margin: 0;
  color: rgba(17, 20, 16, .62);
  font-size: .67rem;
}

.use-card-work {
  background: #d8c5aa;
}

.use-card-impact {
  color: var(--warm-white);
  background: var(--forest-v2);
  border-color: rgba(255, 255, 255, .12);
}

.use-card-impact .use-card-top,
.use-card-impact .use-card-type-copy > p:last-child {
  color: rgba(255, 250, 240, .6);
}

.use-card-impact .use-card-quote em {
  color: #dfb779;
}

.use-card-impact h3 {
  color: var(--warm-white);
}

.direction-note-v2 {
  max-width: 42rem;
  margin: 2rem 0 0 auto;
  color: rgba(17, 20, 16, .6);
  font-size: .72rem;
  text-align: right;
}

/* Full-width human journey */

.journey-statement {
  position: relative;
  min-height: min(84svh, 58rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--warm-white);
  background: var(--forest-black);
}

.journey-media,
.journey-media img,
.journey-shade {
  position: absolute;
  inset: -2.5rem 0;
  width: 100%;
  height: calc(100% + 5rem);
}

.journey-media {
  --parallax-y: 0px;
  transform: translateY(var(--parallax-y));
  will-change: transform;
}

.journey-media img {
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.64) contrast(1.07);
  transform: scale(1.035);
}

.journey-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 14, 11, .75) 0%, rgba(9, 14, 11, .34) 58%, rgba(9, 14, 11, .12) 100%);
}

.journey-copy {
  position: relative;
  z-index: 2;
  padding-block: 7rem;
}

.journey-copy p {
  max-width: 76rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.4vw, 7.8rem);
  line-height: .9;
  letter-spacing: -.048em;
}

.journey-copy em {
  color: #e2bd85;
  font-weight: 400;
}

.journey-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 1.35rem;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 250, 240, .65);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Reasons: compact editorial overview */

.reasons-v2 {
  padding: clamp(6.5rem, 9vw, 9rem) 0;
  color: var(--warm-white);
  background: var(--forest-black);
}

.reasons-v2 .eyebrow {
  color: #d0a66d;
}

.reasons-header {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .45fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.reasons-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 4.8vw, 5rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.048em;
}

.reasons-header h2 em {
  color: #d8ae72;
  font-weight: 400;
}

.reasons-header > p {
  max-width: 30rem;
  margin: 0 0 .2rem;
  color: rgba(255, 250, 240, .72);
  font-size: .9rem;
  line-height: 1.65;
}

.reason-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, .18);
}

.reason-card-v2 {
  min-height: 16.5rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 2.8vw, 2.5rem);
  background: var(--forest-black);
  transition: background .35s ease, transform .4s var(--ease);
}

.reason-card-v2:hover {
  background: #151c17;
  transform: translateY(-3px);
}

.reason-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: auto;
  color: #d0a66d;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reason-card-top p {
  margin: 0;
  color: rgba(255, 250, 240, .46);
  font-size: .56rem;
}

.reason-card-v2 h3 {
  max-width: 30rem;
  margin: 3rem 0 .9rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.03em;
}

.reason-card-v2 > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 250, 240, .72);
  font-size: .88rem;
  line-height: 1.65;
}

.reason-card-v2 strong {
  color: var(--warm-white);
}

.name-signature {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.name-signature > div {
  min-height: 6.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem clamp(1rem, 2vw, 1.75rem);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.name-signature > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.name-signature strong {
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.name-signature span {
  color: rgba(255, 250, 240, .52);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Rotating campaign language */

.tagline-rotator {
  min-height: min(82svh, 55rem);
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vw, 11rem) 0;
  color: var(--warm-white);
  background: var(--oxblood);
}

.tagline-rotator > .shell {
  width: var(--shell);
}

.tagline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.tagline-top p {
  margin: 0;
}

.tagline-top .eyebrow {
  color: #dfb679;
}

.tagline-top p:last-child {
  color: rgba(255, 250, 240, .53);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tagline-stage-v2 {
  position: relative;
  min-height: clamp(17rem, 31vw, 31rem);
  margin-top: 2rem;
}

.tagline-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.2rem);
  transition: opacity .65s ease, visibility .65s ease, transform .75s var(--ease);
}

.tagline-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.tagline-item p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.8vw, 8rem);
  line-height: .88;
  letter-spacing: -.052em;
}

.tagline-item em {
  color: #dfb679;
  font-weight: 400;
}

.tagline-controls {
  display: grid;
  grid-template-columns: 4rem minmax(8rem, 1fr) auto auto;
  align-items: center;
  gap: 1.3rem;
  padding-top: 1.2rem;
  color: rgba(255, 250, 240, .5);
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tagline-controls strong {
  color: var(--warm-white);
}

.tagline-controls > div > span {
  color: rgba(255, 250, 240, .72);
}

.tagline-progress {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.tagline-progress i {
  position: absolute;
  inset: 0;
  background: #dfb679;
  transform: scaleX(0);
  transform-origin: left;
}

.tagline-progress i.is-running {
  animation: taglineFill 4.6s linear both;
}

@keyframes taglineFill {
  to { transform: scaleX(1); }
}

.tagline-controls p {
  margin: 0;
}

/* Acquisition */

.acquisition-v2 {
  padding: clamp(8rem, 13vw, 13rem) 0;
  background: var(--bone);
}

.acquisition-v2 > .shell {
  grid-template-columns: minmax(0, .8fr) minmax(34rem, 1fr);
}

.acquisition-v2 .acquisition-intro h2 {
  font-size: clamp(3.8rem, 6.2vw, 6.7rem);
}

.form-panel-v2 {
  background: #e6dac8;
  border-color: rgba(17, 20, 16, .18);
  box-shadow: 0 1.5rem 5rem rgba(53, 43, 31, .06);
}

.form-panel-v2 input,
.form-panel-v2 select,
.form-panel-v2 textarea {
  border-color: rgba(17, 20, 16, .28);
}

.form-panel-v2 .form-panel-top > span {
  color: #6b4c24;
}

.landing-v2 .site-header.is-scrolled .logo small,
.landing-v2 .site-header.menu-active .logo small {
  color: #6b4c24;
}

/* Footer */

.site-footer-v2 {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5rem) 0 1.25rem;
  overflow: visible;
  background: var(--forest-black);
}

.site-footer-v2 .footer-main {
  grid-template-columns: .55fr minmax(18rem, .8fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 0;
  padding: 2rem 0 2.75rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.site-footer-v2 .footer-main > p {
  max-width: 25rem;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
}

.site-footer-v2 .footer-mail {
  grid-column: auto;
  justify-self: end;
  font-size: clamp(1.45rem, 2.25vw, 2.2rem);
  white-space: nowrap;
}

/* Reveal language */

.js .landing-v2 [data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity .8s var(--ease), transform .9s var(--ease), clip-path 1s var(--ease);
}

.js .landing-v2 [data-reveal="clip"] {
  clip-path: inset(0 0 100% 0);
  transform: translateY(.6rem);
}

.js .landing-v2 [data-reveal="image"] {
  clip-path: inset(0 0 12% 0);
  transform: scale(.985);
}

.js .landing-v2 [data-reveal="step"] {
  transform: translateX(1rem);
}

.js .landing-v2 [data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: none;
}

.js .landing-v2 .value-path li:nth-child(2) { transition-delay: .08s; }
.js .landing-v2 .value-path li:nth-child(3) { transition-delay: .16s; }
.js .landing-v2 .value-path li:nth-child(4) { transition-delay: .24s; }

/* Tablet */

@media (max-width: 1180px) {
  .hero-lower {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .hero-actions-light {
    justify-content: flex-start;
  }

  .story-grid {
    grid-template-columns: minmax(16rem, .48fr) minmax(0, 1.3fr);
    gap: 4rem;
  }

  .story-editorial {
    grid-template-columns: minmax(15rem, .8fr) minmax(16rem, 1fr);
    gap: 2.5rem;
  }

  .precision-visual img {
    min-height: 36rem;
  }

  .use-bento {
    grid-auto-rows: 14rem;
  }

  .use-card-work .use-card-quote {
    display: none;
  }

  .acquisition-v2 > .shell {
    grid-template-columns: minmax(0, .7fr) minmax(30rem, 1fr);
    gap: 4rem;
  }
}

@media (max-width: 980px) {
  .hero-message {
    grid-template-columns: 1fr 1fr;
  }

  .hero-control-row {
    grid-template-columns: 4rem 1fr auto;
  }

  .hero-control-row > p {
    display: none;
  }

  .premium-heading-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .premium-heading > div + p {
    max-width: 38rem;
  }

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

  .dictionary-card {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }

  .dictionary-kicker,
  .dictionary-card .dictionary-word {
    grid-column: 1 / -1;
  }

  .dictionary-card ol {
    grid-column: 1;
  }

  .dictionary-note {
    grid-column: 2;
    align-self: end;
  }

  .story-editorial {
    grid-template-columns: .75fr 1fr;
    max-width: 48rem;
    margin-left: auto;
  }

  .manifesto-foot {
    grid-template-columns: 1fr minmax(16rem, .6fr);
  }

  .use-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 22rem;
  }

  .use-card-selection,
  .use-card-culture,
  .use-card-work,
  .use-card-media,
  .use-card-impact,
  .use-card-craft {
    grid-column: auto;
    grid-row: auto;
  }

  .use-card-selection,
  .use-card-craft {
    grid-column: 1 / -1;
  }

  .use-card-selection {
    min-height: 32rem;
  }

  .use-card-craft {
    min-height: 29rem;
  }

  .use-card-work .use-card-quote {
    display: block;
  }

  .reasons-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reasons-header > p {
    max-width: 40rem;
  }

  .acquisition-v2 > .shell {
    grid-template-columns: 1fr;
  }
}

/* Mobile menu and compact editorial layout */

@media (max-width: 860px) {
  .landing-v2 .site-header.menu-active {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .landing-v2 .site-nav {
    color: var(--ink-v2);
    background: var(--bone);
    min-height: 100vh;
    min-height: 100dvh;
    justify-content: flex-start;
    overflow-y: auto;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }

  .landing-v2 .site-nav > a {
    color: var(--ink-v2) !important;
  }

  .landing-v2 .site-nav .nav-cta {
    color: var(--warm-white) !important;
    background: var(--ink-v2) !important;
  }

  .cinematic-hero,
  .cinematic-hero-inner {
    min-height: max(44rem, 100svh);
  }

  .landing-v2 .brand-reveal {
    font-size: clamp(3.4rem, 12.2vw, 6.5rem);
  }

  .hero-summary {
    max-width: 27rem;
  }

  .name-signature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .name-signature > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .name-signature > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .tagline-controls {
    grid-template-columns: 3.5rem 1fr auto;
  }

  .tagline-controls > p {
    display: none;
  }

  .site-footer-v2 .footer-main {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.6rem;
    padding: 1.7rem 0 2.2rem;
  }

  .site-footer-v2 .footer-mail {
    grid-column: auto;
    justify-self: start;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 700px) {
  .landing-v2 {
    padding-bottom: 4.15rem;
  }

  .cinematic-hero-inner {
    grid-template-rows: auto minmax(10rem, 1fr) auto auto;
    padding-top: calc(var(--header-height) + .85rem);
    padding-bottom: .85rem;
  }

  .hero-status-row > p:last-child {
    display: none;
  }

  .hero-title-wrap {
    padding-bottom: 1.5rem;
  }

  .hero-overline {
    max-width: 20rem;
    margin-bottom: 1rem;
    font-size: .59rem;
  }

  .landing-v2 .brand-reveal {
    font-size: clamp(3.1rem, 12.7vw, 5rem);
  }

  .hero-lower {
    gap: 1.35rem;
    padding: 1.2rem 0;
  }

  .hero-message {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .hero-rotating-line {
    min-height: 0;
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
  }

  .hero-summary {
    display: none;
  }

  .hero-actions-light {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .hero-actions-light .button {
    min-height: 3rem;
    padding: .75rem .9rem;
    font-size: .68rem;
  }

  .hero-actions-light .text-link {
    font-size: .68rem;
  }

  .hero-control-row {
    grid-template-columns: 3.5rem 1fr auto;
    gap: .8rem;
    font-size: .54rem;
  }

  .hero-pause [data-hero-toggle-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .brand-marquee {
    height: 3.8rem;
  }

  .brand-marquee span {
    font-size: .59rem;
  }

  .name-story,
  .possibilities-v2,
  .reasons-v2,
  .acquisition-v2 {
    padding: 6.5rem 0;
  }

  .premium-heading {
    margin-bottom: 3.5rem;
  }

  .premium-heading h2 {
    font-size: clamp(3rem, 14vw, 4.55rem);
  }

  .premium-heading-split {
    gap: 1.5rem;
  }

  .premium-heading > div + p {
    font-size: .76rem;
  }

  .dictionary-card {
    display: block;
  }

  .dictionary-card .dictionary-word {
    font-size: 3.2rem;
  }

  .dictionary-note {
    margin-top: 1rem;
  }

  .story-editorial {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }

  .precision-visual {
    width: min(86vw, 28rem);
  }

  .precision-visual img {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .story-copy {
    width: calc(100% - 2rem);
    margin: -2rem 0 0 auto;
    padding: 2rem 0 0 2rem;
    background: var(--sand);
  }

  .quiet-manifesto {
    padding: 6.5rem 0;
  }

  .quiet-manifesto .shell > p {
    font-size: clamp(3.45rem, 16vw, 5rem);
  }

  .manifesto-foot {
    grid-template-columns: 3rem 1fr;
    gap: 1.2rem;
    margin-top: 3.5rem;
  }

  .use-bento {
    width: auto;
    display: flex;
    gap: .8rem;
    margin-right: calc((100vw - var(--shell)) / -2);
    padding-right: 1rem;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .use-bento::-webkit-scrollbar {
    display: none;
  }

  .use-card,
  .use-card-selection,
  .use-card-culture,
  .use-card-work,
  .use-card-media,
  .use-card-impact,
  .use-card-craft {
    min-height: 33rem;
    flex: 0 0 86vw;
    scroll-snap-align: start;
  }

  .use-card-type {
    min-height: 29rem;
  }

  .use-card-type .use-card-quote {
    display: block;
    font-size: 2.4rem;
  }

  .use-card-media .use-card-copy h3,
  .use-card-copy h3 {
    font-size: 2.45rem;
  }

  .direction-note-v2 {
    margin-top: 1.5rem;
    text-align: left;
  }

  .journey-statement {
    min-height: 72svh;
  }

  .journey-media img {
    object-position: 57% center;
  }

  .journey-shade {
    background: linear-gradient(180deg, rgba(9, 14, 11, .28), rgba(9, 14, 11, .78));
  }

  .journey-copy p {
    font-size: clamp(3.15rem, 14vw, 4.6rem);
  }

  .journey-caption span:first-child {
    display: none;
  }

  .journey-caption {
    justify-content: flex-end;
  }

  .reasons-v2 {
    padding: 5.25rem 0;
  }

  .reasons-header {
    margin-bottom: 3rem;
  }

  .reasons-header h2 {
    font-size: clamp(2.8rem, 12vw, 3.9rem);
  }

  .reasons-header > p {
    font-size: .84rem;
  }

  .reason-grid-v2 {
    grid-template-columns: 1fr;
  }

  .reason-card-v2 {
    min-height: 0;
    padding: 1.75rem;
  }

  .reason-card-v2 h3 {
    margin-top: 1.8rem;
    font-size: 2.15rem;
  }

  .reason-card-v2 > p:last-child {
    font-size: .84rem;
  }

  .name-signature > div {
    min-height: 7.5rem;
    padding: 1.1rem;
  }

  .name-signature strong {
    font-size: 2.15rem;
  }

  .tagline-rotator {
    min-height: 37rem;
    padding: 6.5rem 0;
  }

  .tagline-stage-v2 {
    min-height: 17rem;
  }

  .tagline-item p {
    font-size: clamp(3.1rem, 14vw, 4.5rem);
  }

  .tagline-top p:last-child {
    display: none;
  }

  .tagline-controls {
    grid-template-columns: 3.5rem 1fr auto;
    gap: .8rem;
  }

  .tagline-pause [data-tagline-toggle-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .acquisition-v2 .acquisition-intro h2 {
    font-size: clamp(3.3rem, 14.5vw, 4.8rem);
  }

  .form-panel-v2 {
    padding: 1.3rem;
  }

  .site-footer-v2 {
    padding-top: 3rem;
  }
}

@media (max-width: 420px) {
  .landing-v2 .brand-reveal {
    font-size: 12.25vw;
  }

  .hero-actions-light .text-link {
    display: none;
  }

  .hero-control-row {
    grid-template-columns: 3.25rem 1fr auto;
  }

  .premium-heading h2 {
    font-size: 12.8vw;
  }

  .use-card,
  .use-card-selection,
  .use-card-culture,
  .use-card-work,
  .use-card-media,
  .use-card-impact,
  .use-card-craft {
    flex-basis: 88vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide:not(.is-active),
  .tagline-item:not(.is-active),
  .brand-marquee-group + .brand-marquee-group {
    display: none;
  }

  .hero-slide.is-active img,
  .brand-marquee-track,
  .hero-progress i,
  .tagline-progress i {
    animation: none !important;
    transform: none;
  }

  .brand-marquee-track {
    width: 100%;
  }

  .brand-marquee-group {
    width: 100%;
    overflow: hidden;
  }

  .journey-media {
    transform: none !important;
  }

  .js .landing-v2 [data-reveal] {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
