/* =============================================================
   PALATA — styles.css
   One stylesheet shared across index.html, lavender.html,
   rosemary.html, chamomile.html
   ============================================================= */

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Colors */
  --cream:          #F5EFE0;
  --cream-deep:     #EDE5CC;
  --cream-card:     #FAF7F0;
  --ink:            #2B2B2B;
  --ink-muted:      #706B63;
  --border:         #DDD7CE;
  --brass:          #D8BE78;
  --charcoal:       #2B2B2B;

  /* Product accent tints */
  --tint-lavender:  #B8A8BE;
  --tint-rosemary:  #68715D;
  --tint-chamomile: #DCC87A;

  /* Active page accent — overridden per note page */
  --accent:         var(--brass);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing / sizing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container:   min(1200px, 100% - 3rem);
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23p)' opacity='0.038'/%3E%3C/svg%3E");
  background-size: 400px 400px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  background-color: var(--cream-deep); /* placeholder while loading */
}

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

ul {
  list-style: none;
}

/* ─── Focus visible (keyboard nav) ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Typography helpers ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.eyebrow--brass {
  color: var(--brass);
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
}

.ghost-word {
  font-family: var(--font-display);
  font-weight: 400;
  color: rgba(42, 38, 32, 0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ─── Layout helpers ─────────────────────────────────────────── */
.container {
  width: var(--container);
  margin-inline: auto;
}

/* ─── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 16, 12, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.5rem, 4vw, 3rem);
  width: 100%;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav__home {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.nav__order {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
  text-decoration: none;
}

.nav__order::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(244, 239, 230, 0.55);
}

.nav__order:hover {
  color: var(--cream);
}

.nav__home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(244, 239, 230, 0.55);
  transition: width 0.35s ease;
}

.nav__home:hover {
  color: var(--cream);
}

.nav__home:hover::after {
  width: 100%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(244, 239, 230, 0.55);
  transition: width 0.35s ease;
}

.nav__link:hover {
  color: var(--cream);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--note,
.nav__link--lavender,
.nav__link--rosemary,
.nav__link--chamomile {
  background: none;
  border: none;
  padding: 0 0 2px;
  border-radius: 0;
  color: rgba(244, 239, 230, 0.88);
}

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(244, 239, 230, 0.14);
  border: none;
  border-radius: 7px;
  cursor: pointer;
  padding: 0.55rem 0.65rem;
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
}

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

.nav__drawer-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--ink);
  text-align: center;
}

.nav__drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink-muted);
}

@media (max-width: 960px) {
  .nav__links {
    display: none;
  }

  .nav__order {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #1a1916;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.62) 100%);
}

.hero__inner {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: clamp(5rem, 9vh, 8rem) clamp(2rem, 5vw, 4rem) clamp(10rem, 18vh, 16rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero__display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4rem, 12vw, 14rem);
  color: rgba(245, 239, 224, 0.95);
  line-height: 0.88;
  margin-bottom: 2rem;
}

.hero__discover {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.55);
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: rgba(245, 239, 224, 0.68);
  max-width: 44ch;
}

.hero__philosophy-block {
  border-top: 1px solid rgba(42, 38, 32, 0.12);
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.hero__philosophy-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero__philosophy-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero__philosophy-body {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.9;
}

.hero__philosophy-body + .hero__philosophy-body {
  margin-top: 0.7rem;
}

.hero__philosophy-body--accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
}

.hero__col-right {
  overflow: hidden;
  border-radius: 2px;
}

.hero__filler {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 55vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .hero__inner {
    padding-left: clamp(1.25rem, 4vw, 2rem);
    padding-right: clamp(1.25rem, 4vw, 2rem);
  }
}

/* ─── Philosophy section (standalone) ───────────────────────── */
.philosophy-section {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--cream-deep) 18%);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.philosophy-section__inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.philosophy-section__text {
  display: flex;
  flex-direction: column;
}

.philosophy-section__image {
  overflow: hidden;
  border-radius: 2px;
}

