/* --- PageMotor chrome neutralisation (bespoke full-bleed) --- */
#header,#nav,#footer,.column-sidebar,.headline-area,.page-title,.byline{display:none!important}
#content,.container,.container.columns,.columns,.column-content,.column-main,.page-content,.page,body>.container{max-width:none!important;width:100%!important;margin:0!important;padding:0!important;float:none!important}
html,body{margin:0!important;padding:0!important}
/* --- end neutralisation --- */

/* Drink Feel Flow, the FEEL direction
   Mindful hydration. Serene, editorial, spa-like. */

:root {
  /* Palette, soft and airy */
  --off-white:   #f6f4ee;   /* warm paper base */
  --mist:        #eef2ee;   /* pale section wash */
  --pale-blue:   #cfe0e3;   /* still water */
  --eucalyptus:  #a8c3b3;   /* sage green */
  --sage-deep:   #7fa590;   /* deeper leaf */
  --sand:        #e4d8c4;   /* warm sand */
  --teal-ink:    #20413f;   /* deep teal, primary text */
  --teal-soft:   #41615c;   /* secondary text */
  --accent:      #2f7a72;   /* signal teal */

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 3rem);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

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

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--teal-ink);
  background: var(--off-white);
  line-height: 1.7;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--teal-ink);
}

p { margin: 0 0 1.1rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--teal-ink); }

.ital { font-style: italic; }

/* Focus, gentle but always visible */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-ink);
  color: var(--off-white);
  padding: 0.7rem 1.2rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: var(--off-white); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 238, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(32, 65, 63, 0.08);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-block: 1rem;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--teal-ink);
}
.brand-mark { color: var(--sage-deep); display: inline-flex; }
.brand-words {
  display: inline-flex;
  gap: 0.45rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}
.brand-accent { font-style: italic; color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav a { color: var(--teal-soft); }
.site-nav a:hover { color: var(--teal-ink); }
.nav-cta {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--sage-deep);
  border-radius: 999px;
  color: var(--teal-ink) !important;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
.nav-cta:hover { background: var(--sage-deep); color: var(--off-white) !important; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 9vw, 8rem);
  padding-inline: var(--pad);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(207, 224, 227, 0.6), transparent 55%),
    radial-gradient(90% 80% at 10% 100%, rgba(168, 195, 179, 0.42), transparent 60%),
    linear-gradient(180deg, var(--off-white), var(--mist));
}
.hero-water {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.hero-copy { max-width: 40rem; }
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.hero-lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  color: var(--teal-soft);
  max-width: 36rem;
  margin-bottom: 2.6rem;
}

/* Hero serene product image */
.hero-figure {
  margin: 0;
  position: relative;
  justify-self: center;
  max-width: 460px;
  width: 100%;
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow:
    0 30px 80px rgba(32, 65, 63, 0.18),
    0 4px 16px rgba(32, 65, 63, 0.08);
}
.hero-figure::after {
  /* soft halo so the image reads as part of the calm, not a hard cut-out */
  content: "";
  position: absolute;
  inset: -8% -6% -10% -6%;
  border-radius: 40px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(207, 224, 227, 0.55), transparent 72%);
  z-index: -1;
  filter: blur(8px);
}
.hero-figcaption {
  margin-top: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--teal-soft);
  text-align: center;
}

/* Breathing pacer */
.pacer { display: flex; justify-content: flex-start; margin-bottom: 0.8rem; }
.pacer-stage {
  position: relative;
  width: clamp(160px, 36vw, 220px);
  height: clamp(160px, 36vw, 220px);
  display: grid;
  place-items: center;
}
.pacer-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.pacer-track {
  fill: none;
  stroke: rgba(32, 65, 63, 0.12);
  stroke-width: 2;
}
.pacer-glow {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 578;
  stroke-dashoffset: 578;
  opacity: 0.85;
}
.pacer-dot {
  position: absolute;
  width: clamp(70px, 18vw, 110px);
  height: clamp(70px, 18vw, 110px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--pale-blue), var(--eucalyptus));
  box-shadow: 0 10px 40px rgba(47, 122, 114, 0.28);
  transform: scale(0.66);
  transition: transform 0.6s var(--ease);
}
.pacer-word {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  color: var(--teal-ink);
  letter-spacing: 0.01em;
}
.pacer-caption {
  font-size: 0.92rem;
  color: var(--teal-soft);
  max-width: 30rem;
}
.pacer-toggle {
  display: inline;
  margin-left: 0.35rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--sage-deep);
  color: var(--accent);
  font: inherit;
  font-size: 0.92rem;
  padding: 0 0 1px;
  cursor: pointer;
}
.pacer-toggle:hover { color: var(--teal-ink); }

