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

:root {
  --fog:          #F0ECE6;
  --parchment:    #E4DDD4;
  --parchment-dk: #DDD5CA;
  --driftwood:    #2C2820;
  --stone:        #7A7268;
  --sage:         #7D9B7F;
  --sage-dk:      #5C7A5E;
  --border:       rgba(44, 40, 32, 0.10);
  --border-light: rgba(44, 40, 32, 0.06);
}

html { scroll-behavior: smooth; }

body {
  background: var(--fog);
  color: var(--driftwood);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* ── NAV ───────────────────────────────────────── */
nav#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

nav.scrolled {
  border-color: var(--border);
  background: rgba(240, 236, 230, 0.96);
  backdrop-filter: blur(12px);
}

/* Solid fog nav on pages without a dark hero (shop, journal, trade, contact) */
nav.nav-light {
  background: var(--fog);
  border-bottom-color: var(--border);
}

.nav-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: filter 0.4s, opacity 0.2s;
}
.nav-logo:hover { opacity: 1; }

nav.scrolled .nav-logo,
nav.nav-light .nav-logo {
  filter: brightness(0);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(240,236,230,0.8);
  transition: color 0.4s;
}

.nav-link:hover {
  color: var(--fog);
}

nav.scrolled .nav-link,
nav.nav-light .nav-link {
  color: var(--stone);
}

nav.scrolled .nav-link:hover,
nav.nav-light .nav-link:hover {
  color: var(--driftwood);
}

.nav-link-cta {
  color: var(--fog);
  background: var(--sage);
  padding: 10px 24px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.nav-link-cta:hover {
  background: var(--sage-dk);
  color: var(--fog);
}

nav.scrolled .nav-link-cta,
nav.nav-light .nav-link-cta {
  color: var(--fog);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fog);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

nav.scrolled .nav-hamburger span,
nav.nav-light .nav-hamburger span {
  background: var(--driftwood);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── SECTIONS ─────────────────────────────────── */
section { width: 100%; }

/* ── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(44, 40, 32, 0.92) 0%,
    rgba(44, 40, 32, 0.65) 40%,
    rgba(44, 40, 32, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 820px;
  text-align: center;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fog);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--sage);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(240, 236, 230, 0.8);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 20px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-authority {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 236, 230, 0.45);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-cta {
  display: inline-block;
  padding: 18px 52px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fog);
  background: var(--sage);
  border-radius: 0;
  transition: background 0.3s ease, transform 0.2s ease;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-cta:hover {
  background: var(--sage-dk);
  transform: translateY(-2px);
}

/* ── IDENTITY ─────────────────────────────────── */
.identity {
  padding: 160px 48px;
  text-align: center;
  background: var(--fog);
  border-top: 1px solid var(--border);
}

.identity-inner {
  max-width: 620px;
  margin: 0 auto;
}

.identity-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 40px;
  color: var(--driftwood);
}

.identity-headline em {
  font-style: italic;
  color: var(--sage);
}

.identity-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ── ORIGIN / AUTHORITY ──────────────────────────── */
.origin {
  padding: 120px 48px;
  background: var(--parchment);
  border-top: 1px solid var(--border);
}

.origin-inner {
  max-width: 680px;
  margin: 0 auto;
}

.origin-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 32px;
}

.origin-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 32px;
  color: var(--driftwood);
}

.origin-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 16px;
}

.origin-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.origin-cred {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.origin-cred-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--sage);
}

.origin-cred-text {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--stone);
  line-height: 1.5;
}

/* ── RITUAL ───────────────────────────────────── */
.ritual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--parchment-dk);
  border-top: 1px solid var(--border);
}

.ritual-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-right: 1px solid var(--border);
  overflow: hidden;
}

.ritual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritual-copy {
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ritual-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 32px;
}

.ritual-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 36px;
  color: var(--driftwood);
}

.ritual-body {
  margin-bottom: 32px;
}

.ritual-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 2.2;
}

.ritual-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--parchment);
}

/* ── APPROACH ─────────────────────────────────── */
.approach {
  padding: 160px 48px;
  text-align: center;
  background: var(--driftwood);
  color: var(--fog);
}

.approach-inner {
  max-width: 620px;
  margin: 0 auto;
}

