/* ============================================================
   Linden & Light
   Palette: warm off-white, forest green, terracotta, charcoal.
   Type: Fraunces (display) + Hanken Grotesk (body).
   ============================================================ */

:root {
  --cream:        #FAF7F2;
  --cream-soft:   #F4EEE3;
  --cream-deep:   #EDE5D6;
  --green:        #2D4A3E;
  --green-deep:   #223A30;
  --terracotta:   #C46B47;
  --terracotta-d: #A9542F;
  --charcoal:     #2A2A28;
  --muted:        #6B6A63;

  --line:         rgba(42, 42, 40, 0.14);
  --line-strong:  rgba(42, 42, 40, 0.28);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1120px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section-y: clamp(4.5rem, 11vw, 9rem);
  --radius: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.02rem, 0.97rem + 0.25vw, 1.18rem);
  line-height: 1.72;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

::selection { background: var(--terracotta); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 10000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { position: relative; padding-block: var(--section-y); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin: 0 0 1.1rem;
}

.section__intro { max-width: 30ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__intro h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
.section__lead {
  margin-top: 1.25rem;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn--primary {
  background: var(--green);
  color: var(--cream);
  padding: 0.95em 1.9em;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(34, 58, 48, 0.0);
}
.btn--primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(169, 84, 47, 0.6);
}
.btn--primary:active { transform: translateY(0); }

.btn--block { width: 100%; justify-content: center; margin-top: 0.5rem; }

.btn--text {
  background: none;
  color: var(--green);
  padding: 0.95em 0.25em;
  position: relative;
}
.btn--text span { transition: transform 0.3s var(--ease); }
.btn--text:hover { color: var(--terracotta-d); }
.btn--text:hover span { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--green);
}
.wordmark__leaf { color: var(--terracotta); flex: none; }
.wordmark__text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }
.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  transition: color 0.25s var(--ease);
}
.site-nav a:not(.site-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:not(.site-nav__cta):hover { color: var(--green); }
.site-nav a:not(.site-nav__cta):hover::after { transform: scaleX(1); }

.site-nav__cta {
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 0.45em 1.2em;
  color: var(--green);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.site-nav__cta:hover { background: var(--green); color: var(--cream); }

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 7rem);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.7rem, 1.6rem + 5.4vw, 5.5rem);
  font-weight: 380;
  margin: 0.5rem 0 0;
}
.hero__lead {
  margin-top: 1.7rem;
  max-width: 42ch;
  font-size: clamp(1.1rem, 1.04rem + 0.3vw, 1.3rem);
  color: #44443f;
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.4rem);
  flex-wrap: wrap;
}
.hero__art { position: relative; }
.hero__art img {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  mix-blend-mode: multiply;
  filter: saturate(1.05);
}

/* ---------- What we do differently ---------- */
.section--different { background: var(--cream-soft); }
.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.block { padding-top: 1.4rem; border-top: 1px solid var(--line-strong); }
.block__index {
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
}
.block h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.block p { color: #46463f; }

/* ---------- Treatments menu ---------- */
.section--treatments { overflow: hidden; }
.menu { list-style: none; margin: 0; padding: 0; }
.menu__item {
  padding-block: clamp(1.4rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line);
}
.menu__item:last-child { border-bottom: 1px solid var(--line); }

.menu__head {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}
.menu__name {
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
  color: var(--green);
  transition: color 0.3s var(--ease);
}
.menu__leader {
  flex: 1;
  height: 0;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-0.25em);
}
.menu__price {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.4rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--charcoal);
}
.menu__desc {
  margin-top: 0.7rem;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1rem;
}
.menu__len {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin-right: 0.7rem;
  vertical-align: 0.06em;
}
.menu__item:hover .menu__name { color: var(--terracotta-d); }
.menu__item--feature .menu__name { font-style: italic; }