/* ---------- Sections shared ---------- */
.section-head { max-width: var(--maxw); margin: 0 auto; }
.section-head.centred { text-align: center; }
.section-head.centred .section-sub { margin-inline: auto; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  max-width: 24ch;
}
.section-head.centred h2 { margin-inline: auto; }
.section-sub {
  color: var(--teal-soft);
  max-width: 40rem;
  font-size: 1.08rem;
}

/* ---------- Philosophy ---------- */
.philosophy {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  padding-inline: var(--pad);
  background: var(--off-white);
}
.phil-grid {
  max-width: var(--maxw);
  margin: 2.6rem auto 0;
}
.phil-lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem);
  line-height: 1.45;
  color: var(--teal-ink);
  max-width: 30ch;
  margin-bottom: 3.4rem;
}
.phil-points {
  display: grid;
  gap: clamp(2rem, 4vw, 3.4rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid rgba(32, 65, 63, 0.12);
  padding-top: 2.8rem;
}
.phil-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--eucalyptus);
  display: block;
  margin-bottom: 0.6rem;
}
.phil-point h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.phil-point p { color: var(--teal-soft); margin: 0; }

/* ---------- Ritual ---------- */
.ritual {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  padding-inline: var(--pad);
  background: linear-gradient(180deg, var(--mist), var(--off-white));
}
.ritual-cards {
  list-style: none;
  margin: 3.4rem auto 0;
  padding: 0;
  max-width: var(--maxw);
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.2rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.ritual-card {
  background: var(--off-white);
  border: 1px solid rgba(32, 65, 63, 0.09);
  border-radius: 22px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.ritual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(32, 65, 63, 0.1);
}
.ritual-icon { color: var(--sage-deep); display: block; margin-bottom: 1.2rem; }
.ritual-time {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.ritual-card h3 { font-size: 1.55rem; margin-bottom: 0.6rem; }
.ritual-card p { color: var(--teal-soft); margin: 0; }

/* ---------- Botanicals ---------- */
.botanicals {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  padding-inline: var(--pad);
  background: var(--off-white);
}
.bot-layout {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(2.4rem, 6vw, 5rem);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}
.bot-copy h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 18ch; }
.bot-copy > p { color: var(--teal-soft); max-width: 42ch; }
.bot-list { margin: 2.4rem 0 0; }
.bot-item {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(32, 65, 63, 0.12);
}
.bot-item:last-child { border-bottom: 1px solid rgba(32, 65, 63, 0.12); }
.bot-item dt {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}
.bot-item dd { margin: 0; color: var(--teal-soft); }

.bot-figure {
  margin: 0;
  position: relative;
  justify-self: center;
  max-width: 460px;
  width: 100%;
}
.bot-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(32, 65, 63, 0.12);
}
.bot-figcaption {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--teal-soft);
  text-align: center;
}

/* ---------- Ritual image band ---------- */
.ritual-band {
  padding-block: clamp(2rem, 5vw, 4rem);
  padding-inline: var(--pad);
  background: var(--off-white);
}
.band-figure {
  position: relative;
  margin: 0 auto;
  max-width: var(--maxw);
  border-radius: 28px;
  overflow: hidden;
}
.band-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 914;
  object-fit: cover;
  max-height: 520px;
}
.band-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.6rem, 4vw, 3rem);
  background: linear-gradient(0deg, rgba(20, 41, 39, 0.62), rgba(20, 41, 39, 0.12) 60%, transparent);
  color: var(--off-white);
}
.band-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pale-blue);
  margin-bottom: 0.5rem;
}
.band-line {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 1rem + 1.4vw, 2rem);
  line-height: 1.35;
  max-width: 28ch;
}