.philosophy-section__image .hero__filler {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 58vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .philosophy-section__inner {
    grid-template-columns: 1fr;
  }
  .philosophy-section__image {
    order: -1;
    max-height: 40vh;
    overflow: hidden;
  }
}

/* ─── Philosophy section (legacy styles) ─────────────────────── */
.philosophy {
  background: var(--cream-deep);
  padding-block: var(--section-pad);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: var(--container);
  margin-inline: auto;
}

.philosophy__eyebrow {
  margin-bottom: 1.25rem;
}

.philosophy__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}

.philosophy__body {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 48ch;
}

.philosophy__link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.philosophy__link:hover {
  background: var(--ink);
  color: var(--cream);
}

.philosophy__image {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

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

  .philosophy__image {
    order: -1;
  }
}

/* ─── Notes section ──────────────────────────────────────────── */
/* ─── Chips (shared) ─────────────────────────────────────────── */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.chip {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.chip--filled {
  background: var(--ink);
  color: var(--cream-card);
}

.chip--outlined {
  border: 1px solid var(--border);
  color: var(--ink-muted);
}

/* ─── Our Pairings — hover-reveal rows ──────────────────────── */
.pairings {
  width: 100%;
}

.pairing {
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  /* height = image column width so the square shows fully */
  height: clamp(175px, 23vw, 320px);
  border-bottom: 1px solid rgba(30, 28, 24, 0.13);
  text-decoration: none;
  color: inherit;
}

.pairing__text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 5rem);
  width: 100%;
}

.pairing__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-shrink: 0;
  width: 6rem;
  align-self: flex-start;
  padding-top: 0.3rem;
}

.pairing__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pairing__name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.05;
  color: var(--ink);
  text-decoration: none;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.25s ease;
}

.pairing:hover .pairing__name {
  text-decoration: underline;
}

.pairing__line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-muted);
  line-height: 1.6;
}

.pairing__discover {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.25s ease;
}

/* Image: square — width matches row height so it shows fully */
.pairing__image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: clamp(175px, 23vw, 320px);
  z-index: 1;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.pairing__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Hover state */
.pairing:hover .pairing__image {
  transform: translateX(0);
}


.pairing:hover .pairing__discover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pairing {
    height: auto;
    padding-block: 2rem;
  }

  .pairing__text {
    align-items: flex-start;
  }

  .pairing__image {
    display: none;
  }
}

/* ─── Page fade-in ───────────────────────────────────────────── */
@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

main {
  animation: page-fade-in 0.45s ease both;
}

@media (prefers-reduced-motion: reduce) {
  main { animation: none; }
}

/* ─── Cursor trail (pairings section only) ───────────────────── */
@keyframes steam-rise {
  0%   { opacity: 0;            transform: translate(-50%, -50%) scale(0.4); }
  18%  { opacity: var(--op);   }
  100% { opacity: 0;            transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(2.2); }
}

.steam-particle {
  position: fixed;
  pointer-events: none;
  z-index: 500;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, rgba(255,252,248,0.95) 0%, rgba(255,250,244,0.55) 38%, transparent 68%);
  filter: blur(var(--blur));
  mix-blend-mode: overlay;
  animation: steam-rise var(--dur) ease-out forwards;
  will-change: transform, opacity;
}

/* ─── Second section ─────────────────────────────────────────── */
.second-section {
  display: grid;
  grid-template-columns: 42fr 58fr;
  min-height: 68vh;
  background-color: #433329;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23a)' opacity='0.13'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.18' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='520' height='520' filter='url(%23b)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 280px 280px, 520px 520px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.second-section__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5.5rem);
  gap: 2rem;
}

.second-section__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
  color: rgba(244, 239, 230, 0.96);
}

.second-section__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: rgba(244, 239, 230, 0.82);
  line-height: 1.6;
}

.second-section__body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: rgba(244, 239, 230, 0.62);
  line-height: 1.8;
}

