@font-face {
  font-family: "Mogans Serif";
  src: url("assets/fonts/MogansSerif-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mogans Serif";
  src: url("assets/fonts/MogansSerif-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mogans Sans";
  src: url("assets/fonts/MogansSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mogans Sans";
  src: url("assets/fonts/MogansSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1d221d;
  --forest: #253126;
  --moss: #536152;
  --sage: #b5bc9f;
  --ivory: #f5f1e8;
  --paper: #fbf9f3;
  --rose: #e6aaa4;
  --amber: #a56a40;
  --line: rgba(29, 34, 29, 0.18);
  --serif: "Mogans Serif", Georgia, serif;
  --sans: "Mogans Sans", Arial, sans-serif;
  --page: min(92vw, 1440px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--forest); color: var(--ivory); }

.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;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.section { width: var(--page); margin-inline: auto; }
.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.lede { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.45; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 88px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--forest);
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, min-height 0.35s ease, border-color 0.35s ease;
}
.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(251, 249, 243, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand__name { font-family: var(--sans); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.25em; }
.brand__origin { margin-top: 6px; font-family: var(--serif); font-size: 0.65rem; font-style: italic; letter-spacing: 0.12em; }
.main-nav { margin-left: auto; display: flex; gap: 2rem; }
.main-nav a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.language-switcher { position: relative; z-index: 4; flex: 0 0 auto; }
.language-switcher__toggle {
  min-width: 72px;
  height: 44px;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(37,49,38,0.28);
  border-radius: 999px;
  color: inherit;
  background: rgba(251,249,243,0.42);
  font: 700 0.66rem/1 var(--sans);
  letter-spacing: 0.12em;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.language-switcher__toggle:hover, .language-switcher__toggle:focus-visible, .language-switcher.is-open .language-switcher__toggle { border-color: currentColor; background: rgba(251,249,243,0.86); outline: none; }
.language-switcher__flag, .language-switcher__menu button > span { font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: 1.15rem; line-height: 1; letter-spacing: 0; }
.language-switcher__chevron { margin-top: -0.15rem; font-size: 0.8rem; transition: transform 0.25s ease; }
.language-switcher.is-open .language-switcher__chevron { transform: rotate(180deg); }
.language-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: 230px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(251,249,243,0.98);
  box-shadow: 0 22px 55px rgba(21,28,22,0.18);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  max-height: min(70vh, 520px);
  overflow-y: auto;
}
.language-switcher.is-open .language-switcher__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.language-switcher__menu button {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 0.65rem;
  align-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.language-switcher__menu button:hover, .language-switcher__menu button:focus-visible { background: rgba(83,97,82,0.09); outline: none; }
.language-switcher__menu button[aria-checked="true"] { background: var(--forest); color: var(--ivory); }
.language-switcher__menu strong { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; }
.language-switcher__menu small { font-size: 0.58rem; letter-spacing: 0.12em; opacity: 0.68; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 9rem 7vw 5rem;
  background: #d7d0bf url("assets/hero.jpg") center center / cover no-repeat;
  overflow: hidden;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 241, 231, 0.04) 35%, rgba(246, 241, 231, 0.82) 68%, rgba(246, 241, 231, 0.96) 100%);
}
.hero__content { position: relative; z-index: 1; width: min(47vw, 700px); }
.hero h1 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7.3vw, 9rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}
.hero h1 em { font-weight: 400; }
.hero__lead { max-width: 560px; margin: 2.3rem 0; font-size: clamp(1rem, 1.3vw, 1.25rem); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link > span[aria-hidden="true"] { font-size: 1.25rem; transition: transform 0.3s ease; }
.text-link:hover > span[aria-hidden="true"] { transform: translate(3px, 3px); }
.hero__note {
  position: absolute;
  z-index: 1;
  left: 4vw;
  bottom: 2.5rem;
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 4rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.intro { position: relative; padding-block: clamp(7rem, 14vw, 13rem); }
.intro__mark {
  position: absolute;
  right: 0;
  top: 7%;
  color: rgba(37, 49, 38, 0.06);
  font-family: serif;
  font-size: clamp(11rem, 24vw, 28rem);
  line-height: 1;
}
.intro__copy { position: relative; z-index: 1; max-width: 1050px; }
.intro__copy .display { max-width: 980px; }
.intro__copy .lede { width: min(78%, 900px); margin: 3rem 0 0 auto; }
.intro__facts {
  position: relative;
  z-index: 1;
  margin-top: clamp(5rem, 10vw, 9rem);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
}
.intro__facts div { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 1rem; }
.intro__facts strong { font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.4rem); font-weight: 400; line-height: 1; }
.intro__facts span { padding-top: 0.35rem; font-size: 0.73rem; line-height: 1.5; letter-spacing: 0.07em; text-transform: uppercase; }

.rituals { background: var(--ivory); }
.section-heading { padding-block: clamp(6rem, 11vw, 10rem); }
.section-heading .display { max-width: 1100px; }
.ritual {
  position: relative;
  min-height: 850px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  overflow: hidden;
}
.ritual__number {
  position: absolute;
  z-index: 3;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}
.ritual__stage { position: relative; min-height: 720px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ritual__halo {
  position: absolute;
  width: min(70%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  filter: blur(2px);
}
.ritual__stage .product { position: relative; z-index: 1; height: min(70vh, 610px); width: auto; object-fit: contain; filter: drop-shadow(0 35px 30px rgba(28, 31, 25, 0.14)); }
.ritual__stage .product--left { transform: translate(10%, -2%) rotate(-1.5deg); }
.ritual__stage .product--right { transform: translate(-12%, 7%) rotate(2deg); }
.ritual__content { padding: clamp(5rem, 9vw, 9rem) clamp(2.5rem, 7vw, 8rem); display: flex; flex-direction: column; justify-content: center; }
.ritual__content h3 { margin: 0; font-family: var(--serif); font-size: clamp(3.4rem, 5.2vw, 6.5rem); font-weight: 400; line-height: 0.9; letter-spacing: -0.04em; }
.ritual__scent { margin: 1.4rem 0 2.4rem; font-family: var(--serif); font-size: 1.05rem; font-style: italic; letter-spacing: 0.06em; }
.ritual__content > p:not(.eyebrow):not(.ritual__scent) { max-width: 590px; font-size: 1.02rem; }
.clean-list { margin: 1.6rem 0 2.6rem; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 0.7rem 0 0.7rem 1.3rem; border-bottom: 1px solid rgba(255,255,255,0.28); font-size: 0.8rem; letter-spacing: 0.04em; }
.clean-list li::before { content: "·"; position: absolute; left: 0; font-size: 1.4rem; line-height: 0.7; }
.ritual__meta { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ritual__meta span { padding: 0.48rem 0.72rem; border: 1px solid currentColor; border-radius: 999px; font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ritual--hakuju { color: #f3efe3; background: #4b5548; }
.ritual--hakuju .ritual__stage { color: var(--ink); background: #c6bca7; }
.ritual--koromo { color: #3f2727; background: #e2aaa8; }
.ritual--koromo .ritual__stage { background: #f1d5cd; }
.ritual--koromo .ritual__number { color: #3f2727; }
.ritual--koromo .clean-list li { border-color: rgba(63,39,39,0.25); }
.ritual--souka { color: #ede9da; background: #3b463b; }
.ritual--souka .ritual__stage { color: var(--ink); background: #aeb69c; }

.formula { padding-block: clamp(7rem, 13vw, 13rem); }
.formula__intro { display: grid; grid-template-columns: 0.25fr 1.2fr 0.75fr; gap: 3rem; align-items: start; }
.formula__intro .eyebrow { grid-column: 1; padding-top: 0.8rem; }
.formula__intro .display { grid-column: 2; }
.formula__intro > p:last-child { grid-column: 3; margin: 0; font-size: 1rem; }
.formula__grid { margin-top: 7rem; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.formula__grid > div { min-height: 250px; padding: 1.5rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.formula__grid > div:last-child { border-right: 0; }
.formula__grid span { font-family: var(--serif); font-style: italic; }
.formula__grid strong { margin: auto 0 0.6rem; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.1; }
.formula__grid p { margin: 0; font-size: 0.8rem; }
.formula__fineprint { margin: 1.2rem 0 0; font-size: 0.67rem; opacity: 0.7; }

.finishing { padding-bottom: clamp(7rem, 12vw, 12rem); }
.section-heading--split { display: grid; grid-template-columns: 1.5fr 0.5fr; gap: 5rem; align-items: end; }
.section-heading--split > p { margin: 0; }
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.product-card { background: var(--paper); padding-bottom: 2.5rem; }
.product-card > p, .product-card > h3 { margin-left: 2rem; margin-right: 2rem; }
.product-card__visual { position: relative; height: 550px; margin-bottom: 2.5rem; display: grid; place-items: center; overflow: hidden; }
.product-card__visual::after { content: ""; position: absolute; width: 62%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,0.22); }
.product-card__visual img { position: relative; z-index: 1; width: auto; height: 76%; object-fit: contain; filter: drop-shadow(0 24px 18px rgba(22,28,23,0.18)); transition: transform 0.5s ease; }
.product-card:hover .product-card__visual img { transform: translateY(-10px) rotate(1deg); }
.product-card__no { position: absolute; z-index: 1; left: 1.4rem; top: 1rem; font-family: var(--serif); font-size: 5rem; opacity: 0.15; }
.product-card--blue .product-card__visual { background: #718088; }
.product-card--amber .product-card__visual { background: #bd9b79; }
.product-card--green .product-card__visual { background: #687a70; }
.product-card h3 { margin-top: 0; margin-bottom: 0.3rem; font-family: var(--serif); font-size: 2.7rem; font-weight: 400; line-height: 1; }
.product-card__type { margin-top: 0; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-card > p:last-child { font-size: 0.9rem; }

.refill { min-height: 760px; display: grid; grid-template-columns: 0.9fr 1.1fr; background: #d6ddc6; overflow: hidden; }
.refill__copy { padding: clamp(5rem, 9vw, 9rem) clamp(2.5rem, 7vw, 8rem); display: flex; flex-direction: column; justify-content: center; }
.refill__copy > p:not(.eyebrow) { max-width: 580px; margin: 2rem 0; }
.refill__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.refill__tags span { padding: 0.45rem 0.75rem; border: 1px solid var(--ink); border-radius: 999px; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }
.refill__visual { position: relative; min-height: 680px; background: #536453; overflow: hidden; }
.refill__visual::before { content: "REFILL"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-90deg); font-family: var(--serif); font-size: min(15vw, 13rem); color: rgba(255,255,255,0.06); }
.refill__pouch { position: absolute; z-index: 1; height: 62%; width: auto; object-fit: contain; filter: drop-shadow(0 25px 20px rgba(0,0,0,0.25)); }
.refill__pouch--one { left: 7%; top: 17%; transform: rotate(-6deg); }
.refill__pouch--two { left: 33%; top: 9%; transform: rotate(3deg); }
.refill__pouch--three { right: 4%; top: 20%; transform: rotate(7deg); }

.details { padding-block: clamp(8rem, 14vw, 14rem); }
.details__heading { max-width: 980px; margin-bottom: 6rem; }
.details__heading > p:not(.eyebrow):not(.details__hint) { max-width: 680px; margin: 2rem 0 0; }
.details__heading .details__hint { margin-top: 1rem; color: var(--moss); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.carousel { position: relative; }
.carousel__controls {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.carousel__controls > p { margin: 0; font-family: var(--serif); font-size: 1rem; letter-spacing: 0.08em; }
.carousel__controls > div { display: flex; }
.carousel__button {
  width: 64px;
  height: 64px;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.carousel__button:hover, .carousel__button:focus-visible { color: var(--ivory); background: var(--forest); outline: none; }
.carousel__viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__viewport:focus-visible { outline: 1px solid var(--forest); outline-offset: 8px; }
.carousel__track { display: flex; gap: 1.25rem; }
.index-card { position: relative; flex: 0 0 calc((100% - 2.5rem) / 3); min-width: 0; padding-bottom: 2.6rem; scroll-snap-align: start; scroll-snap-stop: always; }
.index-card__visual {
  position: relative;
  height: clamp(460px, 43vw, 660px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.index-card__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  filter: blur(1px);
}
.index-card__visual > span {
  position: absolute;
  left: 1.2rem;
  top: 0.85rem;
  color: rgba(255,255,255,0.42);
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 7.5rem);
  line-height: 1;
}
.index-card__visual img {
  width: auto;
  height: 76%;
  max-width: 86%;
  object-fit: contain;
  filter: drop-shadow(0 28px 22px rgba(18,24,19,0.23));
  transform: translateY(2%);
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1);
}
.index-card:hover .index-card__visual img { transform: translateY(-1%); }
.index-card__visual--olive { background: #8d8c76; }
.index-card__visual--sage { background: #b8bda7; }
.index-card__visual--rose { background: #c78f8d; }
.index-card__visual--blush { background: #e4c0b7; }
.index-card__visual--forest { background: #536052; }
.index-card__visual--blue { background: #718088; }
.index-card__visual--amber { background: #bd9b79; }
.index-card__visual--deep { background: #4e6058; }
.index-card > p { margin: 1.4rem 0 0.25rem; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.index-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 2.3vw, 2.7rem); font-weight: 400; line-height: 1; }
.index-card small { display: block; margin-top: 0.65rem; color: var(--moss); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.index-card__open { position: absolute; z-index: 2; inset: 0; padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.index-card__open:focus-visible { outline: 2px solid var(--forest); outline-offset: -2px; }
.index-card__cta { position: absolute; left: 0; bottom: 0; padding-bottom: 0.2rem; border-bottom: 1px solid currentColor; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.index-card__cta::first-letter { text-transform: uppercase; }


.closing {
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--ivory);
  background: linear-gradient(rgba(22,31,24,0.85), rgba(22,31,24,0.9)), url("assets/hero.jpg") center / cover fixed;
}
.closing__content { padding-block: 8rem; }
.closing h2 { margin: 0 0 3rem; font-family: var(--serif); font-size: clamp(3.8rem, 8vw, 9rem); font-weight: 400; line-height: 0.88; letter-spacing: -0.05em; }
.closing h2 em { font-weight: 400; }
.text-link--light { color: var(--ivory); }

.contact { padding-block: clamp(7rem, 12vw, 11rem); color: var(--ivory); background: #1d261e; }
.contact__inner { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(4rem, 9vw, 10rem); align-items: start; }
.contact__intro { position: sticky; top: 120px; }
.contact__intro .display { max-width: 650px; font-size: clamp(3.2rem, 5.4vw, 6.2rem); }
.contact__intro > p:not(.eyebrow) { max-width: 550px; margin: 2rem 0; color: rgba(245,241,232,0.74); }
.contact__intro address { padding-top: 1.8rem; border-top: 1px solid rgba(245,241,232,0.2); font-size: 0.9rem; font-style: normal; line-height: 1.85; }
.contact__intro address strong { display: inline-block; margin-bottom: 0.4rem; color: #fff; }
.contact__intro address a { text-underline-offset: 4px; }
.contact-form { display: grid; gap: 2rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.form-field { display: grid; gap: 0.65rem; }
.form-field label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(245,241,232,0.34);
  border-radius: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease;
}
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: #fff; }
.form-field input:user-invalid, .form-field textarea:user-invalid { border-color: #e6aaa4; }
.form-consent { display: grid; grid-template-columns: 20px 1fr; gap: 0.85rem; align-items: start; color: rgba(245,241,232,0.72); font-size: 0.72rem; cursor: pointer; }
.form-consent input { width: 17px; height: 17px; margin: 0.15rem 0 0; accent-color: var(--sage); }
.form-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center; }
.submit-button {
  min-width: 240px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--ivory);
  color: var(--forest);
  background: var(--ivory);
  font: 700 0.7rem/1 var(--sans);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.submit-button:hover, .submit-button:focus-visible { color: var(--ivory); background: transparent; outline: none; }
.submit-button:disabled { opacity: 0.58; cursor: wait; }
.form-status { margin: 0; min-height: 1.5rem; font-size: 0.76rem; }
.form-status.is-success { color: #c8d9bd; }
.form-status.is-error { color: #f1b7b1; }
.recaptcha-note { margin: 0; color: rgba(245,241,232,0.48); font-size: 0.64rem; }
.recaptcha-note a { text-underline-offset: 3px; }

.site-footer {
  min-height: 210px;
  padding: 3.5rem 4vw;
  display: grid;
  grid-template-columns: 1fr minmax(300px, auto) auto auto;
  align-items: end;
  gap: 4rem;
  background: #111611;
  color: #c8c9bf;
}
.site-footer p { margin: 0; font-size: 0.63rem; letter-spacing: 0.08em; text-transform: uppercase; }
.brand--footer { color: var(--ivory); }
.site-footer__company { display: grid; font-size: 0.7rem; line-height: 1.75; }
.site-footer__company strong { color: var(--ivory); font-weight: 400; }
.site-footer__company a { width: fit-content; text-underline-offset: 3px; }
.site-footer__legal { display: grid; gap: 0.45rem; font-size: 0.68rem; }
.site-footer__legal a { text-underline-offset: 3px; }
.site-footer__legal button { width: fit-content; margin: 0; padding: 0; border: 0; color: inherit; background: transparent; font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
:where(a, button, input, textarea, summary):focus-visible { outline: 3px solid #d69c4b; outline-offset: 4px; }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 0;
    padding: 8rem 7vw;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    background: var(--ivory);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(.65,0,.35,1);
  }
  .main-nav a { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .menu-open .main-nav { transform: translateX(0); }
  .language-switcher { margin-left: auto; }
  .menu-toggle { position: relative; z-index: 2; display: grid; gap: 5px; width: 42px; padding: 10px; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; transition: transform 0.3s ease, opacity 0.3s ease; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { justify-content: flex-start; background-position: 39% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(246,241,231,0.93) 0%, rgba(246,241,231,0.75) 60%, rgba(246,241,231,0.28) 100%); }
  .hero__content { width: min(74vw, 640px); }
  .intro__copy .lede { width: 88%; }
  .ritual { min-height: auto; grid-template-columns: 1fr; }
  .ritual--koromo .ritual__content { order: 2; }
  .ritual--koromo .ritual__stage { order: 1; }
  .ritual__number { left: auto; right: 1.5rem; transform: none; }
  .ritual__stage { min-height: 610px; }
  .ritual__content { min-height: 650px; }
  .formula__intro { grid-template-columns: 1fr 2fr; }
  .formula__intro .eyebrow { grid-column: 1; }
  .formula__intro .display { grid-column: 2; }
  .formula__intro > p:last-child { grid-column: 2; }
  .formula__grid { grid-template-columns: repeat(2, 1fr); }
  .formula__grid > div:nth-child(2) { border-right: 0; }
  .formula__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-cards { grid-template-columns: 1fr; gap: 4rem; background: transparent; }
  .product-card { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto 1fr; column-gap: 2rem; align-items: start; }
  .product-card__visual { grid-row: 1 / 6; height: 560px; margin: 0; }
  .product-card > .eyebrow { margin-top: 2rem; }
  .product-card > p, .product-card > h3 { margin-left: 0; margin-right: 2rem; }
  .refill { grid-template-columns: 1fr; }
  .index-card { flex-basis: calc((100% - 1.25rem) / 2); }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__intro { position: static; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer__copy { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --page: min(88vw, 1440px); }
  .site-header { min-height: 72px; padding-inline: 6vw; }
  .site-header { gap: 0.55rem; }
  .language-switcher__toggle { min-width: 64px; height: 40px; padding-inline: 0.6rem; }
  .language-switcher__menu { width: min(230px, 82vw); }
  .hero { min-height: 100svh; align-items: flex-end; padding: 8rem 6vw 6rem; background-position: 31% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(246,241,231,0.98) 0%, rgba(246,241,231,0.86) 50%, rgba(246,241,231,0.04) 88%); }
  .hero__content { width: 100%; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 5.2rem); }
  .hero__lead { max-width: 90%; margin: 1.7rem 0; font-size: 0.95rem; }
  .hero__note { display: none; }
  .hero__scroll { right: 0.8rem; bottom: 2rem; }
  .intro__mark { right: -8vw; }
  .intro__copy .lede { width: 100%; margin-top: 2rem; }
  .intro__facts { grid-template-columns: 1fr; gap: 0; }
  .intro__facts div { padding-block: 1.5rem; border-bottom: 1px solid var(--line); }
  .section-heading { padding-block: 6rem; }
  .display { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .ritual__stage { min-height: 480px; }
  .ritual__stage .product { height: min(53vh, 420px); }
  .ritual__stage .product--left { transform: translate(16%, 0) rotate(-2deg); }
  .ritual__stage .product--right { transform: translate(-18%, 7%) rotate(2deg); }
  .ritual__content { min-height: auto; padding: 5.5rem 7vw; }
  .ritual__content h3 { font-size: clamp(3rem, 14vw, 4.4rem); overflow-wrap: anywhere; }
  .formula__intro { display: block; }
  .formula__intro .display { margin-bottom: 2rem; }
  .formula__grid { margin-top: 4rem; grid-template-columns: 1fr; }
  .formula__grid > div { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading--split { display: block; }
  .section-heading--split > p { margin-top: 2rem; }
  .product-card { display: block; }
  .product-card__visual { height: 470px; margin-bottom: 2rem; }
  .product-card > p, .product-card > h3 { margin-left: 1.4rem; margin-right: 1.4rem; }
  .refill__copy { padding-inline: 7vw; }
  .refill__visual { min-height: 500px; }
  .refill__pouch { height: 48%; }
  .refill__pouch--one { left: 0; top: 27%; }
  .refill__pouch--two { left: 27%; top: 17%; }
  .refill__pouch--three { right: -6%; top: 29%; }
  .details__heading { margin-bottom: 3.5rem; }
  .carousel__controls { margin-bottom: 1rem; }
  .carousel__button { width: 54px; height: 54px; }
  .index-card { flex-basis: 84%; }
  .index-card__visual { height: min(124vw, 570px); }
  .index-card__cta { font-size: 0.67rem; }
  .closing { min-height: 620px; background-attachment: scroll; }
  .closing h2 { font-size: clamp(3.2rem, 15vw, 5.1rem); }
  .contact__inner { gap: 4rem; }
  .form-row { grid-template-columns: 1fr; gap: 2rem; }
  .form-submit { grid-template-columns: 1fr; }
  .submit-button { width: 100%; }
  .site-footer { display: flex; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero__lead { max-width: 100%; }
  .ritual__stage { min-height: 430px; }
  .product-card__visual { height: 112vw; }
  .refill__visual { min-height: 440px; }
  .carousel__track { gap: 0.85rem; }
  .index-card { flex-basis: 88%; }
  .contact { padding-top: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .closing { background-attachment: scroll; }
}