.approach-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
  opacity: 0.5;
  margin-bottom: 36px;
}

.approach-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 48px;
  color: var(--fog);
}

.approach-values {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}

.approach-values span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(240, 236, 230, 0.7);
}

.approach-close {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(240, 236, 230, 0.55);
}

/* ── PRODUCTS ─────────────────────────────────── */
.products {
  background: var(--fog);
  color: var(--driftwood);
  padding: 140px 48px;
  border-top: 1px solid var(--border);
}

.products-inner {
  max-width: 900px;
  margin: 0 auto;
}

.products-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 80px;
  color: var(--driftwood);
  text-align: center;
}

.blend-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.blend-item {
  background: var(--fog);
  padding: 60px 40px;
  text-align: center;
  transition: background 0.3s ease;
}

.blend-item:hover { background: var(--parchment-dk); }

.blend-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--sage);
  margin-bottom: 24px;
}

.blend-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--driftwood);
}

.blend-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(44, 40, 32, 0.55);
  line-height: 1.8;
}

/* ── WHERE IT BELONGS ─────────────────────────── */
.belongs {
  padding: 140px 48px;
  max-width: 100%;
  background: var(--parchment);
  border-top: 1px solid var(--border);
}

.belongs-top {
  max-width: 1100px;
  margin: 0 auto 80px;
  text-align: center;
}

.belongs-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--driftwood);
}

.belongs-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

.use-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.use-item {
  display: block;
  background: var(--parchment-dk);
  padding: 32px;
  border-radius: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.use-item:hover {
  transform: translateY(-4px);
  background: var(--fog);
}

.use-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.2s;
}

.use-item:hover .use-link {
  color: var(--sage-dk);
}

.use-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 20px;
}

.use-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--driftwood);
}

.use-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.75;
}

/* ── SOCIAL PROOF / FIRST BELIEVERS ──────────────── */
.proof {
  padding: 140px 48px;
  background: var(--parchment-dk);
  border-top: 1px solid var(--border);
}

.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.proof-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
}

.proof-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 64px;
  color: var(--driftwood);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.proof-card {
  background: var(--parchment);
  padding: 44px 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--driftwood);
  margin-bottom: 28px;
}

.proof-attr {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.proof-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--driftwood);
  margin-bottom: 2px;
}

.proof-role {
  font-size: 11px;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.02em;
}

/* Open spot card */
.proof-card-open {
  background: var(--parchment);
  border: 1px dashed rgba(125, 155, 127, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.proof-open-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 16px;
}

.proof-open-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.proof-open-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sage);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.proof-open-cta:hover {
  color: var(--sage-dk);
  border-color: var(--sage-dk);
}

/* ── SCARCITY / FIRST DROP ───────────────────── */
.scarcity {
  padding: 160px 48px;
  text-align: center;
  background: var(--fog);
  border-top: 1px solid var(--border);
}

.scarcity-inner {
  max-width: 540px;
  margin: 0 auto;
}

.scarcity-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 36px;
}

.scarcity-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--driftwood);
}

.scarcity-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 8px;
}

.scarcity-cta {
  display: inline-block;
  margin-top: 44px;
  padding: 18px 52px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fog);
  background: var(--driftwood);
  border-radius: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.scarcity-cta:hover {
  background: var(--sage);
  transform: translateY(-2px);
}

/* ── OBJECTS ──────────────────────────────────── */
.objects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.objects-img-wrap {
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  border-right: 1px solid var(--border);
}

.objects-img {
  width: min(300px, 75%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.objects-copy {
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--parchment-dk);
}

.objects-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
}

.objects-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--driftwood);
}

.objects-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
}

/* ── MERCH / CTA BAND ────────────────────────── */
.merch {
  position: relative;
  padding: 140px 48px;
  text-align: center;
  overflow: hidden;
}

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

.merch-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(44, 40, 32, 0.75);
}

.merch-content {
  position: relative;
  z-index: 2;
}

.merch-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 44px;
  color: var(--fog);
}

.merch-headline em {
  color: var(--sage);
}

.merch-cta {
  display: inline-block;
  padding: 18px 52px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fog);
  background: var(--sage);
  border-radius: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.merch-cta:hover {
  background: var(--sage-dk);
  transform: translateY(-2px);
}

