/* ==========================================================================
   Dayelight — dayelight.co
   Nature-based wellness. Calm, elegant, unhurried.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */
:root {
  /* colour */
  --pine-900: #0c2a24;
  --pine-800: #12382f;
  --pine-700: #1a4d41;
  --teal-600: #17836f;
  --teal-500: #229481;
  --teal-300: #50c7ab;   /* the logo teal */
  --teal-100: #d4ede5;

  --cream:    #fbf8f2;
  --cream-2:  #f5efe4;
  --sand:     #e8dcc8;
  --clay:     #b9825e;
  --gold:     #a9803c;

  --ink:      #22332e;
  --ink-soft: #4d605a;
  --ink-mute: #7b8a85;
  --line:     rgba(18, 56, 47, .14);

  /* type */
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --body: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* rhythm */
  --shell: 1180px;
  --narrow: 720px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 26px;
  --arch: 999px 999px 14px 14px;

  --shadow-soft: 0 2px 8px rgba(12, 42, 36, .05), 0 18px 44px -22px rgba(12, 42, 36, .3);
  --shadow-lift: 0 4px 14px rgba(12, 42, 36, .07), 0 30px 60px -28px rgba(12, 42, 36, .42);

  --ease: cubic-bezier(.22, .68, .32, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.08rem);
  line-height: 1.78;
  font-weight: 400;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-600); text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { color: var(--pine-800); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.005em;
  color: var(--pine-800);
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 1.7rem + 4.2vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 1.15rem + .9vw, 1.85rem); }
h4 { font-size: 1.18rem; }

p { margin: 0 0 1.25em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--teal-100); color: var(--pine-900); }

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

/* ------------------------------------------------------- helper type */
.eyebrow {
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin: 0 0 1.15rem;
  display: block;
}

.lede {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.05rem + .85vw, 1.7rem);
  line-height: 1.52;
  color: var(--ink-soft);
  font-weight: 400;
}

.muted { color: var(--ink-mute); }
.center { text-align: center; }
.narrow { max-width: var(--narrow); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 999;
  background: var(--pine-800); color: #fff;
  padding: .7rem 1.2rem; border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* a small botanical divider */
.rule {
  width: 100%;
  max-width: 260px;
  margin: 2.2rem auto;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--teal-300);
}
.rule::before, .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.rule span {
  width: 7px; height: 7px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  border-radius: 1px;
}
.rule.left { margin-inline: 0; }

/* --------------------------------------------------------- structure */
.shell {
  width: min(100% - (var(--gut) * 2), var(--shell));
  margin-inline: auto;
}
.shell-wide { width: min(100% - (var(--gut) * 2), 1400px); margin-inline: auto; }

section { position: relative; }
.band { padding-block: var(--section); }
.band-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.band-cream { background: var(--cream-2); }
.band-pine { background: var(--pine-800); color: #e4ece9; }
.band-pine h2, .band-pine h3, .band-pine h4 { color: #fff; }
.band-pine .eyebrow { color: var(--teal-300); }
.band-pine .lede { color: rgba(255, 255, 255, .82); }
.band-pine a { color: var(--teal-300); }

/* soft paper texture, barely there */
.band-cream::before,
.band-pine::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(circle at 20% 30%, rgba(80, 199, 171, .05), transparent 45%),
                    radial-gradient(circle at 85% 70%, rgba(169, 128, 60, .05), transparent 40%);
}

/* ------------------------------------------------------------ header */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.masthead.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -26px rgba(12, 42, 36, .6);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .85rem;
  transition: padding .35s var(--ease);
}
.masthead.is-stuck .masthead-inner { padding-block: .5rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.brand img {
  width: 60px; height: 60px;
  border-radius: 50%;
  transition: width .35s var(--ease), height .35s var(--ease);
}
.masthead.is-stuck .brand img { width: 46px; height: 46px; }

.brand-name {
  font-family: var(--display);
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--pine-800);
}
.brand-tag {
  display: block;
  font-family: var(--body);
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: .38rem;
}

/* nav */
.nav { display: flex; align-items: center; gap: clamp(.35rem, 1.1vw, 1rem); }
.nav a {
  position: relative;
  font-size: .795rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: .5rem .15rem;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .1rem;
  height: 1px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--pine-800); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--pine-800); }
.nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--teal-300); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--pine-800);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1020px) {
  /* the toggle has to sit above the drawer it opens, or the "×" is buried */
  .nav-toggle { display: flex; position: relative; z-index: 2; }
  .nav {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;   /* full-width tap targets */
    justify-content: flex-start;
    gap: .25rem;
    padding: 6rem var(--gut) 2.5rem;
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  /* Centre the links only while there's room to spare. Auto margins absorb
     the free space and collapse to zero once the list overflows, so nothing
     is ever pushed off the top where it can't be scrolled to. */
  .nav > :first-child { margin-top: auto; }
  .nav > :last-child { margin-bottom: auto; }

  body.nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav a {
    font-family: var(--display);
    font-size: clamp(1.4rem, 1.05rem + 2.1vw, 1.85rem);
    line-height: 1.3;
    letter-spacing: .01em;
    text-transform: none;
    color: var(--pine-800);
    padding: .45rem 0;
    white-space: normal;
  }
  .nav a::after { display: none; }
  .nav a[aria-current="page"] { color: var(--teal-600); }
}

/* short viewports (small phones, landscape): tighten so all seven links fit */
@media (max-width: 1020px) and (max-height: 700px) {
  .nav { padding-top: 5rem; padding-bottom: 1.5rem; gap: 0; }
  .nav a { font-size: clamp(1.25rem, 1rem + 1.6vw, 1.6rem); padding: .35rem 0; }
}

/* --------------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: min(90svh, 780px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: slow-drift 26s var(--ease) forwards;
}
@keyframes slow-drift {
  from { transform: scale(1.09); }
  to   { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 42, 36, .45) 0%, rgba(12, 42, 36, .1) 34%, rgba(12, 42, 36, .58) 72%, rgba(12, 42, 36, .82) 100%),
    linear-gradient(96deg, rgba(12, 42, 36, .55) 0%, rgba(12, 42, 36, .12) 52%, transparent 78%);
}
.hero-body {
  padding-block: clamp(3rem, 8vw, 6rem);
  color: #fff;
  max-width: 46rem;
}
.hero-body h1 { color: #fff; text-shadow: 0 2px 30px rgba(12, 42, 36, .35); }
.hero-body .eyebrow { color: var(--teal-300); }
.hero-body p {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1rem + .8vw, 1.6rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, .92);
  max-width: 34rem;
}

/* compact hero for interior pages */
.hero-page { min-height: min(66svh, 560px); }
.hero-page h1 { font-size: clamp(2.3rem, 1.6rem + 3.2vw, 4.1rem); }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .7);
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), transparent);
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { opacity: .25; transform: scaleY(.5); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}
.scroll-cue:hover { color: #fff; }

/* -------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease),
              color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-solid { background: var(--teal-600); color: #fff; box-shadow: 0 12px 28px -16px rgba(23, 131, 111, .9); }
.btn-solid:hover { background: var(--pine-800); color: #fff; box-shadow: 0 18px 34px -16px rgba(12, 42, 36, .8); }

.btn-line { border-color: currentColor; color: var(--pine-800); }
.btn-line:hover { background: var(--pine-800); color: var(--cream); border-color: var(--pine-800); }

.btn-ghost { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

/* text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal-600);
}
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------- section head */
.head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head.center { margin-inline: auto; }
.head p { color: var(--ink-soft); font-size: 1.06em; }

/* ------------------------------------------------------------ split */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.25rem, 5vw, 5rem);
  align-items: center;
}
.split.top { align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split .flip { order: -1; }
@media (max-width: 900px) { .split .flip { order: 0; } }

.frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--sand);
}
.frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.frame.wide img { aspect-ratio: 4 / 3; }
.frame.tall img { aspect-ratio: 3 / 4; }
.frame.arch { border-radius: var(--arch); }

/* a photo with a soft offset botanical accent behind it */
.frame-offset { position: relative; }
.frame-offset::before {
  content: "";
  position: absolute;
  inset: 1.6rem -1.6rem -1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  z-index: -1;
}

/* ------------------------------------------------------------- cards */
.grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
a.card:hover, .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}
.card-media { overflow: hidden; background: var(--sand); }
.card-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.6rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { color: var(--ink-soft); font-size: .95rem; }
.card-body .link-arrow { margin-top: auto; padding-top: 1.1rem; }

