@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/instrument-serif-regular-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
}

:root {
  --forest: #163b32;
  --forest-deep: #071f1a;
  --sage: #96aa9d;
  --acid: #e3ed96;
  --terracotta: #c87553;
  --cream: #f0ebe2;
  --paper: #faf7f0;
  --ink: #18201c;
  --muted: #67706b;
  --line: rgba(27, 33, 30, 0.16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(1360px, calc(100vw - 96px));
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  /* Clip wide animated tracks at the viewport without turning body into a scroll container. */
  overflow-x: clip;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header-h);
}

html.is-booting {
  scroll-behavior: auto;
}

html.is-booting body {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--acid);
  color: var(--forest-deep);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--acid);
  color: var(--forest-deep);
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(227,237,150,.065), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,.018), transparent 42%),
    var(--forest-deep);
  color: var(--cream);
  transition: opacity .9s ease, visibility .9s ease, transform 1.1s cubic-bezier(.2,.8,.2,1), filter .9s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.018);
  filter: blur(2px);
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  z-index: 180;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--acid);
  box-shadow: 0 0 12px rgba(227, 237, 150, .45);
}

.loader-brand {
  --loader-mark-size: clamp(72px, 7vw, 96px);
  --loader-lockup-gap: clamp(18px, 2.2vw, 28px);
  position: relative;
  width: min(460px, 90vw);
  height: var(--loader-mark-size);
}

.loader-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--loader-mark-size);
  height: var(--loader-mark-size);
  transform: translate(-50%, -50%);
  overflow: visible;
}

.fonts-loaded .loader-symbol {
  animation: loader-mark-to-lockup 1.55s cubic-bezier(.72,0,.22,1) .12s forwards;
}

.loader-symbol .logo-ring {
  fill: rgba(255,255,255,.025);
  stroke: rgba(255,255,255,.38);
  stroke-width: 1.25;
  stroke-dasharray: 195;
  stroke-dashoffset: 195;
  transform: rotate(-90deg);
  transform-origin: center;
}

.fonts-loaded .loader-symbol .logo-ring {
  animation: draw-logo-ring .82s cubic-bezier(.6,0,.2,1) .18s forwards;
}

