/* =========================================================
   Sage & Honey — boutique organic salon (multi-page)
   ========================================================= */

:root {
  --bg: #f5f0e6;
  --surface: #fbf7ee;
  --surface-2: #efe7d4;
  --ink: #2d3027;
  --ink-soft: #4a4d42;
  --sage: #6b7d52;
  --sage-deep: #4f6040;
  --honey: #d4a574;
  --honey-deep: #b8895a;
  --clay: #c98f73;
  --muted: #847a6a;
  --line: #e2d8c2;
  --shadow: 0 1px 2px rgba(45, 48, 39, .04), 0 8px 28px rgba(45, 48, 39, .06);
  --shadow-soft: 0 1px 2px rgba(45, 48, 39, .03), 0 18px 40px rgba(45, 48, 39, .08);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, system-ui, sans-serif;
  --script: "Caveat", "Brush Script MT", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sage-deep); }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
em { font-style: italic; }

::selection { background: var(--honey); color: var(--ink); }

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

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--ink);
}

.script {
  font-family: var(--script);
  color: var(--sage-deep);
  font-size: 1.45em;
  letter-spacing: 0.005em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}
.eyebrow--light { color: rgba(251, 247, 238, .85); }
.eyebrow__dot--light { background: var(--honey); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn--honey {
  background: var(--honey);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(45, 48, 39, .06), 0 8px 18px rgba(184, 137, 90, .22);
}
.btn--honey:hover {
  background: var(--honey-deep);
  color: var(--surface);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--surface);
}
.btn--ghost-light {
  color: var(--surface);
  border-color: rgba(251, 247, 238, .6);
}
.btn--ghost-light:hover {
  background: var(--surface);
  color: var(--sage-deep);
}
.btn--sage {
  background: var(--sage);
  color: var(--surface);
}
.btn--sage:hover {
  background: var(--sage-deep);
  color: var(--surface);
  transform: translateY(-1px);
}
.btn--block { width: 100%; }
.btn--small { padding: 11px 18px; min-height: 40px; font-size: 14px; }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  background: rgba(245, 240, 230, .82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  transition: box-shadow .3s ease, background .3s ease, padding .3s ease;
}
.nav.is-scrolled {
  box-shadow: 0 1px 0 rgba(45, 48, 39, .04), 0 12px 24px rgba(45, 48, 39, .05);
  padding: 12px var(--pad);
  background: rgba(245, 240, 230, .94);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.nav__logo em { color: var(--honey-deep); font-style: italic; font-weight: 400; padding: 0 2px; }
.nav__leaf {
  width: 22px; height: 22px;
  color: var(--sage);
  transform-origin: 12px 21px;
  animation: sway 4s ease-in-out infinite;
}
@keyframes sway {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(8deg); }
}
.nav__links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--sage);
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { width: 100%; }
.nav__cta { padding: 10px 22px; min-height: 40px; font-size: 14px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 4px;
}
.nav__toggle span {
  width: 20px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: background .2s;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px var(--pad) 40px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.5,.1,.2,1);
    border-top: 1px solid var(--line);
    overflow-y: auto;
  }
  .nav__links a {
    font-family: var(--serif);
    font-size: 1.5rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px dashed var(--line);
    color: var(--ink);
  }
  .nav__links .nav__cta--mobile {
    display: inline-flex;
    margin-top: 24px;
    border-bottom: 0;
    width: auto;
    padding: 12px 26px;
    font-family: var(--sans);
    font-size: 15px;
  }
  .nav.is-open .nav__links { transform: translateX(0); }
}
@media (min-width: 921px) {
  .nav__cta--mobile { display: none; }
}

/* =========================================================
   Page header (sub-pages)
   ========================================================= */