/* offering cards on the home page — always paired, never an orphan row */
.offer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 720px) { .offer { grid-template-columns: 1fr; } }
.offer .card-media img { aspect-ratio: 16 / 10; }
.offer .card-body { padding: 2rem 2rem 2.2rem; }
.offer .card-body h3 { font-size: clamp(1.5rem, 1.3rem + .7vw, 1.95rem); }
.offer .card-body p { font-size: 1rem; }

/* --------------------------------------------------- product cards */
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.product-media { background: var(--pine-900); overflow: hidden; }
.product-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.product:hover .product-media img { transform: scale(1.04); }
.product-body { padding: 1.5rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.4rem; margin-bottom: .15rem; }
.botanical {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-mute);
  margin-bottom: .95rem;
  display: block;
}
.product dl {
  margin: 0 0 1.1rem;
  font-size: .87rem;
  line-height: 1.62;
  display: grid;
  gap: .5rem;
}
.product dt {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: .1rem;
}
.product dd { margin: 0; color: var(--ink-soft); }
.product .tags { margin-top: auto; padding-top: .4rem; }

.tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  font-size: .655rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .38rem .72rem;
  border-radius: 999px;
  background: var(--teal-100);
  color: var(--pine-700);
  white-space: nowrap;
}
.tag-sand { background: var(--cream-2); color: var(--gold); }

/* product family intro cards */
.family {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--arch);
  padding: 2.4rem clamp(1.4rem, 2.2vw, 2.4rem) 2.2rem;
  text-align: center;
}
.band-cream .family { background: #fff; }
.family h3 { font-size: 1.55rem; }
.family p { color: var(--ink-soft); font-size: .96rem; }
.family .sigil { margin-bottom: 1.1rem; color: var(--teal-500); }

/* -------------------------------------------------------- list styles */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.checks li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}
.checks li::before {
  content: "";
  position: absolute;
  left: .32rem; top: .62em;
  width: 7px; height: 7px;
  border: 1px solid var(--teal-500);
  transform: rotate(45deg);
  border-radius: 1px;
}
.band-pine .checks li::before { border-color: var(--teal-300); }

/* numbered process */
.steps { counter-reset: s; list-style: none; margin: 0; padding: 0; display: grid; gap: 1.6rem; }
.steps li {
  counter-increment: s;
  position: relative;
  padding-left: 4.2rem;
  min-height: 2.9rem;
}
.steps li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute;
  left: 0; top: -.1rem;
  width: 2.9rem; height: 2.9rem;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--teal-600);
  background: var(--cream);
}
.band-pine .steps li::before {
  background: transparent;
  border-color: rgba(80, 199, 171, .38);
  color: var(--teal-300);
}
.steps h4 { margin-bottom: .3rem; }
.steps p { color: var(--ink-soft); margin: 0; }
.band-pine .steps p { color: rgba(255, 255, 255, .78); }

/* -------------------------------------------------------- timeline */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  position: relative;
  padding: 0 0 2.3rem 2.6rem;
  border-left: 1px solid var(--line);
}
.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -4.5px; top: .62em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-300);
  box-shadow: 0 0 0 4px var(--cream);
}
.band-cream .timeline li::before { box-shadow: 0 0 0 4px var(--cream-2); }
.timeline .when {
  display: block;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: .35rem;
}
.timeline h4 { margin-bottom: .3rem; }
.timeline p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* --------------------------------------------------------- pricing */
.price-list { display: grid; gap: 0; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.band-pine .price-row { border-bottom-color: rgba(255, 255, 255, .16); }
.price-row:first-child { border-top: 1px solid var(--line); }
.band-pine .price-row:first-child { border-top-color: rgba(255, 255, 255, .16); }
.price-name { font-family: var(--display); font-size: clamp(1.3rem, 1.1rem + .7vw, 1.7rem); color: var(--pine-800); }
.band-pine .price-name { color: #fff; }
.price-name small {
  display: block;
  font-family: var(--body);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--ink-mute);
  margin-top: .2rem;
}
.band-pine .price-name small { color: rgba(255, 255, 255, .6); }
.price-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-.35rem);
  min-width: 1.5rem;
}
.band-pine .price-dots { border-bottom-color: rgba(255, 255, 255, .26); }
.price-fig {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  color: var(--teal-600);
  white-space: nowrap;
}
.band-pine .price-fig { color: var(--teal-300); }
.price-note { margin-top: 1.4rem; font-size: .9rem; color: var(--ink-mute); }
.band-pine .price-note { color: rgba(255, 255, 255, .62); }