.loader-symbol .logo-initials {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.6px;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.fonts-loaded .loader-symbol .logo-initials {
  animation: reveal-logo-type .52s cubic-bezier(.2,.8,.2,1) .62s forwards;
}

.loader-symbol .logo-initial-s { fill: var(--cream); }
.loader-symbol .logo-initial-b { fill: var(--acid); }

.loader-wordmark {
  font-size: clamp(2.05rem, 4.2vw, 3.45rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: .9;
  opacity: 0;
  transform: translateX(-7px);
  filter: blur(5px);
  will-change: opacity, transform, filter;
}

.loader-wordmark span,
.brand-name span {
  color: var(--acid);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 750;
}

.loader-copy {
  position: absolute;
  top: 50%;
  left: calc(var(--loader-mark-size) + var(--loader-lockup-gap));
  width: max-content;
  overflow: visible;
  transform: translateY(-50%);
  white-space: nowrap;
}

.fonts-loaded .loader-wordmark {
  animation: loader-wordmark-in .62s cubic-bezier(.16,1,.3,1) 1.34s forwards;
}

.loader-copy p {
  margin: 9px 0 0;
  color: rgba(255,255,255,.42);
  font-size: .58rem;
  letter-spacing: .17em;
  opacity: 0;
  transform: translateY(5px);
  text-transform: uppercase;
}

.fonts-loaded .loader-copy p {
  animation: loader-tagline-in .44s ease 1.64s forwards;
}

.loader-line {
  width: min(460px, 90vw);
  height: 1px;
  overflow: hidden;
  opacity: 0;
  transform: scaleX(.35);
  background: rgba(255, 255, 255, 0.18);
}

.fonts-loaded .loader-line {
  animation: loader-line-in .46s cubic-bezier(.2,.8,.2,1) 1.8s forwards;
}

.loader-line i {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: var(--acid);
}

.fonts-loaded .loader-line i {
  animation: load .72s cubic-bezier(.72, 0, .22, 1) 1.88s forwards;
}

@keyframes loader-mark-to-lockup {
  0%, 52% { left: 50%; transform: translate(-50%, -50%) scale(1); }
  100% { left: 0; transform: translate(0, -50%) scale(.98); }
}

@keyframes loader-wordmark-in {
  from { opacity: 0; transform: translateX(-7px); filter: blur(5px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes loader-tagline-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loader-line-in {
  from { opacity: 0; transform: scaleX(.35); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes load {
  to { transform: translateX(0); }
}

@keyframes draw-logo-ring {
  to { stroke-dashoffset: 0; }
}

@keyframes reveal-logo-type {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding-inline: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: height 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

html.is-booting .site-header {
  opacity: 0;
  transform: translateY(-14px);
}

.site-ready .site-header {
  animation: header-in .8s cubic-bezier(.2,.8,.2,1) .16s both;
}

@keyframes header-in {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(23, 61, 52, 0.1);
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 8px 30px rgba(13, 43, 37, 0.06);
  color: var(--forest-deep);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled:not(.on-dark) .brand-name span {
  color: var(--terracotta);
}

.site-header.is-scrolled.on-dark {
  border-color: rgba(255,255,255,.13);
  background: rgba(7,31,26,.82);
  box-shadow: none;
  color: #fff;
}

.site-header.is-scrolled.on-dark .brand-name span {
  color: var(--acid);
}

.site-header.is-scrolled.on-dark .header-cta {
  border-color: rgba(255,255,255,.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  overflow: visible;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}

.brand-symbol .logo-ring {
  fill: rgba(255,255,255,.035);
  stroke: rgba(255,255,255,.72);
  stroke-width: 1.4;
  transition: fill .35s ease, stroke .35s ease;
}

.brand-symbol .logo-initials {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.6px;
  transform-box: fill-box;
  transform-origin: center;
}

.brand-symbol .logo-initial-s { fill: currentColor; }
.brand-symbol .logo-initial-b { fill: var(--acid); }

.site-ready .site-header .brand-symbol .logo-ring {
  stroke-dasharray: 195;
  animation: header-logo-ring .8s cubic-bezier(.6,0,.2,1) .32s both;
}

.site-ready .site-header .brand-symbol .logo-initials {
  animation: header-logo-type .55s cubic-bezier(.2,.8,.2,1) .5s both;
}

.brand:hover .brand-symbol,
.brand:focus-visible .brand-symbol {
  transform: scale(1.05);
}

.site-header.is-scrolled:not(.on-dark) .brand-symbol .logo-ring {
  fill: var(--forest-deep);
  stroke: var(--forest-deep);
}

.site-header.is-scrolled:not(.on-dark) .brand-symbol .logo-initial-s {
  fill: var(--cream);
}

.brand-name {
  font-size: 1.26rem;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.brand-name span {
  margin-left: .04em;
  font-size: 1em;
}

@keyframes header-logo-ring {
  from { stroke-dashoffset: 195; }
  to { stroke-dashoffset: 0; }
}

@keyframes header-logo-type {
  from { opacity: 0; transform: translateY(3px); }
  to { opacity: 1; transform: translateY(0); }
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 19px;
  padding: 12px 13px 12px 21px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.is-scrolled .header-cta {
  border-color: var(--forest);
}

.is-scrolled.on-dark .header-cta {
  border-color: rgba(255,255,255,.45);
}

.header-cta svg {
  width: 25px;
  height: 25px;
  padding: 4px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--forest-deep);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--forest-deep);
}

.header-cta:hover svg {
  transform: translateX(2px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  transform: translateY(-100%);
  background: var(--forest-deep);
  color: var(--cream);
  transition: transform 0.6s cubic-bezier(.72, 0, .22, 1), visibility 0.6s;
}

.mobile-menu.is-open {
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  width: min(520px, calc(100vw - 48px));
}

.mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 9vw, 4rem);
  line-height: 1;
}

.mobile-menu small {
  margin-right: 14px;
  color: var(--acid);
  font-family: var(--sans);
  font-size: .7rem;
}

.mobile-menu .mobile-menu-cta {
  margin-top: 26px;
  padding: 18px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--acid);
  color: var(--forest-deep);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}

.hero {
  position: relative;
  --hero-image-y: 0px;
  --hero-image-scale: 1.055;
  --hero-copy-y: 0px;
  --hero-copy-opacity: 1;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

html.is-booting .hero-media,
html.is-booting .hero-shade,
html.is-booting .hero-scroll {
  opacity: 0;
}

html.is-booting .hero-media {
  transform: scale(1.025);
}

.site-ready .hero-media {
  animation: hero-media-in 1.65s cubic-bezier(.2,.8,.2,1) both;
}

.site-ready .hero-shade {
  animation: hero-fade-in 1.25s ease .08s both;
}

.site-ready .hero-scroll {
  animation: hero-fade-in .8s ease 1s both;
}

@keyframes hero-media-in {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-image-stage {
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--hero-image-y), 0) scale(var(--hero-image-scale));
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 27, 23, .84) 0%, rgba(8, 27, 23, .58) 35%, rgba(8, 27, 23, .08) 68%, rgba(8, 27, 23, .2) 100%),
    linear-gradient(0deg, rgba(8, 27, 23, .65) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: var(--header-h);
  transform: translate3d(0, var(--hero-copy-y), 0);
  opacity: var(--hero-copy-opacity);
  will-change: transform, opacity;
}

.hero-linen-shine {
  position: absolute;
  z-index: 2;
  top: var(--hero-mark-y, 76.5%);
  left: var(--hero-mark-x, 68.5%);
  width: var(--hero-mark-width, 64px);
  height: var(--hero-mark-height, 36px);
  overflow: hidden;
  transform: translate(-50%, -50%) rotate(8deg);
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: screen;
  will-change: transform;
}

.hero-linen-shine::before {
  position: absolute;
  inset: -80% -100%;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.08) 43%, rgba(255,255,255,.9) 49%, rgba(227,237,150,.36) 54%, transparent 61%);
  content: "";
  opacity: 0;
  transform: translateX(-55%);
  filter: blur(.25px) drop-shadow(0 0 4px rgba(227,237,150,.2));
}

.site-ready .hero-linen-shine::before {
  animation: linen-medal-glint 5.4s cubic-bezier(.2,.7,.2,1) 1.05s infinite;
}

@keyframes linen-medal-glint {
  0%, 14% { opacity: 0; transform: translateX(-58%); }
  18% { opacity: .26; }
  25% { opacity: .94; }
  35% { opacity: 0; transform: translateX(58%); }
  100% { opacity: 0; transform: translateX(58%); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 23px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--acid);
}

.hero-eyebrow {
  opacity: 0;
}

.site-ready .hero-eyebrow {
  animation: heroIn .8s .34s ease forwards;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5.1rem, 9.5vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.77;
}

.hero h1 .title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
}

.site-ready .hero h1 .title-line {
  animation: titleIn 1.05s cubic-bezier(.2, .8, .2, 1) forwards;
}

.site-ready .hero h1 .title-line:first-child {
  animation-delay: .4s;
}

.hero h1 .title-line:last-child {
  margin-left: .42em;
}

.site-ready .hero h1 .title-line:last-child {
  animation-delay: .56s;
}

.hero h1 em {
  color: var(--acid);
  font-weight: 400;
}

@keyframes titleIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroIn {
  to { opacity: 1; }
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 445px) 1fr;
  align-items: end;
  gap: 60px;
  max-width: 950px;
  margin-top: 65px;
  opacity: 0;
}

.site-ready .hero-bottom {
  animation: heroIn .85s .88s ease forwards;
}

.hero-bottom > p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(.96rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 260px;
  padding: 7px 8px 7px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.button svg,
.form-submit svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform .25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.form-submit:hover svg {
  transform: translateX(3px);
}

.button-light {
  background: var(--cream);
  color: var(--forest-deep);
}

.button-light svg {
  background: var(--acid);
}

.button-dark {
  background: var(--forest);
  color: #fff;
}

.button-dark svg {
  background: var(--acid);
  color: var(--forest-deep);
}

.text-link {
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.42);
  font-size: .74rem;
}

.text-link svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  overflow: visible;
  fill: none;
  stroke: var(--acid);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  vertical-align: -4px;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  writing-mode: vertical-rl;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(255,255,255,.25);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  transform: translateY(-100%);
  background: var(--acid);
  content: "";
}

.site-ready .hero-scroll i::after {
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  60%, 100% { transform: translateY(100%); }
}

.audience-bar {
  overflow: hidden;
  padding: 20px 0;
  background: var(--acid);
  color: var(--forest-deep);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding-inline: 32px;
  font-family: var(--serif);
  font-size: 1.23rem;
}

.marquee-track i {
  display: block;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: 1px solid currentColor;
  background: transparent;
  opacity: .72;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-pad {
  padding-block: clamp(92px, 9vw, 150px);
}

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(170px, .65fr) minmax(0, 2.35fr);
  gap: clamp(40px, 6vw, 90px);
}

.section-kicker {
  margin: 0 0 24px;
  color: var(--forest);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-kicker::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 10px 1px 0;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(227, 237, 150, .22);
  content: "";
}

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.1vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .91;
}

.display-title em {
  color: var(--forest);
  font-weight: 400;
}

.manifesto-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 58px 0 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.manifesto-copy p {
  margin: 0;
  line-height: 1.75;
}

.services {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) minmax(260px, .75fr);
  align-items: end;
  gap: clamp(40px, 6vw, 84px);
  margin-bottom: clamp(56px, 6vw, 78px);
}