.second-section__image-col {
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem) 0;
  display: flex;
  align-items: center;
}

.second-section__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .second-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .second-section__image-col {
    padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
    height: 70vw;
  }
}

.ritual-bridge__line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  color: var(--ink-muted);
  line-height: 1.45;
}

/* ─── Aromatics / Ingredients row ────────────────────────────── */
.aromatics {
  background: var(--cream);
  padding-block: var(--section-pad);
}

.aromatics__inner {
  width: var(--container);
  margin-inline: auto;
}

.aromatics__header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.aromatics__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 0.75rem;
}

.aromatics__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}

.aromatic-item {
  display: flex;
  flex-direction: column;
}

.aromatic-item__image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream-deep);
  margin-bottom: 0.75rem;
}

.aromatic-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.aromatic-item:hover .aromatic-item__image {
  transform: scale(1.05);
}

.aromatic-item__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.aromatic-item__source {
  font-size: 0.72rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.aromatics__note {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
}

@media (max-width: 960px) {
  .aromatics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* ─── Ghost word divider ─────────────────────────────────────── */
.ghost-divider {
  background: var(--cream);
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.ghost-divider__word {
  font-size: clamp(6rem, 16vw, 14rem);
  color: rgba(42, 38, 32, 0.06);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  padding-block: 0;
}

/* ─── Newsletter ─────────────────────────────────────────────── */
.find-us {
  background: radial-gradient(ellipse 70% 65% at 50% 40%, var(--cream) 0%, var(--cream-deep) 100%);
  padding-block: var(--section-pad);
  border-top: 1px solid var(--border);
}

.find-us__newsletter-only {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

.find-us__newsletter-only .newsletter__form {
  margin-inline: auto;
}

.find-us__eyebrow {
  margin-bottom: 1rem;
}

.find-us__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.find-us__venues {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 2.0;
}

.find-us__venue-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.find-us__venue-item::before {
  content: '—';
  color: var(--brass);
  font-size: 0.75rem;
}

.newsletter__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.75rem;
  line-height: 1.2;
  color: var(--ink);
}

.newsletter__form {
  display: flex;
  gap: 0;
  border: 1px solid var(--ink);
  border-radius: 100px;
  overflow: hidden;
  max-width: 420px;
}

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink);
  outline: none;
}

.newsletter__input::placeholder {
  color: var(--ink-muted);
}

.newsletter__button {
  background: var(--brass);
  color: var(--cream);
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.newsletter__button:hover {
  background: var(--ink);
}

.newsletter__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  .find-us__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #2C2926;
  color: var(--cream);
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  border-top: none;
  position: relative;
}

.site-footer::before {
  content: '';
  display: block;
  height: 80px;
  margin-top: -80px;
  background: linear-gradient(to bottom, transparent, #2C2926);
  pointer-events: none;
}

.site-footer__inner {
  width: var(--container);
  margin-inline: auto;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: clamp(2rem, 6vw, 5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  justify-content: start;
  text-align: left;
}

.footer-col__title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.45);
  margin-bottom: 0.75rem;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col__link {
  font-size: 0.82rem;
  color: rgba(244, 239, 230, 0.75);
  transition: color 0.2s ease;
}

.footer-col__link:hover {
  color: #F4EFE6;
}

.footer-col__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  padding-top: 1rem;
  text-align: left;
  font-size: 0.7rem;
  color: rgba(244, 239, 230, 0.38);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* =============================================================
   SPLIT-PANEL NOTE PAGE LAYOUT
   ============================================================= */

/* ─── Hero: 45/55, full viewport ────────────────────────────── */
.np-hero {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 67vw;
  background: var(--cream);
}

.np-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(2.5rem, 5vw, 5.5rem) clamp(1.5rem, 2vw, 2rem);
  gap: 1.5rem;
}

.np-hero__photo {
  position: relative;
  overflow: hidden;
}

.np-hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.np-counter {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  font-weight: 400;
}

.np-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.0;
  color: var(--ink);
}