.botanical {
  position: absolute;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.botanical--calendula {
  width: clamp(92px, 12vw, 172px);
  top: clamp(1.25rem, 4vw, 3.5rem);
  right: clamp(-0.5rem, 2vw, 2.5rem);
}
.section--different { position: relative; overflow: hidden; }
.section--different .container { position: relative; z-index: 1; }

/* ---------- Photography ---------- */
.showcase { margin: 0; }
.showcase img {
  width: 100%;
  height: clamp(300px, 54vh, 640px);
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.showcase figcaption {
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.45rem);
  color: var(--muted);
}

/* shared framed-photo treatment */
.treatments__img img,
.makers__img img,
.mette__img img,
.duo__item img {
  width: 100%;
  display: block;
  border-radius: 5px;
  box-shadow: 0 26px 52px -30px rgba(42, 42, 40, 0.5);
}
.treatments__img, .makers__img, .mette__img { margin: 0; }

/* treatments & makers: intro + image header */
.treatments__top,
.makers__top {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.treatments__top .section__intro,
.makers__top .section__intro { margin-bottom: 0; max-width: 38ch; }
.treatments__img img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.makers__img img { aspect-ratio: 3 / 2; object-fit: cover; object-position: center; }

/* in-the-room image pair */
.section--duo { padding-block: 0 var(--section-y); }
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: start;
}
.duo__item { margin: 0; }
.duo__item img { aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 38%; }
.duo__item figcaption {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--green);
  color: var(--cream);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  text-align: center;
}
.quote-mark {
  color: #E6B79E;
  display: block;
  margin: 0 auto clamp(1.2rem, 3vw, 2rem);
}
.quote { margin: 0 auto; max-width: none; }
.quote p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.55rem, 1rem + 2.3vw, 2.85rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  max-width: 17em;
  margin-inline: auto;
  text-wrap: balance;
}
.quote cite {
  display: block;
  margin-top: clamp(1.4rem, 3vw, 2.1rem);
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.66);
}

/* ---------- Makers ---------- */
.section--makers { background: var(--cream-soft); overflow: hidden; }
.makers { list-style: none; margin: 0; padding: 0; }
.makers li {
  display: grid;
  grid-template-columns: minmax(0, 16rem) 1fr;
  gap: 0.4rem 2rem;
  align-items: baseline;
  padding-block: 1.35rem;
  border-top: 1px solid var(--line);
}
.makers li:last-child { border-bottom: 1px solid var(--line); }
.makers__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--green);
}
.makers__loc {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  align-self: center;
}
.makers__note { grid-column: 1 / -1; color: var(--muted); font-size: 1rem; }

@media (min-width: 720px) {
  .makers li {
    grid-template-columns: 15rem 7rem 1fr;
    align-items: baseline;
  }
  .makers__loc { align-self: baseline; }
  .makers__note { grid-column: auto; }
}

/* ---------- Meet Mette ---------- */
.section--mette { overflow: hidden; }
.mette__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.mette__img img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center 25%; }
.mette__img figcaption {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-d);
}
.mette__text .section__intro { margin-bottom: 1.6rem; }
.mette__body p {
  font-size: clamp(1.1rem, 1.02rem + 0.4vw, 1.32rem);
  line-height: 1.7;
  max-width: 56ch;
}
.mette__body p + p { margin-top: 1.5rem; }

/* ---------- Booking ---------- */
.section--book { background: var(--green); color: var(--cream); }
.section--book .eyebrow { color: #E6B79E; }
.section--book .section__lead { color: rgba(250, 247, 242, 0.72); }
.book__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.book__grid .section__intro { margin-bottom: 0; max-width: 22ch; }

.book-form { display: flex; flex-direction: column; gap: 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.8);
}
.field__opt { text-transform: none; letter-spacing: 0; font-weight: 400; opacity: 0.6; }

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1.02rem;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 247, 242, 0.32);
  padding: 0.55rem 0.1rem;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(250, 247, 242, 0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}
.field input:-webkit-autofill {
  -webkit-text-fill-color: var(--cream);
  transition: background-color 9999s ease-out;
}