.section-intro {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 480px;
  padding: 34px 30px 32px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .4s ease, color .4s ease, transform .4s ease;
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(.5);
  transition: opacity .4s ease, transform .4s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--forest);
  color: #fff;
  transform: translateY(-8px);
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 55px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--forest);
  opacity: .9;
}

.service-card:hover .service-icon {
  color: var(--acid);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.card-index {
  position: absolute;
  top: 35px;
  right: 30px;
  color: var(--muted);
  font-size: .65rem;
}

.service-card:hover .card-index {
  color: rgba(255,255,255,.55);
}

.service-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  transition: color .4s ease;
}

.service-card:hover p {
  color: rgba(255,255,255,.73);
}

.service-card ul {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card:hover ul {
  border-color: rgba(255,255,255,.18);
}

.service-card li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: .72rem;
}

.service-card li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.promise {
  position: relative;
  padding-block: clamp(110px, 12vw, 190px);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.12);
  background: var(--forest-deep);
  color: #fff;
}

.promise-glow {
  position: absolute;
  top: -280px;
  left: -220px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,237,150,.12), transparent 65%);
}

.promise-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 9vw;
}

.promise-sticky {
  align-self: start;
  position: sticky;
  top: 130px;
}

.section-kicker-light {
  color: rgba(255,255,255,.72);
}