.page-head {
  padding: clamp(48px, 8vw, 96px) var(--pad) clamp(32px, 5vw, 56px);
  position: relative;
}
.page-head__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
}
.page-head h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  margin: 0 0 16px;
  letter-spacing: -0.018em;
}
.page-head h1 em { color: var(--sage-deep); font-style: italic; }
.page-head__lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 12px;
}
.page-head__aside {
  font-family: var(--script);
  color: var(--sage-deep);
  font-size: 1.6rem;
  line-height: 1.3;
  align-self: end;
  padding-bottom: 8px;
}
.page-head__crumbs {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.page-head__crumbs a { color: var(--muted); }
.page-head__crumbs a:hover { color: var(--sage-deep); }
.page-head__crumbs span { color: var(--ink); }

@media (max-width: 760px) {
  .page-head__inner { grid-template-columns: 1fr; gap: 16px; }
  .page-head__aside { font-size: 1.3rem; padding-bottom: 0; }
}

/* =========================================================
   Hero (home)
   ========================================================= */
.hero {
  padding: clamp(40px, 8vw, 96px) var(--pad) clamp(40px, 6vw, 80px);
  position: relative;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.hero__title .word {
  display: inline-block;
  margin-right: 0.18em;
  filter: blur(8px);
  opacity: 0;
  transform: translateY(14px);
}
.hero__title em {
  color: var(--sage-deep);
  font-style: italic;
  font-family: var(--serif);
}
.hero__sub {
  max-width: 38ch;
  font-size: 17.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 32px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__tagline { margin: 0; }
.hero__tagline .script { font-size: 1.6rem; }
.hero__visual {
  position: relative;
  aspect-ratio: 5 / 6;
  width: 100%;
  max-width: 540px;
  justify-self: end;
}
.hero__blob {
  position: absolute;
  inset: -6% -2% 0 0;
  width: 102%;
  height: 100%;
  z-index: 0;
}
.hero__img-wrap {
  position: absolute;
  inset: 6% 0 0 6%;
  width: 90%;
  height: 92%;
  border-radius: 50% 48% 50% 50% / 56% 50% 54% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  z-index: 1;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero__sprig {
  position: absolute;
  bottom: -8%;
  left: -6%;
  width: 90px;
  height: 130px;
  z-index: 2;
  opacity: 0;
  transform: rotate(-12deg) translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.hero__sprig.is-in { opacity: 1; transform: rotate(-12deg) translateY(0); }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin: 8px auto 0; justify-self: center; }
}

/* =========================================================
   Brands strip
   ========================================================= */
.brands {
  padding: 28px var(--pad) 36px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  background: var(--surface);
}
.brands__label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.brands__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 400;
  font-style: italic;
}
.brands__list li {
  color: var(--muted);
  filter: grayscale(100%);
  opacity: .8;
  transition: color .3s, filter .3s, opacity .3s;
}
.brands__list li:hover {
  color: var(--sage-deep);
  filter: grayscale(0);
  opacity: 1;
}

/* =========================================================
   Section heads
   ========================================================= */
.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 var(--pad);
  text-align: left;
}
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--center .eyebrow { justify-content: center; }
.section__head h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0 0 18px;
}
.section__head--split {
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.section__lede {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
.section__lede--right { text-align: right; margin-left: auto; }

@media (max-width: 760px) {
  .section__head--split { grid-template-columns: 1fr; }
  .section__lede--right { text-align: left; }
}

/* =========================================================
   Philosophy / Values
   ========================================================= */
.philosophy { padding: clamp(60px, 10vw, 120px) 0; }
.values {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 216, 194, .5);
  transition: transform .35s ease, box-shadow .35s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.value-card__icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg);
  margin-bottom: 20px;
}
.value-card__icon svg { width: 38px; height: 38px; }
.draw-icon path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.4s cubic-bezier(.7,.1,.3,1);
}
.draw-icon.is-in path { stroke-dashoffset: 0; }
.value-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.value-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }

/* =========================================================
   Services teaser (home)
   ========================================================= */
.services-teaser {
  padding: clamp(40px, 8vw, 100px) 0 clamp(60px, 10vw, 120px);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tease-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tease-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(226, 216, 194, .6);
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tease-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tease-card__num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 12px;
}
.tease-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.tease-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1;
}
.tease-card__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sage-deep);
}
.tease-cta { text-align: center; margin-top: 36px; padding: 0 var(--pad); }