/* ── ACCESS SECTION ──────────────────────────── */
.access {
  padding: 160px 48px;
  text-align: center;
  background: var(--parchment);
  border-top: 1px solid var(--border);
}

.access-inner {
  max-width: 480px;
  margin: 0 auto;
}

.access-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--driftwood);
}

.access-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 40px;
}

.access-note {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── ACCESS FORM ─────────────────────────────────── */
.access-form {
  max-width: 440px;
  margin: 0 auto 24px;
}

.access-form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.access-input {
  flex: 1;
  padding: 16px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--driftwood);
  background: var(--fog);
  border: 1px solid var(--border);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}

.access-input::placeholder {
  color: var(--stone);
}

.access-input:focus {
  border-color: var(--sage);
}

.access-btn {
  display: block;
  width: 100%;
  padding: 18px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
  background: var(--sage);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.access-btn:hover {
  background: var(--sage-dk);
  transform: translateY(-2px);
}

.access-success {
  max-width: 440px;
  margin: 0 auto 24px;
  padding: 36px;
  background: var(--parchment-dk);
  border: 1px solid var(--sage);
}

.access-success-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: 12px;
}

.access-success-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--driftwood);
  color: var(--fog);
  padding: 72px 48px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 64px;
  border-top: none;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.8;
  display: block;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,236,230,0.65);
  line-height: 1.6;
  max-width: 220px;
  margin-bottom: 28px;
}

.footer-location {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,236,230,0.35);
}

.footer-col-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,236,230,0.4);
  margin-bottom: 20px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,236,230,0.7);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-nav-links a:hover { color: var(--fog); }

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-email {
  font-size: 12px;
  font-weight: 300;
  color: rgba(240,236,230,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--sage); }

.footer-social {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,236,230,0.4);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(240,236,230,0.08);
  padding-top: 28px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-closing {
  font-size: 11px;
  color: rgba(240,236,230,0.3);
  letter-spacing: 0.06em;
}

/* legacy aliases — keep centre col working on pages not yet updated */
.footer-center { display: none; }
.footer-right { display: none; }

/* ── REVEAL ANIMATION ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── KEYFRAMES ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ── USE PANELS (homepage) ────────────────────── */
.use-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px;
  background: var(--fog);
}

.use-panel {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.use-panel-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.58) saturate(.6);
  transition: transform .7s ease, filter .5s ease;
}

.use-panel:hover .use-panel-img {
  transform: scale(1.05);
  filter: brightness(.45) saturate(.5);
}

.use-panel-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 32px 36px;
  background: linear-gradient(to top, rgba(44,40,32,.82) 0%, transparent 100%);
}

.use-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 400;
  color: var(--fog); margin-bottom: 10px; line-height: 1.15;
}

.use-panel-body {
  font-size: 13px; color: rgba(240,236,230,.88);
  line-height: 1.65; margin-bottom: 20px;
}

.use-panel-link {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--fog); text-decoration: none;
  border-bottom: 1px solid rgba(240,236,230,.4);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.use-panel-link:hover { color: var(--parchment); border-color: var(--parchment); }

/* ── CALM INTERLUDE (homepage) ────────────────── */
.interlude {
  position: relative; height: 460px; overflow: hidden;
}

.interlude-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  filter: brightness(.55) saturate(.55);
}

.interlude-overlay {
  position: absolute; inset: 0;
  background: rgba(44,40,32,0.35);
}

.interlude-content {
  position: relative; z-index: 2;
  height: 100%; display: flex;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 40px;
}

.interlude-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300; font-style: italic;
  color: var(--fog); line-height: 1.5;
  letter-spacing: .02em;
}

/* ── PRODUCTS SECTION (homepage) ─────────────── */
.products-section {
  padding: 88px 56px;
  background: var(--fog);
}

.products-section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.products-section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300; color: var(--driftwood); line-height: 1.1;
}

.products-section-headline em { font-style: italic; }

.products-section-all {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--stone); text-decoration: none;
  border-bottom: 1px solid var(--stone); padding-bottom: 2px;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}