.promise .display-title {
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.promise .display-title em {
  color: var(--acid);
}

.promise-list {
  border-top: 1px solid rgba(255,255,255,.16);
}

.promise-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 40px 0 45px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.promise-item > span {
  color: var(--acid);
  font-size: .65rem;
}

.promise-item h3 {
  margin: -8px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  font-weight: 400;
}

.promise-item p {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
  line-height: 1.75;
}

.method {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.method-head {
  margin-bottom: clamp(56px, 6vw, 78px);
}

.method-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps::before {
  position: absolute;
  top: 52px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.method-steps li {
  position: relative;
  padding-right: 45px;
}

.step-number {
  display: block;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: .65rem;
}

.step-dot {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  margin-bottom: 35px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest);
  transition: transform .25s ease, background .25s ease;
}

.method-steps li:hover .step-dot {
  transform: scale(1.4);
  background: var(--acid);
}

.method-steps h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.method-steps p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.7;
}

.editorial-block {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(60px, 9vw, 145px);
}

.editorial-image {
  position: relative;
}

.editorial-image::before {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: -24px;
  bottom: -24px;
  left: 24px;
  border: 1px solid rgba(23,61,52,.28);
  content: "";
}

.editorial-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: translate3d(0, var(--editorial-image-y, 0px), 0) scale(1.055);
  will-change: transform;
}

.image-stamp {
  position: absolute;
  z-index: 3;
  right: -46px;
  bottom: 50px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--forest-deep);
}

.image-stamp > svg:not(.stamp-logo) {
  position: absolute;
  inset: 7px;
  width: 98px;
  height: 98px;
  animation: spin 18s linear infinite;
}

.image-stamp text {
  fill: currentColor;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.image-stamp .stamp-logo {
  position: relative;
  width: 38px;
  height: 38px;
}

.stamp-logo .logo-initials {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -1.8px;
}

.stamp-logo .logo-initial-s { fill: var(--forest-deep); }
.stamp-logo .logo-initial-b { fill: var(--terracotta); }

@keyframes spin { to { transform: rotate(360deg); } }

.editorial-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 38px 0;
  color: var(--muted);
  line-height: 1.8;
}

.quality-notes {
  max-width: 560px;
  margin-bottom: 44px;
  border-top: 1px solid var(--line);
}

.quality-notes div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: .84rem;
}

.quality-notes strong {
  color: var(--forest);
  font-size: .63rem;
  font-weight: 500;
}

.audiences {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-card {
  position: relative;
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, color .35s ease;
}

.audience-card > span {
  color: var(--muted);
  font-size: .65rem;
}

.audience-card h3 {
  margin: 58px 0 12px;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
}

.audience-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  transition: color .35s ease;
}

.audience-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .35s ease, background .35s ease;
}

.audience-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.audience-card:hover {
  background: var(--forest);
  color: #fff;
}

.audience-card:hover p,
.audience-card:hover > span {
  color: rgba(255,255,255,.65);
}

.audience-card:hover .audience-arrow {
  transform: rotate(45deg);
  border-color: var(--acid);
  background: var(--acid);
  color: var(--forest-deep);
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 11vw, 160px);
}

.faq-intro > p:last-child {
  max-width: 390px;
  margin: 42px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 28px 56px 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 1px;
  background: var(--forest);
  content: "";
  transition: transform .3s ease;
}

.accordion summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details > div {
  padding: 0 60px 28px 0;
}

.accordion details p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}

.contact {
  position: relative;
  padding-block: clamp(110px, 12vw, 180px);
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
}

.contact::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) .8px, transparent .8px);
  background-size: 18px 18px;
  content: "";
  opacity: .16;
}

.contact-orbit {
  position: absolute;
  top: -180px;
  left: -230px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(227,237,150,.13);
  border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 1px solid rgba(227,237,150,.1);
  border-radius: inherit;
  content: "";
}

.contact-orbit::before { inset: 80px; }
.contact-orbit::after { inset: 160px; background: rgba(227,237,150,.04); }

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.contact-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.4vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .86;
}

.contact-title em {
  color: var(--acid);
  font-weight: 400;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 450px;
  margin: 42px 0 0;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
}

.contact-note {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  max-width: 380px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.contact-note span {
  color: var(--acid);
  font-size: .62rem;
}

.contact-note p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
}

.contact-whatsapp {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
  max-width: 380px;
  margin-top: 26px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(227,237,150,.55);
  background: rgba(255,255,255,.1);
}

.contact-whatsapp img {
  width: 48px;
  height: 48px;
  padding: 11px;
  border-radius: 50%;
  background: #25d366;
}

.contact-whatsapp span {
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.25;
}

.contact-whatsapp small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255,255,255,.55);
  font-size: .63rem;
  font-weight: 400;
}

.contact-whatsapp-arrow {
  width: 18px;
  height: 18px;
  color: var(--acid);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-form {
  position: relative;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(227,237,150,.48);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(227,237,150,.26), transparent 25%),
    linear-gradient(145deg, #f9f6ef 0%, #f1f2e9 55%, #e6ece4 100%);
  color: var(--ink);
  box-shadow: 0 45px 110px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.8);
}