.np-rule {
  width: 2rem;
  height: 1px;
  background: var(--note-accent, var(--ink-muted));
  flex-shrink: 0;
}

.np-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink);
  line-height: 1.5;
}

.np-desc {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.05vw, 0.95rem);
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 300;
}

.np-tabs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.np-tab {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--note-accent, var(--ink));
  text-decoration: none;
  border-bottom: 1px solid var(--note-accent, var(--ink));
  padding-bottom: 1px;
}

.np-tab-divider {
  color: var(--ink-muted);
  font-size: 0.65rem;
  opacity: 0.35;
  font-weight: 300;
}

.np-cta {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--note-accent, var(--ink));
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  align-self: flex-start;
  transition: border-color 0.2s ease;
}

.np-cta:hover {
  border-bottom-color: var(--note-accent, var(--ink));
}

/* ─── Tea / Fragrance panels ─────────────────────────────────── */
.np-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 58.19vh;
  background: var(--cream);
}

.np-panel__photo {
  position: relative;
  overflow: hidden;
  min-height: 58.19vh;
}

.np-panel__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

#tea .np-panel__photo img {
  object-position: 30% center;
}

#fragrance .np-panel__photo img {
  object-position: 70% center;
}

#tea {
  border-top: 1px solid var(--border);
}

.np-panel + .np-panel {
  border-top: 1px solid var(--ink);
}

.np-panel__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(2.5rem, 5vw, 5.5rem);
  gap: 0.75rem;
}

.np-panel--flip .np-panel__text { order: -1; }

.np-panel__label {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--note-accent, var(--ink-muted));
}

.np-panel__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--ink);
  line-height: 1.05;
}

.np-panel__body {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.05vw, 0.95rem);
  color: var(--ink-muted);
  line-height: 1.85;
  font-weight: 300;
  max-width: 36ch;
  margin-top: 0.25rem;
}

.np-panel__order-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 1px;
  margin-top: 0.25rem;
  transition: color 0.25s ease;
}

.np-panel__order-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink-muted);
  transition: width 0.35s ease;
}

.np-panel__order-link:hover {
  color: var(--ink);
}

.np-panel__order-link:hover::after {
  width: 100%;
}

/* ─── Note page mobile ───────────────────────────────────────── */
@media (max-width: 768px) {
  .np-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .np-hero__photo {
    height: 72vw;
    min-height: 260px;
    order: -1;
  }
  .np-hero__text {
    padding: 2rem clamp(1.25rem, 5vw, 2.5rem) 2rem;
    gap: 1rem;
  }
  .np-panel {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .np-panel__photo {
    height: 60vw;
    min-height: 220px;
    order: -1;
  }
  .np-panel--flip .np-panel__photo { order: -1; }
  .np-panel--flip .np-panel__text { order: 0; }
  .np-panel__text {
    padding: 2rem clamp(1.25rem, 5vw, 2.5rem);
  }
}

/* =============================================================
   NOTE PAGE STYLES (legacy)
   ============================================================= */

/* ─── Note hero ──────────────────────────────────────────────── */
.note-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.note-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.note-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 32, 24, 0.42);
  z-index: 1;
}

.note-hero__content {
  position: relative;
  z-index: 2;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.note-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.note-hero__display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 9rem);
  color: var(--cream);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.note-hero__line {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(244, 239, 230, 0.8);
  font-weight: 300;
  max-width: 38ch;
}

/* ─── Note intro ─────────────────────────────────────────────── */
.note-intro {
  background: var(--cream);
  padding-block: var(--section-pad);
}

.note-intro__inner {
  width: var(--container);
  margin-inline: auto;
  max-width: 680px;
}

.note-intro__text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--ink-muted);
}

/* ─── The Notes (top/heart/base) ────────────────────────────── */
.note-breakdown {
  background: var(--cream-deep);
  padding-block: var(--section-pad);
}

.note-breakdown__inner {
  width: var(--container);
  margin-inline: auto;
}