/* ---------- Why slow / science ---------- */
.science {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  padding-inline: var(--pad);
  background: linear-gradient(180deg, var(--off-white), var(--mist));
}
.sci-grid {
  list-style: none;
  margin: 3.4rem auto 0;
  padding: 0;
  max-width: var(--maxw);
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.2rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.sci-card {
  background: var(--off-white);
  border: 1px solid rgba(32, 65, 63, 0.09);
  border-radius: 22px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
}
.sci-stat {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.sci-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1;
  color: var(--sage-deep);
}
.sci-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.sci-card p { color: var(--teal-soft); margin: 0; }

/* ---------- Values strip ---------- */
.values {
  padding-block: clamp(4rem, 9vw, 7rem);
  padding-inline: var(--pad);
  background: var(--off-white);
}
.values-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--maxw);
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.values-item {
  padding-top: 1.4rem;
  border-top: 2px solid var(--eucalyptus);
}
.values-head {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--teal-ink);
  margin: 0 0 0.4rem;
}
.values-item p:last-child { color: var(--teal-soft); margin: 0; }

/* ---------- Quote ---------- */
.quote-section {
  padding-block: clamp(5rem, 11vw, 9rem);
  padding-inline: var(--pad);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(168, 195, 179, 0.35), transparent 60%),
    var(--mist);
}
.pull-quote {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}
.pull-quote blockquote { margin: 0; }
.pull-quote blockquote p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 1.2rem + 1.8vw, 2.6rem);
  line-height: 1.4;
  color: var(--teal-ink);
}
.pull-quote figcaption { margin-top: 1.8rem; }
.quote-name {
  display: block;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-ink);
}
.quote-meta {
  display: block;
  font-size: 0.9rem;
  color: var(--teal-soft);
  margin-top: 0.2rem;
}

/* ---------- Join ---------- */
.join {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  padding-inline: var(--pad);
  background: var(--off-white);
}
.join-inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}
.join h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.join-lead { color: var(--teal-soft); max-width: 38rem; margin-inline: auto; }
.join-form {
  display: flex;
  gap: 0.7rem;
  max-width: 30rem;
  margin: 2.2rem auto 1rem;
  flex-wrap: wrap;
}
.join-form input {
  flex: 1 1 14rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(32, 65, 63, 0.25);
  border-radius: 999px;
  background: var(--mist);
  font: inherit;
  color: var(--teal-ink);
}
.join-form input::placeholder { color: var(--teal-soft); opacity: 0.7; }
.join-form button {
  padding: 0.9rem 1.7rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--off-white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.join-form button:hover { background: var(--teal-ink); transform: translateY(-2px); }
.join-note { font-size: 0.9rem; color: var(--teal-soft); }
.join-note.is-ok { color: var(--accent); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-ink);
  color: var(--mist);
  padding-block: clamp(3rem, 6vw, 5rem);
  padding-inline: var(--pad);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}
.footer-words { color: var(--mist); font-size: 1.4rem; margin-bottom: 0.8rem; }
.footer-words .brand-accent { color: var(--eucalyptus); }
.footer-brand p { color: rgba(238, 242, 238, 0.7); max-width: 32ch; margin: 0; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.95rem;
}
.footer-nav a { color: rgba(238, 242, 238, 0.82); }
.footer-nav a:hover { color: #fff; }
.footer-fine {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(238, 242, 238, 0.16);
  font-size: 0.82rem;
  color: rgba(238, 242, 238, 0.55);
}

/* ---------- Gentle image float ---------- */
.hero-figure,
.bot-figure { animation: floatY 9s ease-in-out infinite; }
.bot-figure { animation-duration: 11s; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: clamp(2.2rem, 6vw, 3.4rem); }
  .hero-copy { max-width: none; }
  .hero-figure { order: -1; max-width: 380px; }
  .pacer { justify-content: center; }
  .pacer-caption { margin-inline: auto; text-align: center; }
}

@media (max-width: 860px) {
  .bot-layout { grid-template-columns: 1fr; }
  .bot-figure { order: -1; max-width: 380px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-nav { gap: 0.9rem; font-size: 0.82rem; }
  .site-nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 0.5rem 0.9rem; }
  .hero { min-height: auto; }
  .band-image { aspect-ratio: 4 / 3; min-height: 280px; }
}

@media (max-width: 460px) {
  .hero-title { font-size: clamp(2.3rem, 11vw, 3rem); }
  .hero-figure { max-width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .pacer-dot { transform: scale(0.85); }
  .hero-figure,
  .bot-figure { animation: none; transform: none; }
}