@media (max-width: 920px) { .tease-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tease-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Services full menu page
   ========================================================= */
.menu-page { padding: clamp(20px, 4vw, 40px) 0 clamp(60px, 10vw, 120px); }
.menu-pills {
  max-width: var(--maxw);
  margin: 0 auto 36px;
  padding: 14px var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: sticky;
  top: 76px;
  z-index: 5;
  background: rgba(245, 240, 230, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.menu-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background .25s, border-color .25s, color .25s;
}
.menu-pill:hover { border-color: var(--sage); color: var(--ink); }
.menu-pill.is-active {
  background: var(--sage);
  color: var(--surface);
  border-color: var(--sage);
}
.menu-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--pad) 0;
  scroll-margin-top: 160px;
}
.menu-section__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 36px;
}
.menu-section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.015em;
}
.menu-section__title em { color: var(--sage-deep); font-style: italic; }
.menu-section__lede {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0;
}
@media (max-width: 760px) {
  .menu-section__head { grid-template-columns: 1fr; gap: 12px; }
}
.menu-sub {
  margin: 36px 0 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--sage-deep);
}
.menu-list { list-style: none; margin: 0 0 12px; padding: 0; }
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.menu-list__name {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  margin: 0 0 4px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.menu-list__desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
.menu-list__meta {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.menu-list__price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--sage-deep);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .menu-list li { grid-template-columns: 1fr; gap: 6px; }
  .menu-list__price { justify-self: flex-start; }
}

/* =========================================================
   Team teaser (home)
   ========================================================= */
.team-teaser { padding: clamp(60px, 10vw, 120px) 0; }
.team-teaser__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tt-card { text-align: center; }
.tt-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(45, 48, 39, .12);
  background: var(--tint, var(--surface));
  max-width: 220px;
  transition: transform .35s ease;
}
.tt-card:hover .tt-card__photo { transform: translateY(-4px); }
.tt-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.tt-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.tt-card__role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 6px;
}
.tt-card__handle {
  font-family: var(--script);
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 860px) { .team-teaser__grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Stylist full bio cards (team page)
   ========================================================= */
.stylist-full { padding: clamp(60px, 10vw, 120px) 0; }
.stylist-full__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.bio-card {
  background: var(--tint, var(--surface));
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  border: 1px solid rgba(226, 216, 194, .4);
}
.bio-card__portrait {
  width: 280px; height: 280px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(45, 48, 39, .14);
  position: sticky;
  top: 100px;
}
.bio-card__portrait img { width: 100%; height: 100%; object-fit: cover; }
.bio-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.bio-card__role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 4px;
  font-weight: 500;
}
.bio-card__training {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--sage-deep);
  margin: 0 0 24px;
}
.bio-card__bio p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.7;
  max-width: 60ch;
}
.bio-card__bio p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  margin: 6px 8px 0 0;
  color: var(--sage-deep);
}
.bio-card__specs { margin: 24px 0 20px; }
.bio-card__specs h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 500;
}
.bio-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0; padding: 0;
}
.bio-card__tags li {
  padding: 6px 14px;
  border: 1px solid rgba(45, 48, 39, .15);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  background: rgba(251, 247, 238, .6);
}
.bio-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(45, 48, 39, .15);
}
.bio-card__handle {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--sage-deep);
}

@media (max-width: 860px) {
  .bio-card { grid-template-columns: 1fr; }
  .bio-card__portrait { width: 200px; height: 200px; margin: 0 auto; position: static; }
  .bio-card__bio p:first-of-type::first-letter { font-size: 2.4rem; }
}

/* =========================================================
   Gallery preview (home, 6 images)
   ========================================================= */
.gallery-preview {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.preview-grid {
  max-width: var(--maxw);
  margin: 0 auto 36px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.preview-grid__cell {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.preview-grid__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.preview-grid__cell:hover img { transform: scale(1.05); }
.preview-grid__cell:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.preview-grid__cell:nth-child(n+2) { grid-column: span 2; }
@media (max-width: 760px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .preview-grid__cell:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .preview-grid__cell:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}
.preview-cta { text-align: center; padding: 0 var(--pad); }

/* =========================================================
   Gallery full page (masonry + filters)
   ========================================================= */
.gallery-page { padding: clamp(20px, 4vw, 40px) 0 clamp(60px, 10vw, 120px); }
.gallery-pills {
  max-width: var(--maxw);
  margin: 0 auto 40px;
  padding: 0 var(--pad);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.masonry {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  columns: 3;
  column-gap: 18px;
}
@media (max-width: 860px) { .masonry { columns: 2; } }
@media (max-width: 480px) { .masonry { columns: 2; column-gap: 10px; } }

.masonry__cell {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
  break-inside: avoid;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  box-shadow: 0 1px 2px rgba(45, 48, 39, .06);
  position: relative;
}
.masonry__cell.is-in { opacity: 1; transform: translateY(0); }
.masonry__cell.is-hidden { display: none; }
.masonry__cell img {
  width: 100%;
  height: auto;
  transition: transform .7s ease, filter .7s ease;
}
.masonry__cell:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.masonry__cell__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(251, 247, 238, .92);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.masonry__cell:hover .masonry__cell__tag { opacity: 1; transform: translateY(0); }

/* =========================================================
   Testimonials (Embla)
   ========================================================= */
.testimonials {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--bg);
}
.embla {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.embla__viewport { overflow: hidden; overscroll-behavior: contain; touch-action: pan-y; }
.embla__container { display: flex; }
.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 12px;
}
.quote { text-align: center; padding: 40px 20px; }
.stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--honey);
}
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: 32ch;
}
.quote__text em { color: var(--sage-deep); }
.quote__author {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
}
.quote__author span { color: var(--sage-deep); font-style: italic; }
.embla__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.embla__dot {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 50%;
  background: var(--line);
  transition: background .3s, transform .3s;
  min-width: 0; min-height: 0;
}
.embla__dot.is-active {
  background: var(--honey);
  transform: scale(1.4);
}