.contact-form::before {
  position: absolute;
  top: -72px;
  right: -72px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(11,43,36,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(11,43,36,.025), 0 0 0 56px rgba(11,43,36,.018);
  content: "";
  pointer-events: none;
}

.contact-form::after {
  position: absolute;
  top: 0;
  right: clamp(28px, 4vw, 54px);
  left: clamp(28px, 4vw, 54px);
  height: 3px;
  transform: scaleX(.24);
  transform-origin: left;
  border-radius: 999px;
  background: var(--terracotta);
  content: "";
}

.form-intro {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(34px, 4vw, 52px);
  padding: 8px 0 30px;
  border-bottom: 1px solid var(--line);
}

.form-intro-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.form-intro-top p {
  margin: 0;
  color: var(--forest);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-intro-top > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .04em;
  white-space: nowrap;
}

.form-intro-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50a56c;
  box-shadow: 0 0 0 4px rgba(80,165,108,.13);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.form-intro h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 4.25vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .92;
}

.form-intro h3 em {
  color: var(--terracotta);
  font-weight: 400;
}

.form-intro > span {
  display: block;
  max-width: 480px;
  margin-top: 20px;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.65;
}

.form-path {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.form-path span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  font-size: .61rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .38;
  transition: opacity .25s ease, color .25s ease;
}

.form-path strong {
  color: var(--terracotta);
  font-size: .55rem;
  font-weight: 600;
}

.form-path span.is-active {
  opacity: 1;
}

.form-path span.is-complete {
  color: var(--muted);
  opacity: .72;
}

.form-path i {
  height: 1px;
  background: linear-gradient(90deg, rgba(11,43,36,.24), rgba(11,43,36,.06));
  transition: background .3s ease;
}

.form-path i.is-complete {
  background: linear-gradient(90deg, var(--terracotta), rgba(196,104,77,.28));
}

@keyframes status-pulse {
  50% { transform: scale(.72); opacity: .65; }
}

.form-section {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 20px 20px 6px;
  border: 1px solid rgba(27,33,30,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.form-steps {
  position: relative;
}

.contact-form.is-wizard-ready .form-section {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  margin-bottom: 0;
  animation: form-step-enter .38s cubic-bezier(.2,.75,.2,1) both;
}

.contact-form.is-wizard-ready .form-section[hidden] {
  display: none;
}

@keyframes form-step-enter {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-section-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(27,33,30,.09);
}

.form-section-head > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--acid);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.form-section-head div {
  min-width: 0;
}

.form-section-head strong,
.form-section-head small {
  display: block;
}

.form-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 7px;
}

.form-step-actions > p {
  margin: 0;
  color: var(--muted);
  font-size: .64rem;
  line-height: 1.35;
}

.form-step-actions > p strong {
  display: block;
  margin-bottom: 3px;
  color: var(--forest);
  font-size: .6rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.form-step-next,
.form-step-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.form-step-next {
  min-width: 154px;
  padding: 8px 9px 8px 20px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #fff;
}

.form-step-back {
  padding: 8px 17px;
  border: 1px solid rgba(27,33,30,.15);
  background: rgba(255,255,255,.44);
  color: var(--forest);
}

.form-step-next:hover,
.form-step-next:focus-visible,
.form-step-back:hover,
.form-step-back:focus-visible {
  transform: translateY(-2px);
}

.form-step-next svg,
.form-step-back svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.form-step-next svg {
  width: 38px;
  height: 38px;
  padding: 10px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--forest-deep);
}

.form-step-actions-submit .form-submit {
  flex: 1 1 auto;
  width: auto;
  min-height: 62px;
}

.form-section-head strong {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.05;
}

.form-section-head small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .65rem;
  line-height: 1.35;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  position: relative;
  display: block;
  min-height: 72px;
  margin-bottom: 14px;
  padding: 13px 16px 7px;
  border: 1px solid rgba(27,33,30,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.66);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.field:focus-within {
  transform: translateY(-2px);
  border-color: rgba(22,59,50,.48);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 26px rgba(11,43,36,.07), inset 0 1px 0 #fff;
}

.field > span {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 38px;
  padding: 7px 0 9px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  transition: color .25s ease;
}

.field textarea {
  min-height: 118px;
  line-height: 1.5;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%), linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.field ::placeholder {
  color: #989d99;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.check-field {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 11px;
  align-items: start;
  margin: 7px 0 22px;
  padding: 16px;
  border: 1px solid rgba(27,33,30,.09);
  border-radius: 12px;
  background: rgba(255,255,255,.35);
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.5;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--forest);
}

.check-field button,
.footer-bottom button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 70px;
  padding: 9px 10px 9px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(7,31,26,.17);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-2px);
  background: var(--forest-deep);
  box-shadow: 0 18px 38px rgba(7,31,26,.23);
}

.form-submit svg {
  width: 48px;
  height: 48px;
  background: var(--acid);
  color: var(--forest-deep);
}

.form-submit[disabled] {
  cursor: wait;
  opacity: .7;
}

.form-microcopy {
  margin: 14px 0 0;
  color: #727b76;
  font-size: .68rem;
  text-align: center;
}