/* ---------------------------------------------------------- gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(.6rem, 1.3vw, 1rem);
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform .7s var(--ease), filter .7s var(--ease);
}
.gallery a { display: block; overflow: hidden; border-radius: var(--r-md); }
.gallery a:hover img { transform: scale(1.05); }
.gallery .span-2 { grid-column: span 2; }
.gallery .span-2 img { aspect-ratio: 2 / 1; }
@media (max-width: 640px) {
  .gallery .span-2 { grid-column: span 1; }
  .gallery .span-2 img { aspect-ratio: 1; }
}

/* ------------------------------------------------------------ quote */
.quote {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2rem + 1.7vw, 2.5rem);
  line-height: 1.38;
  color: var(--pine-800);
  font-weight: 400;
}
.band-pine .quote blockquote { color: #fff; }
.quote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--body);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.band-pine .quote cite { color: rgba(255, 255, 255, .6); }

/* ------------------------------------------------------------ prose */
.prose { max-width: 40rem; }
.prose > * + * { margin-top: 1.3em; }
.prose h2 { margin-top: 2.6em; font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.4rem); }
.prose h3 { margin-top: 2em; font-size: clamp(1.25rem, 1.1rem + .7vw, 1.55rem); }
.prose h2 + p, .prose h3 + p { margin-top: .8em; }
.prose p { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 1.35rem; color: var(--ink-soft); }
.prose li + li { margin-top: .5em; }
.prose > p:first-of-type {
  font-family: var(--display);
  font-size: 1.32rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.prose blockquote {
  margin: 2.4em 0;
  padding: .2em 0 .2em 1.7rem;
  border-left: 2px solid var(--teal-300);
  font-family: var(--display);
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--pine-800);
}
.prose figure { margin: 2.6em 0; }
.prose figure img { border-radius: var(--r-md); }
.prose figcaption {
  margin-top: .75rem;
  font-size: .82rem;
  color: var(--ink-mute);
  text-align: center;
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 3em 0;
}

.callout {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem 1.6rem;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.callout strong { color: var(--pine-800); }

/* article layout with a sticky sidebar */
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 15rem;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 940px) { .article-grid { grid-template-columns: 1fr; } }
.aside { position: sticky; top: 7rem; font-size: .9rem; }
@media (max-width: 940px) { .aside { position: static; } }
.aside h4 {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: .8rem;
}
.aside ul { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: .55rem; }
.aside a { color: var(--ink-soft); text-decoration: none; }
.aside a:hover { color: var(--teal-600); text-decoration: underline; }

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
  align-items: center;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ------------------------------------------------------------ contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-item .eyebrow { margin-bottom: .55rem; }
.contact-item a, .contact-item p {
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.45;
  text-decoration: none;
  color: #fff;
  word-break: break-word;
}
.contact-item a:hover { color: var(--teal-300); text-decoration: underline; }

/* ------------------------------------------------------------- footer */
.footer {
  background: var(--pine-900);
  color: rgba(255, 255, 255, .68);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
  font-size: .92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }
.footer .brand-name { color: #fff; }
.footer .brand-tag { color: rgba(255, 255, 255, .5); }
.footer h4 {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-blurb { max-width: 26rem; margin-top: 1.3rem; line-height: 1.75; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}
.footer-bottom p { margin: 0; }

.disclaimer {
  margin-top: 1.6rem;
  font-size: .76rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .42);
  max-width: 46rem;
}

/* -------------------------------------------------------- reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }
.reveal-d4 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------- lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(12, 42, 36, .93);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 88svh;
  border-radius: var(--r-md);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8);
}
.lightbox button {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.lightbox button:hover { background: rgba(255, 255, 255, .14); }

/* --------------------------------------------------------- utilities */
.stack-sm > * + * { margin-top: 1rem; }
.stack > * + * { margin-top: 1.6rem; }
.stack-lg > * + * { margin-top: 2.6rem; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media print {
  .masthead, .footer, .scroll-cue, .lightbox { display: none; }
  body { background: #fff; }
  .reveal { opacity: 1; transform: none; }
}