/* =========================================================
   Number band (sustainability home)
   ========================================================= */
.number-band {
  padding: clamp(60px, 9vw, 100px) var(--pad);
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--surface);
  text-align: center;
}
.number-band__inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
.number-band__big {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5rem);
  margin: 0 0 6px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--surface);
}
.number-band__big small {
  font-size: 0.4em;
  color: var(--honey);
  font-style: italic;
  margin-left: 2px;
}
.number-band__lbl {
  font-size: 13.5px;
  color: rgba(251, 247, 238, .82);
  margin: 0 auto;
  max-width: 22ch;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .number-band__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   Footer CTA band (home)
   ========================================================= */
.cta-band {
  padding: clamp(70px, 10vw, 130px) var(--pad);
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 16px auto 28px;
  max-width: 18ch;
  letter-spacing: -0.018em;
  font-weight: 400;
  line-height: 1.05;
}
.cta-band__title em { color: var(--sage-deep); font-style: italic; }
.cta-band__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-band__script {
  display: block;
  font-family: var(--script);
  color: var(--sage-deep);
  font-size: 1.5rem;
  margin-top: 28px;
}

/* =========================================================
   Visit / contact
   ========================================================= */
.visit { padding: clamp(20px, 4vw, 40px) 0 clamp(60px, 10vw, 120px); }
.visit__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.visit__col h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: -0.012em;
}
.visit__h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 16px;
}
.visit__h--mt { margin-top: 36px; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 15px;
  font-weight: 400;
}
.hours th { color: var(--muted); font-weight: 400; }
.hours td { color: var(--ink); font-family: var(--serif); font-size: 1.05rem; }
.addr {
  font-style: normal;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.addr a { color: var(--sage-deep); border-bottom: 1px solid transparent; }
.addr a:hover { border-bottom-color: var(--sage); }
.visit__script { margin-top: 28px; display: inline-block; }
.visit__note {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  border-left: 3px solid var(--sage);
}
.visit__note h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.visit__note p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  margin-top: 12px;
  aspect-ratio: 4 / 3;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 860px) { .visit__grid { grid-template-columns: 1fr; gap: 40px; } }

/* =========================================================
   Booking form
   ========================================================= */
.book-page { padding: clamp(20px, 4vw, 40px) 0 clamp(60px, 10vw, 120px); }
.book-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.book-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
}
.book-form h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 8px;
}
.book-form__lede {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 28px;
}
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field--row .field { margin-bottom: 0; }
.field label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  min-height: 48px;
  transition: border-color .25s, background .25s;
  width: 100%;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage);
  outline: 2px solid var(--sage);
  outline-offset: 1px;
  background: var(--surface);
}
.book-form__submit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.book-form__msg {
  font-size: 14px;
  color: var(--sage-deep);
  margin: 0;
  min-height: 1.4em;
}
.book-form__msg.is-error { color: var(--clay); }

.book-side { display: flex; flex-direction: column; gap: 24px; }
.book-side__panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
}
.book-side__panel h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 0 0 12px;
}
.book-side__panel p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 15px;
}
.book-side__placeholder {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  margin: 16px 0 8px;
}
.book-side__placeholder svg {
  width: 40px; height: 40px;
  color: var(--sage);
  margin: 0 auto 8px;
  display: block;
}
.book-side__placeholder p {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--sage-deep);
  margin: 0;
}
.book-side__phone {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  display: inline-block;
  margin: 4px 0;
}