.products-section-all:hover { color: var(--driftwood); border-color: var(--driftwood); }

.products-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--parchment);
  padding: 38px 30px 32px;
}

.product-roast {
  font-size: 9px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 14px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400;
  color: var(--driftwood); margin-bottom: 12px; line-height: 1.15;
}

.product-desc {
  font-size: 13px; color: var(--stone);
  line-height: 1.8; margin-bottom: 28px;
}

.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--driftwood);
}

.product-atc {
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--fog); background: var(--driftwood);
  padding: 10px 18px; text-decoration: none;
  transition: background .2s;
  border: none; cursor: pointer; font-family: inherit;
}

.product-atc:hover { background: var(--sage-dk); }


/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 860px) {
  nav { padding: 16px 24px; }

  .nav-hamburger { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(44,40,32,0.97);
    border-bottom: 1px solid rgba(240,236,230,0.10);
    padding: 16px 0;
  }

  .nav-links.open { display: flex; }

  .nav-link {
    padding: 14px 24px;
    width: 100%;
    text-align: left;
    color: rgba(240,236,230,0.8);
  }

  .nav-link:hover { color: var(--fog); }

  nav.scrolled .nav-link,
  nav.nav-light .nav-link {
    color: rgba(240,236,230,0.8);
  }

  nav.scrolled .nav-link:hover,
  nav.nav-light .nav-link:hover {
    color: var(--fog);
  }

  .nav-link-cta {
    margin: 8px 24px 0;
    width: auto;
    text-align: center;
    color: var(--fog);
    background: var(--sage);
  }

  .hero { min-height: 90svh; }
  .hero-content { padding: 0 24px; }
  .hero-headline { font-size: clamp(36px, 9vw, 54px); }

  .identity { padding: 100px 24px; }

  .origin { padding: 80px 24px; }
  .origin-creds { grid-template-columns: 1fr; gap: 24px; }

  .ritual { grid-template-columns: 1fr; }
  .ritual-img-wrap { border-right: none; border-bottom: 1px solid var(--border); }
  .ritual-copy { padding: 64px 24px; }

  .approach { padding: 100px 24px; }
  .approach-values { flex-direction: column; gap: 16px; }

  .products { padding: 80px 24px; }
  .blend-list { grid-template-columns: 1fr; }

  .belongs { padding: 100px 24px; }
  .belongs-top { margin-bottom: 48px; }
  .use-grid { grid-template-columns: 1fr; }

  .proof { padding: 100px 24px; }
  .proof-grid { grid-template-columns: 1fr; }

  .scarcity { padding: 100px 24px; }

  .access-form-row { flex-direction: column; }

  .objects { grid-template-columns: 1fr; }
  .objects-img-wrap { border-right: none; border-bottom: 1px solid var(--border); }
  .objects-copy { padding: 56px 24px; }

  .merch { padding: 80px 24px; }

  .access { padding: 100px 24px; }

  footer {
    grid-template-columns: 1fr;
    padding: 56px 24px 40px;
    gap: 40px;
  }
  .footer-logo { margin: 0 0 16px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .use-panels { grid-template-columns: 1fr; gap: 12px; padding: 12px; }
  .use-panel { height: 420px; }
  .products-section { padding: 60px 24px; }
  .products-section-grid { grid-template-columns: 1fr; gap: 16px; }
  .products-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .interlude { height: 320px; }
}

/* ── CART ─────────────────────────────────────── */
.cart-count { display:none; position:fixed; bottom:24px; right:24px; background:var(--sage); color:var(--fog); border-radius:50%; width:48px; height:48px; align-items:center; justify-content:center; font-size:13px; font-weight:600; z-index:999; box-shadow:0 4px 16px rgba(0,0,0,0.15); }
.cart-count.visible { display:flex; }
.cart-toast { position:fixed; bottom:84px; right:24px; background:var(--charcoal); color:var(--fog); padding:12px 20px; font-size:12px; letter-spacing:.08em; border-radius:2px; opacity:0; transform:translateY(8px); transition:all 0.3s; z-index:998; pointer-events:none; }
.cart-toast.show { opacity:1; transform:translateY(0); }
.product-atc { cursor:pointer; }
.product-atc.added { background:var(--sage-dk); }