.form-status {
  margin-bottom: 25px;
  padding: 13px 16px;
  border-left: 3px solid var(--forest);
  background: #e7eee9;
  color: var(--forest-deep);
  font-size: .78rem;
}

.form-status.is-error {
  border-color: #a04436;
  background: #f5e8e5;
  color: #7c2e24;
}

.site-footer {
  padding: 75px 0 28px;
  background: #081d19;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 150px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 56px;
  height: 56px;
  min-height: 54px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 12px 34px rgba(7,31,26,.24);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  transition: width .35s cubic-bezier(.2,.8,.2,1), transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.whatsapp-float.is-contact-hidden {
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  width: 142px;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7,31,26,.3);
}

.whatsapp-float span {
  max-width: 0;
  margin-left: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(6px);
  white-space: nowrap;
  transition: max-width .35s ease, margin-left .35s ease, opacity .22s ease, transform .3s ease;
}

.whatsapp-float:hover span,
.whatsapp-float:focus-visible span {
  max-width: 78px;
  margin-left: 10px;
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  padding-bottom: 65px;
}

.footer-main > p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.25;
}

.footer-top {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.4);
  font-size: .7rem;
}

.footer-top span {
  margin-left: 12px;
  color: var(--acid);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.42);
  font-size: .62rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-signature {
  justify-self: end;
}

.privacy-dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: clamp(30px, 6vw, 60px);
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.privacy-dialog::backdrop {
  background: rgba(8,29,25,.82);
  backdrop-filter: blur(6px);
}

.privacy-dialog h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 400;
}

.privacy-dialog p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.75;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Immersive scroll story */
.scroll-story {
  position: relative;
  height: 400svh;
  background: var(--forest-deep);
  color: #fff;
}

.story-sticky {
  position: sticky;
  z-index: 2;
  top: 0;
  height: 100svh;
  min-height: 690px;
  overflow: hidden;
}

.story-media,
.story-media figure,
.story-shade {
  position: absolute;
  inset: 0;
}

.story-media figure {
  margin: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform 1.4s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}

.story-media figure.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--story-image-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.story-media figure:nth-child(2) img {
  object-position: 52% center;
}

.story-shade {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(4,18,15,.84) 0%, rgba(4,18,15,.45) 43%, rgba(4,18,15,.06) 72%),
    linear-gradient(0deg, rgba(4,18,15,.78) 0%, transparent 62%),
    linear-gradient(180deg, rgba(4,18,15,.34) 0%, transparent 30%);
}

.story-ui {
  position: relative;
  z-index: 5;
  height: 100%;
}

.story-topline {
  position: absolute;
  top: calc(var(--header-h) + 32px);
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.story-topline p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.story-topline p > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
}

.story-count strong {
  color: var(--acid);
  font-size: .82rem;
}

.story-copy-stack {
  position: absolute;
  right: 0;
  bottom: 95px;
  left: 0;
  height: clamp(310px, 34vw, 440px);
}

.story-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(820px, 78vw);
  visibility: hidden;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity .65s ease, transform .8s cubic-bezier(.2,.75,.2,1), visibility .8s;
}

.story-copy.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.story-index {
  margin: 0 0 24px;
  color: var(--acid);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-copy h2,
.story-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.4vw, 8.7rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .82;
}

.story-copy h2 em,
.story-copy h3 em {
  color: var(--acid);
  font-weight: 400;
}

.story-copy > p:last-child {
  max-width: 430px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  line-height: 1.7;
}

.story-rail {
  position: absolute;
  right: 0;
  bottom: 52px;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
}

.story-rail i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--acid);
  will-change: transform;
}

.story-scroll-hint {
  position: absolute;
  right: 0;
  bottom: 68px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-scroll-hint span {
  margin-left: 9px;
  color: var(--acid);
}

.story-triggers {
  position: relative;
  z-index: 1;
}

.story-triggers i {
  display: block;
  height: 100svh;
}

/* Scroll-driven photo journey */
.photo-journey {
  position: relative;
  height: 430svh;
  background: var(--forest-deep);
  color: #fff;
}

.journey-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
}

.journey-sticky::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 85%, rgba(227,237,150,.1), transparent 27%),
    linear-gradient(120deg, rgba(255,255,255,.025), transparent 45%);
  content: "";
}

.journey-head {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 24%;
  padding-top: calc(var(--header-h) + 15px);
}

.journey-head .section-kicker {
  margin-bottom: 8px;
}

.journey-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .9;
}

.journey-status {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 8px;
  color: rgba(255,255,255,.45);
  font-size: .63rem;
}

.journey-status span:first-child {
  color: var(--acid);
}

.journey-status i {
  width: 45px;
  height: 1px;
  background: rgba(255,255,255,.24);
}

.journey-viewport {
  position: absolute;
  z-index: 2;
  top: 27%;
  right: 0;
  left: 0;
  overflow: visible;
}

.journey-track {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 52px);
  width: max-content;
  padding: 0 16vw 0 max(48px, calc((100vw - min(1360px, calc(100vw - 96px))) / 2));
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.journey-card {
  flex: 0 0 auto;
  width: 58vw;
  max-width: 900px;
  transform: translate3d(0, var(--journey-card-y, 0px), 0);
}

