@font-face {
  font-family: "Inter";
  src: url("assets/fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #171714;
  --ink-soft: #24231f;
  --paper: #f3f0e9;
  --cream: #e9e2d7;
  --white: #fbfaf7;
  --wine: #5d251f;
  --wine-deep: #431a17;
  --muted: #6f6b62;
  --line: rgba(23, 23, 20, 0.18);
  --font-sans: "Inter", Arial, sans-serif;
  --font-display: var(--font-sans);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --max-width: 92rem;
  --header-height: 5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: normal;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

[data-parallax-media] {
  overflow: hidden;
}

.parallax-plane {
  --parallax-wrapper-y: 0%;
  --parallax-image-y: 0%;
  --image-reveal-scale: 1;
  width: 100%;
  transform: translate3d(0, var(--parallax-wrapper-y), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.parallax-plane > img {
  transform: translate3d(0, var(--parallax-image-y), 0) scale(var(--image-reveal-scale));
  transform-origin: center;
  will-change: transform;
}

.hero-visual > .parallax-plane,
.limited-visual > .parallax-plane,
.contact-image > .parallax-plane {
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.section-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-light {
  background: var(--paper);
}

.section-cream {
  background: var(--cream);
}

.section-wine {
  color: var(--white);
  background: var(--wine);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-inline: var(--gutter);
  color: var(--ink);
  background: rgba(243, 240, 233, 0.84);
  backdrop-filter: blur(10px);
  transition: background-color 280ms ease, color 280ms ease, border-color 280ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.16;
  transform: scaleX(0);
  transform-origin: left;
  animation: header-line-draw 1.1s var(--ease) 180ms forwards;
}

@keyframes header-line-draw {
  to { transform: scaleX(1); }
}

.site-header.is-scrolled {
  background: rgba(243, 240, 233, 0.94);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.46rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.wordmark span {
  font-weight: 400;
}

.wordmark em {
  color: var(--wine);
  font-weight: 400;
}

.brand-role {
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: clamp(0.46rem, 0.65vw, 0.54rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-role i {
  margin-inline: 0.18rem;
  font-style: normal;
  opacity: 0.55;
}

.site-header .wordmark,
.site-header .brand-role,
.site-header .story-status-label,
.site-header .story-progress,
.site-header .header-actions {
  opacity: 0;
  animation: header-item-in 720ms var(--ease) forwards;
}

.site-header .wordmark {
  animation-delay: 80ms;
}

.site-header .brand-role {
  animation-delay: 160ms;
}

.site-header .story-status-label,
.site-header .story-progress {
  animation-delay: 240ms;
}

.site-header .header-actions {
  animation-delay: 320ms;
}

@keyframes header-item-in {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, 0.55rem, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
}

.story-status {
  position: absolute;
  right: var(--gutter);
  bottom: -1px;
  left: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.story-status-label {
  display: none;
  flex: none;
  min-width: 9rem;
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-progress {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: transparent;
}

.story-progress i {
  position: absolute;
  inset: 0;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.language {
  padding: 0.3rem;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 0.66rem;
  cursor: pointer;
  opacity: 0.4;
}

.language.is-active {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(44rem, 100svh);
  padding-top: var(--header-height);
  background: var(--paper);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem var(--gutter) 3.2rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(17, 16, 14, 0.92) 0%, rgba(17, 16, 14, 0.38) 62%, transparent 100%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 100% 0);
  animation: hero-frame-in 1.15s var(--ease) 120ms forwards;
  will-change: clip-path;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), transparent 30%);
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: var(--cms-focus-mobile, 50% 22%);
}

.eyebrow span {
  margin-inline: 0.35rem;
  opacity: 0.55;
}

.eyebrow,
.section-index,
.section-note {
  font-size: clamp(0.63rem, 0.8vw, 0.74rem);
  font-weight: 500;
  letter-spacing: 0.105em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin-top: 0;
  font-size: clamp(3.15rem, 13vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero-title-line {
  display: block;
}

.hero h1 em,
.bilingual h2 em,
.philosophy-statement em {
  font-family: var(--font-display);
  font-weight: 400;
}

.hero h1 em {
  display: block;
}

.hero-lead {
  max-width: 33rem;
  margin-top: clamp(1.5rem, 4vh, 3rem);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.manifesto {
  padding-block: clamp(7rem, 13vw, 13rem);
}

.manifesto-grid {
  display: grid;
  gap: 4rem;
}

.section-index {
  opacity: 0.6;
}

.manifesto-kicker {
  margin-bottom: 1.2rem;
  color: rgba(243, 240, 233, 0.8);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1.45;
  text-transform: uppercase;
}

.display-heading {
  font-size: clamp(2.25rem, 6vw, 5.3rem);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.manifesto .display-heading {
  max-width: 13ch;
}

.manifesto .display-heading .display-accent {
  display: block;
  margin-top: 0.18em;
  color: #b6a79a;
  font-family: var(--font-display);
  font-weight: 400;
}

.manifesto-text {
  display: grid;
  gap: 1.8rem;
  max-width: 42rem;
  margin-top: 3rem;
  color: rgba(243, 240, 233, 0.68);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.about,
.bilingual,
.philosophy,
.journey,
.testimonials,
.faq {
  padding-block: clamp(6.5rem, 11vw, 11rem);
}

.about,
.bilingual {
  padding-block: clamp(5.5rem, 8vw, 8rem);
}

.section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid currentColor;
}

.section-heading-row .section-note {
  max-width: 20rem;
  text-align: right;
  opacity: 0.6;
}

.about-grid {
  display: grid;
  gap: 3rem;
  margin-top: clamp(3rem, 5vw, 5rem);
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 38rem;
  overflow: hidden;
  background: #d4d4d1;
}

.portrait-frame::after,
.bilingual-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.portrait-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: var(--cms-focus-mobile, 50% 24%);
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-copy .display-heading {
  max-width: 14ch;
  margin-top: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.about .large-copy {
  max-width: 38rem;
  margin-top: 2rem;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
}

.about .body-copy {
  margin-top: 1.15rem;
}

.large-copy {
  max-width: 42rem;
  margin-top: 2.5rem;
  font-size: clamp(1.18rem, 2.3vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.body-copy {
  max-width: 37rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.7;
}

.experience-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2.75rem, 4vw, 4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.experience-mark strong {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.7;
}

.experience-mark sup {
  position: relative;
  top: -1.5em;
  font-family: var(--font-sans);
  font-size: 0.24em;
}

.experience-mark span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bilingual {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
}

.bilingual-grid {
  display: grid;
  gap: clamp(4rem, 8vw, 8rem);
  margin-top: clamp(3rem, 5vw, 5rem);
}

.bilingual-copy .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.bilingual-copy .display-heading {
  margin-top: 1.4rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.bilingual .large-copy {
  max-width: 38rem;
  margin-top: 2rem;
  font-size: clamp(1.08rem, 1.65vw, 1.4rem);
}

.bilingual .body-copy {
  margin-top: 1.15rem;
}

.bilingual .body-copy {
  color: rgba(255, 255, 255, 0.62);
}

.service-list {
  margin-top: 2.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.service-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
}

.service-list li.reveal {
  transform: translate3d(-1.75rem, 0, 0);
}

.service-list li.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.service-list li:nth-child(1) {
  --reveal-delay: 80ms !important;
  --line-delay: 80ms !important;
}

.service-list li:nth-child(2) {
  --reveal-delay: 240ms !important;
  --line-delay: 240ms !important;
}

.service-list li:nth-child(3) {
  --reveal-delay: 400ms !important;
  --line-delay: 400ms !important;
}

.service-list li:nth-child(4) {
  --reveal-delay: 560ms !important;
  --line-delay: 560ms !important;
}

.service-list span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
}

.bilingual-visual {
  position: relative;
  align-self: end;
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.bilingual-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: var(--cms-focus-mobile, 50% 24%);
}

.philosophy-statement {
  max-width: 24ch;
  margin-top: clamp(4rem, 8vw, 8rem);
  font-size: clamp(2.4rem, 6vw, 6.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.philosophy-statement em {
  color: var(--wine);
}

[data-letter-reveal] {
  opacity: 0;
}

[data-letter-reveal].is-letter-ready,
[data-letter-reveal].is-letter-visible {
  opacity: 1;
}

.letter-reveal-word {
  display: inline-block;
  white-space: nowrap;
}

[data-letter-reveal].is-letter-ready .letter-reveal-char {
  display: inline-block;
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, .38em, 0) scale(.985);
  transform-origin: 50% 100%;
  transition:
    opacity 720ms var(--ease),
    filter 820ms var(--ease),
    transform 850ms var(--ease);
  transition-delay: var(--letter-delay, 0ms);
  will-change: opacity, filter, transform;
}

[data-letter-reveal].is-letter-visible .letter-reveal-char {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.principles {
  display: grid;
  gap: 3rem;
  margin-top: clamp(5rem, 10vw, 11rem);
}

.principle {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.principle.reveal {
  transform: translate3d(-2.25rem, 0, 0);
}

.principle.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.principle.reveal-delay-1 {
  --reveal-delay: 80ms;
  --line-delay: 80ms !important;
}

.principle.reveal-delay-2 {
  --reveal-delay: 280ms;
  --line-delay: 280ms !important;
}

.principle.reveal-delay-3 {
  --reveal-delay: 480ms;
  --line-delay: 480ms !important;
}

.principle > span,
.process-number {
  color: var(--wine);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.principle h3 {
  margin-top: 2.5rem;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.principle p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.limited {
  display: grid;
}

.limited-visual {
  min-height: 35rem;
  overflow: hidden;
}

.limited-visual img {
  height: 100%;
  object-fit: cover;
  object-position: var(--cms-focus-mobile, 50% 25%);
}

.limited-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 9vw, 9rem) var(--gutter);
}

.limited-copy .display-heading {
  max-width: 10ch;
  margin-top: clamp(4rem, 7vw, 7rem);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

.limited-copy .large-copy {
  color: #b6a79a;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.limited-copy .body-copy {
  color: rgba(243, 240, 233, 0.62);
}

.limited-note {
  max-width: 34rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(243, 240, 233, 0.24);
  color: #b6a79a;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.journey {
  overflow: hidden;
}

.journey-intro {
  display: grid;
  justify-items: center;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.journey-intro .display-heading {
  max-width: 12ch;
  margin-top: 1.5rem;
}

.journey-intro .large-copy {
  max-width: 40rem;
  margin-top: 2rem;
}

.journey-map {
  position: relative;
  width: min(100%, 48rem);
  margin: clamp(5rem, 8vw, 8rem) auto 0;
}

.journey-moments {
  display: grid;
  justify-items: center;
}

.journey-moment {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.journey-moment::after {
  width: 1px;
  height: clamp(4.5rem, 8vw, 7rem);
  margin-block: clamp(2rem, 4vw, 3.5rem);
  content: "";
  background: repeating-linear-gradient(to bottom, rgba(93, 37, 31, 0.5) 0 3px, transparent 3px 7px);
  opacity: 0.65;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 900ms var(--ease);
}

.journey-moment:last-child::after {
  display: none;
}

.journey-moment.is-passed::after {
  transform: scaleY(1);
}

.journey-number {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid rgba(93, 37, 31, 0.72);
  border-radius: 50%;
  color: var(--wine);
  background: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  transition: color 450ms ease, background-color 450ms ease, transform 500ms var(--ease);
}

.journey-moment.is-passed .journey-number {
  color: var(--paper);
  background: var(--wine);
  transform: scale(1.04);
}

.journey-time {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-moment h3 {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.journey-moment > p:last-child {
  max-width: 28rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
}

.journey-statement {
  max-width: 23ch;
  margin: clamp(6rem, 10vw, 10rem) auto 0;
  text-align: center;
  font-size: clamp(2.1rem, 5.5vw, 5.6rem);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.journey-statement em {
  --read-ink: var(--wine);
  --unread-ink: rgba(93, 37, 31, 0.13);
  font-family: var(--font-display);
  font-weight: 400;
}

.process .section-shell {
  display: grid;
  gap: clamp(4rem, 10vw, 9rem);
}

.process-intro .display-heading {
  max-width: 10ch;
  margin-top: 4rem;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.process-list h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 30rem;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-icon {
  font-size: 1rem;
  transition: transform 300ms var(--ease);
}

.process-list li:hover .process-icon {
  transform: translate(0.25rem, -0.25rem);
}

.testimonial-header {
  display: grid;
  gap: 3rem;
  padding-bottom: clamp(4rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.testimonial-header .display-heading {
  max-width: 12ch;
  margin-top: 4rem;
}

.testimonial-grid {
  display: grid;
}

.testimonial {
  display: flex;
  flex-direction: column;
  min-height: 17rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.testimonial blockquote {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.testimonial figcaption {
  display: grid;
  gap: 0.1rem;
  margin-top: auto;
  padding-top: 2rem;
}

.testimonial figcaption strong {
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonial figcaption span {
  color: var(--muted);
  font-size: 0.7rem;
}

.source-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  gap: clamp(4rem, 10vw, 10rem);
}

.faq {
  background: rgb(233, 226, 215);
}

.faq-intro .display-heading {
  max-width: 10ch;
  margin-top: 4rem;
}

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

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  font-size: inherit;
}

.accordion-item button {
  display: grid;
  grid-template-columns: 1fr 1.5rem;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  padding: 1.6rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion-item button span {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.accordion-item button i {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
}

.accordion-item button i::before,
.accordion-item button i::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 280ms var(--ease);
}

.accordion-item button i::after {
  transform: rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease);
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  max-width: 40rem;
  padding: 0 2.5rem 1.7rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-item:has(button[aria-expanded="true"]) .accordion-panel {
  grid-template-rows: 1fr;
}

.contact {
  position: relative;
  min-height: min(63rem, 100svh);
  overflow: hidden;
}

.contact-image,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-image img {
  height: 100%;
  object-fit: cover;
  object-position: var(--cms-focus-mobile, 55% 20%);
}

.contact-overlay {
  background: linear-gradient(90deg, rgba(14, 14, 12, 0.95) 0%, rgba(14, 14, 12, 0.83) 50%, rgba(14, 14, 12, 0.26) 100%);
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: inherit;
  padding-block: 8rem 5rem;
}

.contact-title {
  max-width: 11ch;
  margin-top: 4rem;
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.contact-lead {
  max-width: 38rem;
  margin-top: 2.5rem;
  color: rgba(243, 240, 233, 0.68);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}

.email-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 39rem);
  margin-top: 3rem;
  padding: 0 0 0.8rem;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
}

.email-link span {
  transition: transform 300ms var(--ease);
}

.email-link:hover span {
  transform: translate(0.3rem, -0.3rem);
}

.draw-line-top,
.draw-line-bottom {
  --draw-line-color: var(--line);
  --line-delay: 0ms;
  position: relative;
}

.draw-line-top {
  border-top: 0 !important;
}

.draw-line-bottom {
  border-bottom: 0 !important;
}

.draw-line-top::before,
.draw-line-bottom::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--draw-line-color);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.05s var(--ease) var(--line-delay);
}

.draw-line-top::before {
  top: 0;
}

.draw-line-bottom::after {
  bottom: 0;
}

.draw-line-top.is-line-visible::before,
.draw-line-bottom.is-line-visible::after {
  transform: scaleX(1);
}

.section-dark .draw-line-top,
.section-dark .draw-line-bottom,
.section-wine .draw-line-top,
.section-wine .draw-line-bottom,
.contact .draw-line-top,
.contact .draw-line-bottom {
  --draw-line-color: rgba(243, 240, 233, 0.24);
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity 800ms var(--ease),
    filter 850ms var(--ease),
    transform 900ms var(--ease);
  transition-delay: var(--reveal-delay);
  will-change: opacity, filter, transform;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.portrait-frame.reveal,
.bilingual-visual.reveal,
.limited-visual.reveal,
.contact-image.reveal {
  overflow: hidden;
}

.portrait-frame.reveal img,
.bilingual-visual.reveal img,
.limited-visual.reveal img,
.contact-image.reveal img {
  --image-reveal-scale: 1.045;
  transition: transform 1.25s var(--ease), filter 1.1s ease;
}

.portrait-frame.reveal.is-visible img,
.bilingual-visual.reveal.is-visible img,
.limited-visual.reveal.is-visible img,
.contact-image.reveal.is-visible img {
  --image-reveal-scale: 1;
}

.hero-visual img {
  animation: hero-image-in 1.45s var(--ease) 120ms both;
}

.hero-title-line,
.hero-title em,
.hero-lead {
  opacity: 0;
  filter: blur(5px);
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 0.55em, 0);
  animation: hero-copy-in 920ms var(--ease) forwards;
  will-change: opacity, filter, clip-path, transform;
}

.hero-title-line {
  animation-delay: 380ms;
}

.hero-title em {
  animation-delay: 500ms;
}

.hero-lead {
  animation-delay: 680ms;
}

@keyframes hero-frame-in {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-copy-in {
  to {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0.72;
    filter: blur(3px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.reveal-delay-1 { --reveal-delay: 100ms; }
.reveal-delay-2 { --reveal-delay: 180ms; }
.reveal-delay-3 { --reveal-delay: 260ms; }

@media (min-width: 44rem) {
  .story-status {
    right: auto;
    top: 50%;
    bottom: auto;
    left: 50%;
    width: clamp(18rem, 31vw, 30rem);
    transform: translate(-50%, -50%);
  }

  .story-status-label {
    display: block;
  }

  .story-progress {
    height: 1px;
    background: var(--line);
  }

  .hero-copy {
    padding-bottom: 5rem;
  }

  .manifesto-text {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: minmax(18rem, 0.95fr) minmax(22rem, 1.05fr);
    align-items: center;
  }

  .about-copy {
    padding-top: 0;
  }

  .principles {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial {
    min-height: 23rem;
    padding: 3rem 2rem;
    border-right: 1px solid var(--line);
  }

  .testimonial figcaption {
    padding-top: 3rem;
  }

  .testimonial:first-child {
    padding-left: 0;
  }

  .testimonial:last-child {
    padding-right: 0;
    border-right: 0;
  }

}

@media (min-width: 62rem) {
  :root {
    --header-height: 5.5rem;
  }

  .hero {
    grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
    height: max(44rem, 100svh);
  }

  .hero-copy {
    grid-column: 1;
    justify-content: center;
    padding: calc(var(--header-height) + 1.5rem) clamp(2.5rem, 5vw, 5rem) 2rem var(--gutter);
    color: var(--ink);
    background: none;
  }

  .hero-visual {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
  }

  .hero-visual img {
    object-position: var(--cms-focus-desktop, 50% 0);
  }

  .portrait-frame img {
    object-position: var(--cms-focus-desktop, 50% 24%);
  }

  .bilingual-visual img {
    object-position: var(--cms-focus-desktop, 50% 24%);
  }

  .limited-visual img {
    object-position: var(--cms-focus-desktop, 50% 25%);
  }

  .contact-image img {
    object-position: var(--cms-focus-desktop, 55% 20%);
  }

  .hero h1 {
    font-size: clamp(4.1rem, 6vw, 6.7rem);
  }

  .hero-lead {
    max-width: 28rem;
    margin-top: 1.25rem;
  }

  .manifesto-grid {
    grid-template-columns: minmax(8rem, 0.32fr) 1fr;
  }

  .about-grid {
    grid-template-columns: minmax(24rem, 0.95fr) minmax(28rem, 1.05fr);
    gap: clamp(3rem, 5vw, 5rem);
  }

  .portrait-frame {
    margin-left: 0;
  }

  .bilingual-grid {
    grid-template-columns: minmax(28rem, 1.05fr) minmax(22rem, 0.95fr);
    align-items: center;
    gap: clamp(3rem, 5vw, 5rem);
  }

  .limited {
    grid-template-columns: 1fr 1fr;
    min-height: 55rem;
  }

  .limited-visual {
    min-height: 100%;
  }

  .limited-copy {
    padding-right: max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
  }

  .process .section-shell,
  .faq-grid {
    grid-template-columns: minmax(19rem, 0.7fr) minmax(28rem, 1.3fr);
  }

  .process-list li {
    grid-template-columns: 3.5rem 1fr auto;
    padding-block: 2rem;
  }

.contact-content {
    padding-right: 42%;
  }
}

.consent-banner[hidden],
.consent-modal[hidden],
.privacy-settings-trigger[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  z-index: 100;
  right: clamp(.75rem, 2vw, 1.5rem);
  bottom: clamp(.75rem, 2vw, 1.5rem);
  left: auto;
  display: grid;
  gap: .7rem;
  width: min(22rem, calc(100vw - 1.5rem));
  margin: 0;
  padding: .9rem;
  border: 1px solid rgba(251, 250, 247, .18);
  color: var(--white);
  background: rgba(23, 23, 20, .94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}

.consent-banner h2 {
  margin: 0 0 .35rem;
  padding-right: 6.25rem;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.consent-dialog h2 {
  margin: 0 0 .65rem;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.consent-banner-copy > p:not(.consent-eyebrow) {
  margin: 0;
  color: rgba(251, 250, 247, .72);
  font-size: .72rem;
  line-height: 1.42;
}

.consent-banner-copy > a,
.consent-policy-link {
  display: inline-block;
  margin-top: .45rem;
  border-bottom: 1px solid currentColor;
  font-size: .68rem;
}

.consent-eyebrow {
  margin: 0 0 .8rem;
  color: #c9a59c;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
}

.consent-dialog-actions {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: .65rem;
}

.consent-button {
  min-height: 2.35rem;
  border: 1px solid rgba(251, 250, 247, .5);
  padding: .55rem .65rem;
  font: inherit;
  font-size: .68rem;
  font-weight: 600;
  cursor: pointer;
}

.consent-button-primary {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.consent-button-secondary {
  color: var(--white);
  background: transparent;
}

.consent-settings-link {
  position: absolute;
  top: .72rem;
  right: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 0;
  padding: .15rem;
  color: rgba(251, 250, 247, .76);
  background: transparent;
  font: inherit;
  font-size: .65rem;
  cursor: pointer;
}

.consent-settings-link span {
  font-size: .75rem;
  line-height: 1;
}

.consent-settings-link:hover {
  color: var(--white);
}

.consent-button:focus-visible,
.consent-settings-link:focus-visible,
.consent-close:focus-visible,
.privacy-settings-trigger:focus-visible {
  outline: 3px solid #c9a59c;
  outline-offset: 3px;
}

.consent-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 1rem;
  background: rgba(23, 23, 20, .66);
  backdrop-filter: blur(10px);
}

.has-consent-modal { overflow: hidden; }

.consent-dialog {
  position: relative;
  width: min(44rem, 100%);
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.consent-dialog .consent-eyebrow { color: var(--wine); }
.consent-dialog-intro { margin-bottom: 1.5rem; color: var(--muted); }
.consent-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.consent-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.consent-category strong { font-size: 1rem; }
.consent-category p { margin: .3rem 0 0; color: var(--muted); font-size: .82rem; }
.consent-category > span { color: var(--wine); font-size: .7rem; font-weight: 600; text-transform: uppercase; }
.consent-category input {
  width: 1.4rem;
  height: 1.4rem;
  accent-color: var(--wine);
}

.consent-dialog-actions {
  margin-top: 1.3rem;
}

.consent-dialog .consent-button-primary {
  border-color: var(--wine);
  color: var(--white);
  background: var(--wine);
}

.consent-dialog .consent-button-secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.privacy-settings-trigger {
  position: fixed;
  z-index: 90;
  bottom: .75rem;
  left: .75rem;
  border: 1px solid rgba(23, 23, 20, .22);
  padding: .55rem .75rem;
  color: var(--ink);
  background: rgba(243, 240, 233, .92);
  font: inherit;
  font-size: .68rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.privacy-settings-trigger::before {
  content: "⚙";
  margin-right: .4rem;
  font-size: .8rem;
}

.privacy-page { min-height: 100vh; }
.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: .75rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.privacy-header .brand-lockup { position: static; }
.privacy-main {
  width: min(76rem, calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem) 0 7rem;
}

.privacy-back {
  display: inline-block;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  color: var(--muted);
  font-size: .78rem;
}

.privacy-title-block {
  max-width: 64rem;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.privacy-title-block h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.07em;
}

.privacy-updated { margin: 1.5rem 0 0; color: var(--wine); font-size: .78rem; }
.privacy-intro { max-width: 48rem; margin-top: 2.5rem; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.privacy-content { max-width: 58rem; margin-left: auto; }
.privacy-section {
  display: grid;
  grid-template-columns: minmax(12rem, .6fr) minmax(0, 1.4fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

.privacy-section h2 { margin: 0; font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.15; }
.privacy-section p { margin: 0 0 1rem; color: var(--muted); }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-email {
  display: inline-block;
  margin-top: 3rem;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

@media (max-width: 52rem) {
  .privacy-section { grid-template-columns: 1fr; }
}

@media (max-width: 35rem) {
  .consent-banner {
    right: .5rem;
    bottom: .5rem;
    width: calc(100vw - 1rem);
    padding: .85rem;
  }
  .consent-dialog-actions { display: grid; grid-template-columns: 1fr; }
  .consent-dialog-actions .consent-button { width: 100%; }
  .privacy-main { width: calc(100% - 2rem); }
  .privacy-header { padding-inline: 1rem; }
  .privacy-header .brand-role { display: none; }
}

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

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

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

  [data-letter-reveal] .letter-reveal-char {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .parallax-plane {
    --parallax-wrapper-y: 0% !important;
    --parallax-image-y: 0% !important;
    transform: none !important;
    will-change: auto;
  }

  .parallax-plane > img {
    transform: none !important;
    will-change: auto;
  }

}