/* native date/week pickers on dark */
input[type="week"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.6; cursor: pointer; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 0.4rem; top: 50%;
  width: 0.5rem; height: 0.5rem;
  border-right: 1.5px solid rgba(250, 247, 242, 0.7);
  border-bottom: 1.5px solid rgba(250, 247, 242, 0.7);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 1.6rem;
  cursor: pointer;
}
.field select option { color: var(--charcoal); }

.section--book .btn--primary { background: var(--terracotta); color: var(--cream); }
.section--book .btn--primary:hover { background: var(--cream); color: var(--green); box-shadow: 0 12px 24px -12px rgba(0,0,0,0.4); }

.book-form__note {
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.62);
  margin-top: 0.2rem;
}

/* ---------- FAQ ---------- */
.section--faq { background: var(--cream-soft); }
.faq__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.faq__grid .section__intro { margin-bottom: 0; max-width: 26ch; position: sticky; top: 6rem; }

.faq__list { border-bottom: 1px solid var(--line); }
.faq__item { border-top: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(1.1rem, 2.2vw, 1.5rem);
  transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1rem + 0.5vw, 1.4rem);
  line-height: 1.25;
  color: var(--green);
  transition: color 0.25s var(--ease);
}
.faq__item summary:hover .faq__q,
.faq__item[open] .faq__q { color: var(--terracotta-d); }
.faq__icon {
  flex: none;
  width: 0.62rem;
  height: 0.62rem;
  margin-right: 0.2rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--green);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease), color 0.25s var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(-135deg); color: var(--terracotta-d); }
.faq__answer {
  padding-bottom: clamp(1.1rem, 2.2vw, 1.5rem);
  max-width: 58ch;
}
.faq__answer p { color: var(--muted); font-size: 1rem; line-height: 1.65; }
.faq__item[open] .faq__answer { animation: faqOpen 0.4s var(--ease); }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 880px) {
  .faq__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .faq__grid .section__intro { position: static; margin-bottom: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .faq__item[open] .faq__answer { animation: none; }
  .faq__icon { transition: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: var(--cream); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}
.wordmark--footer { color: var(--cream); }
.wordmark--footer .wordmark__leaf { color: #E6B79E; }
.site-footer__tag {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(250, 247, 242, 0.78);
  max-width: 26ch;
}
.site-footer__h {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E6B79E;
  margin: 0 0 0.9rem;
}
.site-footer address { font-style: normal; line-height: 1.8; color: rgba(250, 247, 242, 0.85); }
.site-footer__col p { line-height: 1.8; color: rgba(250, 247, 242, 0.85); }
.site-footer__col a { text-decoration: none; border-bottom: 1px solid rgba(250, 247, 242, 0.25); transition: border-color 0.25s var(--ease); }
.site-footer__col a:hover { border-bottom-color: var(--terracotta); }
.site-footer__legal {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 242, 0.14);
}
.site-footer__legal p { font-size: 0.85rem; color: rgba(250, 247, 242, 0.55); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .site-nav a, .menu__name { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__art img { max-width: 240px; }
  .treatments__top,
  .makers__top,
  .mette__grid,
  .book__grid { grid-template-columns: 1fr; }
  .treatments__top { gap: 2rem; }
  .makers__top { gap: 2rem; }
  .treatments__img,
  .makers__img { max-width: 520px; }
  .treatments__img img { aspect-ratio: 3 / 2; }
  .mette__img { max-width: 360px; }
  .book__grid .section__intro,
  .mette__grid .section__intro { margin-bottom: 1rem; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .site-nav a:not(.site-nav__cta) { display: none; }
  .grid-three { grid-template-columns: 1fr; gap: 0; }
  .block { padding-block: 1.6rem; }
  .field-row { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; gap: 1.5rem; }
  .duo__item img { aspect-ratio: 4 / 3; }
  .botanical--calendula { width: 84px; opacity: 0.8; }
}

@media (max-width: 460px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}