.journey-card-portrait {
  width: 33vw;
  max-width: 500px;
}

.journey-card:nth-child(even) {
  --journey-card-y: 40px;
}

.journey-image {
  height: 52svh;
  min-height: 390px;
  overflow: hidden;
  background: #0c2b24;
}

.journey-card-portrait .journey-image {
  aspect-ratio: 4 / 5;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--journey-image-x, 0px), 0, 0) scale(1.085);
  will-change: transform;
}

.journey-caption {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 14px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.22);
}

.journey-caption span {
  color: var(--acid);
  font-size: .59rem;
}

.journey-caption p {
  margin: -4px 0 0;
  color: rgba(255,255,255,.82);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.65vw, 1.55rem);
}

.journey-progress {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.journey-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--acid);
  will-change: transform;
}

@media (max-width: 820px) {
  .story-sticky {
    min-height: 650px;
  }

  .story-media img {
    object-position: 61% center;
  }

  .story-media figure:nth-child(2) img {
    object-position: 64% center;
  }

  .story-media figure:nth-child(3) img {
    object-position: 65% center;
  }

  .story-shade {
    background:
      linear-gradient(0deg, rgba(4,18,15,.9) 0%, rgba(4,18,15,.4) 64%, rgba(4,18,15,.2) 100%),
      linear-gradient(90deg, rgba(4,18,15,.55), transparent);
  }

  .story-copy-stack {
    bottom: 82px;
    height: 350px;
  }

  .story-copy {
    width: 100%;
  }

  .story-copy h2,
  .story-copy h3 {
    font-size: clamp(3.7rem, 13vw, 6rem);
  }

  .story-copy > p:last-child {
    margin-top: 22px;
  }

  .story-scroll-hint {
    display: none;
  }

  .journey-head {
    height: 22%;
  }

  .journey-head h2 {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .journey-viewport {
    top: 25%;
  }

  .journey-track {
    gap: 22px;
    padding-inline: 20px 25vw;
  }

  .journey-card,
  .journey-card-portrait {
    width: 82vw;
  }

  .journey-image {
    height: 54svh;
    min-height: 360px;
  }
}

@media (max-width: 580px) {
  .story-topline {
    top: calc(var(--header-h) + 22px);
  }

  .story-topline > p:first-child {
    max-width: 220px;
    line-height: 1.5;
  }

  .story-copy-stack {
    height: 330px;
  }

  .story-index {
    margin-bottom: 18px;
    font-size: clamp(.9rem, 4vw, 1.05rem);
  }

  .story-copy h2,
  .story-copy h3 {
    font-size: clamp(3.35rem, 15vw, 4.9rem);
  }

  .story-copy > p:last-child {
    max-width: 340px;
    font-size: .8rem;
  }

  .journey-head {
    align-items: end;
    height: 24%;
  }

  .journey-status {
    display: none;
  }

  .journey-viewport {
    top: 29%;
  }

  .journey-card,
  .journey-card-portrait {
    width: 84vw;
  }

  .journey-image {
    height: 48svh;
    min-height: 320px;
  }

  .journey-caption p {
    font-size: 1.12rem;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 64px, 1000px);
  }

  .site-header {
    padding-inline: 32px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(5rem, 10vw, 8rem);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 440px;
  }

  .promise-grid,
  .contact-grid {
    gap: 70px;
  }

  .editorial-grid {
    gap: 80px;
  }

  .image-stamp {
    right: -30px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 40px);
    --header-h: 72px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-active {
    color: #fff;
  }

  .hero {
    --hero-image-scale: 1.025;
    min-height: 720px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8,27,23,.78), rgba(8,27,23,.18)),
      linear-gradient(0deg, rgba(8,27,23,.82), transparent 70%);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 15vw, 7rem);
    line-height: .82;
  }

  .hero h1 .title-line:last-child {
    margin-left: 0;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 44px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-scroll {
    right: 20px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .manifesto-copy {
    margin-top: 42px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 52px;
  }

  .promise-grid,
  .editorial-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .promise-sticky {
    position: static;
  }

  .promise-grid {
    gap: 75px;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 25px;
  }

  .method-steps::before {
    display: none;
  }

  .step-dot {
    margin-bottom: 20px;
  }

  .editorial-image {
    width: min(82vw, 600px);
  }

  .editorial-copy {
    padding-top: 25px;
  }

  .contact-grid {
    gap: 70px;
  }

  .contact-copy > p:not(.section-kicker) {
    max-width: 600px;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(3.85rem, 18.5vw, 5.6rem);
  }

  .hero h1 .title-line:last-child {
    font-size: .72em;
    letter-spacing: -.07em;
    white-space: nowrap;
  }

  .hero-bottom {
    margin-top: 35px;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .audience-bar {
    padding-block: 16px;
  }

  .marquee-track span {
    padding-inline: 24px;
    font-size: 1.05rem;
  }

  .section-pad {
    padding-block: 92px;
  }

  .display-title {
    font-size: clamp(3.05rem, 14vw, 4.65rem);
  }

  .manifesto-copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-grid,
  .audience-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 430px;
  }

  .promise {
    padding-block: 95px;
  }

  .promise .display-title {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .promise-item {
    grid-template-columns: 32px 1fr;
  }

  .method-head {
    margin-bottom: 55px;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .method-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    padding: 0;
  }

  .step-number {
    grid-row: span 3;
    margin: 3px 0 0;
  }

  .step-dot {
    display: none;
  }

  .method-steps h3 {
    margin-bottom: 7px;
  }

  .editorial-image {
    width: calc(100% - 20px);
  }

  .editorial-image::before {
    top: 14px;
    right: -14px;
    bottom: -14px;
    left: 14px;
  }

  .image-stamp {
    right: -17px;
    bottom: 28px;
    width: 92px;
    height: 92px;
  }

  .image-stamp > svg:not(.stamp-logo) {
    width: 78px;
    height: 78px;
  }

  .image-stamp .stamp-logo {
    width: 31px;
    height: 31px;
  }

  .audience-card {
    min-height: 245px;
    padding: 28px;
  }

  .faq-grid {
    gap: 60px;
  }

  .contact {
    padding-block: 92px;
  }

  .contact-title {
    font-size: clamp(3.45rem, 16.5vw, 5.1rem);
  }

  .contact-form {
    margin-inline: 0;
    padding: 26px 18px 22px;
    border-radius: 24px;
  }

  .form-intro h3 {
    font-size: clamp(2.15rem, 10.3vw, 2.85rem);
    line-height: .96;
  }

  .form-intro h3 br {
    display: none;
  }

  .form-intro-top {
    align-items: flex-start;
  }

  .form-intro {
    margin-bottom: 18px;
    padding-top: 4px;
    padding-bottom: 18px;
  }

  .form-intro > span {
    margin-top: 12px;
    font-size: .8rem;
    line-height: 1.48;
  }

  .form-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .form-path i {
    display: none;
  }

  .form-path span {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: .59rem;
  }

  .form-section {
    margin-bottom: 16px;
    padding: 17px 14px 12px;
    border-radius: 18px;
  }

  .contact-form.is-wizard-ready .form-section {
    min-height: 470px;
    margin-bottom: 0;
  }

  .form-section-head {
    gap: 12px;
    margin-bottom: 15px;
    padding: 0 2px 14px;
  }

  .form-section-head > span {
    width: 36px;
    height: 36px;
    font-size: .68rem;
  }

  .form-section-head strong {
    font-size: 1.28rem;
  }

  .form-section-head small {
    font-size: .7rem;
  }

  .field {
    min-height: 76px;
    margin-bottom: 13px;
    padding: 14px 15px 8px;
    border-radius: 15px;
    background: rgba(255,255,255,.68);
  }

  .field > span {
    margin-bottom: 7px;
    font-size: .69rem;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }

  .field textarea {
    min-height: 112px;
  }

  .check-field {
    grid-template-columns: 20px 1fr;
    gap: 12px;
    margin-bottom: 14px;
    padding: 13px 14px;
    border-radius: 15px;
    font-size: .73rem;
    line-height: 1.55;
  }

  .check-field input {
    width: 19px;
    height: 19px;
  }

  .form-step-actions {
    gap: 10px;
    padding-top: 5px;
  }

  .form-step-actions > p {
    max-width: 112px;
    font-size: .61rem;
  }

  .form-step-next {
    min-width: 148px;
  }

  .form-step-back {
    padding-inline: 14px;
  }

  .form-step-actions-submit {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .form-step-actions-submit .form-step-back {
    width: 50px;
    padding: 0;
  }

  .form-step-actions-submit .form-step-back span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .form-step-actions-submit .form-submit {
    min-width: 0;
    padding-left: 18px;
    font-size: .84rem;
  }

  .form-submit {
    min-height: 70px;
    padding-left: 23px;
    font-size: .96rem;
  }

  .form-submit svg {
    width: 50px;
    height: 50px;
  }

  .form-microcopy {
    margin-top: 10px;
    padding-inline: 10px;
    font-size: .66rem;
    line-height: 1.5;
  }

  .contact-whatsapp {
    max-width: none;
  }

  .whatsapp-float {
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    min-height: 0;
    padding: 7px;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .whatsapp-float img {
    width: 34px;
    height: 34px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 35px;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-signature {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-linen-shine {
    display: none;
  }

  .scroll-story {
    height: 100svh;
  }

  .story-triggers {
    display: none;
  }

  .photo-journey {
    height: auto;
    padding: 100px 0 80px;
  }

  .journey-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .journey-head {
    height: auto;
    padding-top: 0;
  }

  .journey-viewport {
    position: relative;
    top: auto;
    margin-top: 55px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .journey-track {
    padding-left: max(20px, calc((100vw - var(--shell)) / 2));
    transform: none !important;
  }

  .journey-card,
  .journey-card-portrait {
    width: min(76vw, 720px);
  }

  .journey-progress {
    display: none;
  }
}
