:root {
  color-scheme: light;
  --bg: #dfc4aa;
  --surface: #fff7ef;
  --surface-soft: #edd8ca;
  --ink: #4a3438;
  --muted: rgba(74, 52, 56, 0.74);
  --hero-ink: #f8dfcf;
  --hero-muted: #f7e9de;
  --rosewood: #6f4650;
  --rose-antique: #9a6a72;
  --rose-soft: #c8a3a4;
  --sand: #dfc4aa;
  --cream: #fff7ef;
  --clay: #a36d55;
  --rose: #b97983;
  --gold: #dec191;
  --line: rgba(74, 52, 56, 0.16);
  --line-light: rgba(245, 234, 217, 0.28);
  --shadow-soft: 0 18px 45px rgba(76, 50, 54, 0.16);
  --radius: 8px;
  --radius-pill: 999px;
  --container: min(1160px, calc(100vw - 40px));
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Nunito Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(216, 189, 125, 0.72);
  outline-offset: 3px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--rosewood);
  background: var(--cream);
  font-weight: 800;
  text-decoration: none;
}

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

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 22px;
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(245, 234, 217, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand__mark {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(245, 234, 217, 0.42);
  border-radius: 50%;
  background: rgba(245, 234, 217, 0.88);
}

.site-header.is-scrolled .brand__mark,
.site-header.is-open .brand__mark {
  border-color: rgba(74, 52, 56, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.brand__text {
  display: grid;
  line-height: 1.05;
  min-width: 0;
}

.brand__text strong {
  font-family: var(--font-title);
  font-size: 1.65rem;
  letter-spacing: 0;
}

.brand__text small {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0.78;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover {
  color: var(--rosewood);
  background: rgba(245, 234, 217, 0.72);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-open .nav a:hover {
  background: rgba(154, 106, 114, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: currentColor;
  background: transparent;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle__line {
  position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  position: absolute;
  left: 0;
}

.nav-toggle__line::before {
  top: -7px;
}

.nav-toggle__line::after {
  top: 7px;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.header-cta {
  color: var(--rosewood);
  background: var(--cream);
  box-shadow: 0 14px 28px rgba(76, 50, 54, 0.12);
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  color: var(--cream);
  background: var(--rosewood);
}

.button--cream {
  color: var(--rosewood);
  background: var(--cream);
  box-shadow: 0 16px 32px rgba(76, 50, 54, 0.2);
}

.button--cream:hover,
.header-cta:hover {
  background: #fff8e9;
}

.button--ghost {
  color: var(--cream);
  border-color: rgba(245, 234, 217, 0.52);
  background: rgba(76, 50, 54, 0.26);
}

.button--ghost:hover {
  background: rgba(245, 234, 217, 0.12);
}

.button--rose {
  color: var(--cream);
  background: var(--rosewood);
  box-shadow: 0 14px 30px rgba(76, 50, 54, 0.18);
}

.button--rose:hover {
  background: var(--rose-antique);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--hero-ink);
  isolation: isolate;
  padding: 132px 20px 118px;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 34%;
  z-index: -3;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(76, 50, 54, 0.9), rgba(111, 70, 80, 0.66) 44%, rgba(111, 70, 80, 0.3)),
    linear-gradient(0deg, rgba(76, 50, 54, 0.84), rgba(111, 70, 80, 0.16) 42%, rgba(76, 50, 54, 0.76));
}

.hero__content {
  width: min(870px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--hero-muted);
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 8vw, 8.6rem);
}

.hero__lead {
  max-width: 690px;
  margin: 26px auto 0;
  color: var(--hero-muted);
  font-size: 1.2rem;
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__facts {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  transform: translateX(-50%);
}

.hero__facts span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-pill);
  color: var(--cream);
  background: rgba(76, 50, 54, 0.38);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(10px);
}

.intro {
  width: min(920px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 90px 0 78px;
  text-align: center;
}

.intro h2,
.section__header h2,
.atelier__content h2,
.course__content h2,
.visit h2,
.final-cta h2,
.legal h1 {
  font-size: clamp(3.05rem, 6vw, 5.55rem);
}

.intro p:not(.eyebrow),
.section__header p:not(.eyebrow),
.atelier__content p,
.course__content p,
.visit p,
.final-cta p,
.legal p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px auto 0;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0;
}

.section__header {
  max-width: 780px;
  margin-bottom: 34px;
}

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.products {
  position: relative;
}

.products::before,
.ritual::before,
.faq-section::before {
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  content: "";
  z-index: -1;
}

.products::before {
  top: 0;
  bottom: 0;
  background: var(--sand);
}

.ritual,
.faq-section {
  position: relative;
}

.ritual::before {
  top: 0;
  bottom: 0;
  background: #efe1c3;
}

.faq-section::before {
  top: 0;
  bottom: 0;
  background: #fbf4e8;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(74, 52, 56, 0.15);
  border-radius: var(--radius);
  background: rgba(245, 234, 217, 0.82);
  box-shadow: 0 12px 28px rgba(76, 50, 54, 0.08);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.product-card div {
  padding: 20px;
}

.product-card p {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1.05;
}

.product-card--large img {
  min-height: 430px;
}

.atelier {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 96px 0;
}

.atelier__media {
  position: relative;
}

.atelier__media::before {
  position: absolute;
  inset: 26px -20px -20px 26px;
  border: 1px solid rgba(154, 106, 114, 0.24);
  border-radius: var(--radius);
  content: "";
  z-index: -1;
}

.atelier__media img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.atelier__content {
  min-width: 0;
}

.atelier__checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 22px;
}

.atelier__checks span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--rose-antique);
  background: rgba(234, 213, 173, 0.5);
  font-size: 0.9rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-antique);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--rosewood);
  text-decoration: underline;
}