.note-breakdown__eyebrow {
  margin-bottom: 1.25rem;
}

.note-breakdown__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.note-breakdown__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.note-row {
  display: grid;
  grid-template-columns: 100px 1fr 3fr;
  gap: 1.5rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(42, 38, 32, 0.12);
  align-items: baseline;
}

.note-row:last-child {
  border-bottom: 1px solid rgba(42, 38, 32, 0.12);
}

.note-row__position {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, var(--brass));
  font-weight: 500;
}

.note-row__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
}

.note-row__desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

@media (max-width: 600px) {
  .note-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

/* ─── Two forms (note page) ──────────────────────────────────── */
.note-forms {
  background: var(--cream);
  padding-block: var(--section-pad);
}

.note-forms__inner {
  width: var(--container);
  margin-inline: auto;
}

.note-forms__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.note-forms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.note-forms__image-col {
  position: sticky;
  top: 8rem;
}

.note-forms__product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  background: var(--cream-deep);
}

.note-forms__text-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.note-form-block__label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, var(--brass));
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.note-form-block__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.note-form-block__text {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .note-forms__grid {
    grid-template-columns: 1fr;
  }

  .note-forms__image-col {
    position: static;
  }
}

/* ─── The Thread ─────────────────────────────────────────────── */
.note-thread {
  background: var(--cream-deep);
  padding-block: var(--section-pad);
  text-align: center;
}

.note-thread__inner {
  width: var(--container);
  margin-inline: auto;
  max-width: 700px;
}

.note-thread__eyebrow {
  margin-bottom: 1.5rem;
}

.note-thread__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.4;
  color: var(--ink);
}

/* ─── Back link ──────────────────────────────────────────────── */
.note-back {
  background: var(--cream);
  padding-block: 3rem;
  text-align: center;
}

.note-back__link {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
  transition: color 0.2s ease;
}

.note-back__link:hover {
  color: var(--ink);
}

/* ─── Accent overrides per note page ────────────────────────── */
.page--lavender {
  --accent: var(--tint-lavender);
}

.page--rosemary {
  --accent: var(--tint-rosemary);
}

.page--chamomile {
  --accent: var(--tint-chamomile);
}

/* ─── Hero desc (gradient note pages) ───────────────────────── */
.note-hero__desc {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: rgba(244, 239, 230, 0.72);
  line-height: 1.8;
  max-width: 44ch;
  margin-top: 1.25rem;
}

/* ─── Lavender page ──────────────────────────────────────────── */
.page--lavender .note-hero {
  background:
    linear-gradient(to bottom, transparent 72%, var(--cream) 100%),
    radial-gradient(ellipse 65% 52% at  8%  20%, rgba(244, 239, 230, 0.65) 0%, transparent 68%),
    radial-gradient(ellipse 50% 44% at 82%  10%, rgba(200, 185, 240, 0.75) 0%, transparent 62%),
    radial-gradient(ellipse 58% 44% at 48%  80%, rgba(210, 195, 245, 0.65) 0%, transparent 64%),
    radial-gradient(ellipse 36% 32% at  5%  88%, rgba(175, 155, 220, 0.50) 0%, transparent 60%),
    radial-gradient(ellipse 44% 40% at 88%  58%, rgba( 85,  45, 130, 0.28) 0%, transparent 65%),
    linear-gradient(150deg, #DDD5F0 0%, #CAC0E8 30%, #9A85C8 62%, #7558A8 100%);
  padding-bottom: clamp(14rem, 24vh, 22rem);
}

.page--lavender .note-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page--lavender .note-hero__eyebrow {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.page--lavender .note-hero__display { color: #ffffff; margin-bottom: 3.5rem; }
.page--lavender .note-hero__desc   { color: var(--ink-muted); font-style: italic; }

.page--lavender .note-forms .note-form-block__text  { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.9; }

.page--lavender .note-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

/* ─── Utility: visually hidden ───────────────────────────────── */
.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;
}