@media (max-width: 860px) {
  .book-grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(251, 247, 238, .82);
  padding: clamp(50px, 8vw, 80px) var(--pad) 0;
  font-size: 14.5px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251, 247, 238, .12);
}
.footer__col h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--surface);
  margin: 0 0 16px;
}
.footer__col p { margin: 0 0 8px; color: rgba(251, 247, 238, .72); }
.footer__col a { color: var(--honey); }
.footer__col a:hover { color: var(--surface); }
.footer__col--brand .nav__logo { color: var(--surface); margin-bottom: 16px; }
.footer__col--brand .nav__logo em { color: var(--honey); }
.footer__col--brand .nav__leaf { color: var(--honey); }
.footer__nav-list { list-style: none; padding: 0; margin: 0; }
.footer__nav-list li { margin-bottom: 6px; }
.footer__nav-list a {
  color: rgba(251, 247, 238, .72);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.footer__nav-list a:hover { color: var(--honey); border-bottom-color: var(--honey); }
.footer__news-help { font-size: 13px; margin-bottom: 14px; }
.news__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, .6);
  margin-bottom: 8px;
}
.news__row { display: flex; gap: 8px; }
.news input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(251, 247, 238, .22);
  background: rgba(251, 247, 238, .05);
  color: var(--surface);
  font-family: var(--sans);
  font-size: 14px;
  min-width: 0;
  min-height: 40px;
}
.news input::placeholder { color: rgba(251, 247, 238, .45); }
.news input:focus { outline: 2px solid var(--sage); outline-offset: 2px; border-color: transparent; }
.news__msg {
  font-size: 13px;
  margin: 10px 0 0;
  min-height: 1.4em;
  color: var(--honey);
}
.news__msg.is-error { color: var(--clay); }
.news__privacy {
  font-size: 12px;
  color: rgba(251, 247, 238, .5);
  margin: 8px 0 0;
}

.footer__social {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  gap: 14px;
  font-size: 13px;
}
.footer__social a {
  color: rgba(251, 247, 238, .65);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.footer__social a:hover { color: var(--honey); border-bottom-color: var(--honey); }

.footer__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(251, 247, 238, .5);
}

@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__col--brand, .footer__col--news { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(45, 48, 39, .92);
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(251, 247, 238, .12);
  color: var(--surface);
  display: grid;
  place-items: center;
  transition: background .2s;
}
.lightbox__close:hover { background: rgba(251, 247, 238, .25); }
.lightbox__close svg { width: 20px; height: 20px; }

/* =========================================================
   Reveal helpers
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title .word { filter: none; opacity: 1; transform: none; }
  .hero__img { transform: none; }
  .nav__leaf { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .masonry__cell { opacity: 1; transform: none; }
  .draw-icon path { stroke-dashoffset: 0; }
  .hero-reveal-word, .hero-reveal-img { animation: none !important; opacity: 1 !important; filter: none !important; transform: none !important; }
}

/* =========================================================
   Perf: deferred sections, IO reveal, scroll-driven, contain
   ========================================================= */
.cv-defer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

[data-reveal] { opacity: 0; translate: 0 24px; transition: opacity .6s ease, translate .6s ease; }
[data-reveal].in-view { opacity: 1; translate: 0; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; translate: 0; transition: none; }
}

@supports (animation-timeline: view()) {
  [data-reveal] {
    opacity: 1; translate: 0;
    animation: revealUp linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes revealUp { from { opacity: 0; translate: 0 24px; } to { opacity: 1; translate: 0; } }
}

/* Hero word reveal — native CSS replacing motion.animate (Fix 4) */
.hero-reveal-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  translate: 0 16px;
  animation: heroReveal 900ms cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes heroReveal {
  to { opacity: 1; filter: blur(0); translate: 0; }
}
.hero-reveal-img {
  animation: heroImgScale 1600ms cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes heroImgScale {
  from { transform: scale(1.06); }
  to { transform: scale(1.0); }
}

/* Repeated card containment */
.value-card, .tease-card, .tt-card, .bio-card, .menu-section, .masonry__cell { contain: content; }