.ritual__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ritual__list li {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(74, 52, 56, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 234, 217, 0.66);
}

.ritual__list span {
  display: inline-grid;
  min-width: 46px;
  min-height: 38px;
  place-items: center;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  color: var(--cream);
  background: var(--rosewood);
  font-size: 0.8rem;
  font-weight: 900;
}

.ritual__list h3 {
  margin: 22px 0 8px;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1.05;
}

.ritual__list p {
  margin: 0;
  color: var(--muted);
}

.course {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  align-items: center;
  gap: 42px;
  padding: 92px 0;
}

.course__content {
  min-width: 0;
}

.course__media {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff7e9;
  box-shadow: var(--shadow-soft);
}

.course__media img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.course__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 18px;
}

.course__facts div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(234, 213, 173, 0.46);
}

.course__facts dt {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course__facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.course__note {
  margin-bottom: 24px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.82fr 0.82fr;
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery__grid a {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.gallery__grid a:first-child,
.gallery__grid a:nth-child(4) {
  grid-row: span 2;
}

.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery__grid a:hover img {
  transform: scale(1.03);
}

.visit {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  gap: 42px;
  padding: 92px 0;
}

.visit__intro {
  min-width: 0;
}

.visit__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-style: normal;
}

.visit__cards a,
.visit__cards > span {
  display: flex;
  gap: 12px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 234, 217, 0.78);
  text-decoration: none;
}

.visit__cards a:hover {
  background: #fff7e9;
}

.visit__cards .icon {
  margin-top: 3px;
  color: var(--clay);
  font-size: 1.28rem;
}

.visit__cards strong {
  display: block;
  color: var(--ink);
}

.faq {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq__item {
  overflow: hidden;
  border: 1px solid rgba(74, 52, 56, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 234, 217, 0.78);
}

.faq__question {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 18px 52px 18px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq__question::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--clay);
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
}

.faq__question[aria-expanded="true"]::after {
  content: "-";
}

.faq__answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq__answer p {
  margin: 0;
}

.final-cta {
  position: relative;
  width: min(980px, calc(100vw - 40px));
  margin: 88px auto;
  overflow: hidden;
  padding: 58px;
  border-radius: var(--radius);
  color: var(--cream);
  background: var(--rosewood);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(216, 189, 125, 0.22), transparent 40%, rgba(184, 117, 79, 0.18));
  content: "";
}

.final-cta > * {
  position: relative;
}

.final-cta p {
  max-width: 650px;
  margin: 18px auto 28px;
  color: var(--hero-muted);
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 38px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.legal-page {
  min-height: 100vh;
  background: var(--surface);
}

.legal {
  width: min(800px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 62px 0 78px;
}

.legal h1 {
  margin: 24px 0 20px;
}

.legal h2 {
  margin: 32px 0 8px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.3;
}

.legal p {
  margin: 0 0 14px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    order: 3;
  }

  .header-cta {
    justify-self: end;
    order: 2;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--cream);
    box-shadow: var(--shadow-soft);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
  }

  .hero__facts,
  .product-grid,
  .atelier,
  .course,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero__facts {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(720px, 100%);
    margin-top: 44px;
    transform: none;
  }

  .product-card--large img,
  .product-card img {
    min-height: 360px;
    max-height: 520px;
  }

  .atelier {
    gap: 38px;
  }

  .atelier__media {
    max-width: 620px;
  }

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

  .course__media {
    max-width: 560px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }

  .gallery__grid a:first-child,
  .gallery__grid a:nth-child(4) {
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .site-header {
    min-height: 70px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 1.35rem;
  }

  .brand__text small {
    font-size: 0.64rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: block;
    padding: 118px 14px 48px;
  }

  .hero__image {
    object-position: 56% 34%;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(76, 50, 54, 0.92), rgba(111, 70, 80, 0.46) 56%, rgba(76, 50, 54, 0.84)),
      linear-gradient(90deg, rgba(76, 50, 54, 0.94), rgba(111, 70, 80, 0.44));
  }

  .hero__content {
    margin: 0 auto;
  }

  h1 {
    font-size: 4rem;
    line-height: 1;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero__actions,
  .final-cta .button {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    gap: 8px;
  }

  .hero__facts span {
    justify-content: flex-start;
    width: 100%;
  }

  .intro {
    width: var(--container);
    padding: 62px 0 52px;
  }

  .section,
  .atelier,
  .course,
  .visit {
    padding: 60px 0;
  }

  .intro h2,
  .section__header h2,
  .atelier__content h2,
  .course__content h2,
  .visit h2,
  .final-cta h2,
  .legal h1 {
    font-size: 3.25rem;
  }

  .product-card--large img,
  .product-card img {
    min-height: auto;
    max-height: none;
    aspect-ratio: 1 / 1.1;
  }

  .atelier__media::before {
    inset: 16px -8px -8px 16px;
  }

  .atelier__checks,
  .ritual__list,
  .course__facts,
  .visit__cards,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .ritual__list li {
    min-height: auto;
  }

  .course__media {
    padding: 10px;
  }

  .gallery__grid {
    grid-auto-rows: auto;
  }

  .gallery__grid a {
    aspect-ratio: 1 / 1;
  }

  .visit__cards a,
  .visit__cards > span {
    min-height: auto;
  }

  .final-cta {
    width: var(--container);
    margin: 58px auto;
    padding: 34px 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.35rem;
  }

  .intro h2,
  .section__header h2,
  .atelier__content h2,
  .course__content h2,
  .visit h2,
  .final-cta h2,
  .legal h1 {
    font-size: 2.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
