/* =====================================================
   Forever Ritual — Static Site Styles
   Single-file CSS. Drop with index.html + app.js on any host.
   ===================================================== */

/* ---------- Brand Tokens ---------- */
:root {
  --fr-ivory: #f3ead8;
  --fr-ivory-deep: #ebe0c9;
  --fr-champagne: #e2d3b3;
  --fr-ink: #131512;
  --fr-ink-soft: #2a2d2a;
  --fr-emerald: #0f4c3a;
  --fr-emerald-deep: #0b3b2c;
  --fr-gold: #c9a961;
  --fr-gold-bright: #d4af37;
  --fr-border: #d9cdb4;
  --fr-muted: #6b6553;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--fr-ink);
  background: var(--fr-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
h1, h2, h3, h4, .font-serif {
  font-family: "Cormorant Garamond", "EB Garamond", serif;
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.01em;
}
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
input, textarea { font: inherit; }
::selection { background: var(--fr-emerald); color: var(--fr-gold); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--fr-ivory); }
::-webkit-scrollbar-thumb { background: var(--fr-emerald); border: 3px solid var(--fr-ivory); }

/* ---------- Helpers ---------- */
.container-fr {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .container-fr { padding-inline: 3rem; }
}
.text-balance { text-wrap: balance; }
.italic { font-style: italic; }
.label-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.label-eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}
.color-emerald { color: var(--fr-emerald); }
.color-gold { color: var(--fr-gold); }
.color-gold-bright { color: var(--fr-gold-bright); }
.color-ink-soft { color: var(--fr-ink-soft); }
.color-muted { color: var(--fr-muted); }
.color-ivory { color: var(--fr-ivory); }
.bg-ivory-deep { background: var(--fr-ivory-deep); }
.bg-ink { background: var(--fr-ink); color: var(--fr-ivory); }
.tabular { font-variant-numeric: tabular-nums; }

/* Section paddings */
.sec { padding: 3.5rem 0; }
.sec-lg { padding: 5rem 0; }
@media (min-width: 768px) {
  .sec { padding: 4.5rem 0; }
  .sec-lg { padding: 6.5rem 0; }
}
.sec-relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* Gold-foil glow behind headlines */
.gold-foil { position: relative; display: inline-block; }
.gold-foil::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  z-index: -1;
  background:
    radial-gradient(40% 60% at 25% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 70%),
    radial-gradient(35% 55% at 75% 50%, rgba(212, 175, 55, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.gold-foil-block { position: relative; }
.gold-foil-block::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  z-index: -1;
  background:
    radial-gradient(40% 60% at 25% 50%, rgba(201, 169, 97, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Grain overlay */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Fade-in observer (set by JS) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fr-gold) 0%, var(--fr-gold-bright) 50%, var(--fr-emerald) 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 100;
  transition: transform 0.05s linear;
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 1rem 0;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(19, 21, 18, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(201, 169, 97, 0.15);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; color: var(--fr-ivory); }
.nav-logo {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  overflow: hidden;
  transition: border-color 0.5s;
}
.nav-brand:hover .nav-logo { border-color: var(--fr-gold-bright); }
.nav-logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.6); }
.nav-brand-text { display: none; line-height: 1.1; }
@media (min-width: 640px) { .nav-brand-text { display: block; } }
.nav-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fr-ivory);
}
.nav-brand-tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201, 169, 97, 0.8);
  margin-top: 2px;
}
.nav-links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links button {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(249, 248, 246, 0.8);
  transition: color 0.3s;
}
.nav-links button:hover { color: var(--fr-gold-bright); }
.nav-cta {
  display: none;
  padding: 0.875rem 1.5rem;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fr-ink);
  background: var(--fr-gold-bright);
  border: 1px solid var(--fr-gold-bright);
  transition: background 0.5s, color 0.5s;
}
@media (min-width: 1024px) { .nav-cta { display: inline-block; } }
.nav-cta:hover { background: transparent; color: var(--fr-gold-bright); }
.nav-toggle { display: inline-flex; color: var(--fr-ivory); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-mobile {
  display: none;
  background: var(--fr-ink);
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { padding: 1.5rem 0; }
.nav-mobile li { padding: 0.75rem 0; }
.nav-mobile button {
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(249, 248, 246, 0.8);
}
.nav-mobile-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--fr-gold-bright);
  color: var(--fr-ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--fr-ink);
  color: var(--fr-ivory);
  overflow: hidden;
  padding: 8rem 0 6rem;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 4rem; } }

/* Ambient orbs */
.hero-orb {
  position: absolute;
  pointer-events: none;
  filter: blur(8px);
}
.hero-orb-1 {
  top: 28%;
  left: -160px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 76, 58, 0.45) 0%, transparent 65%);
  animation: orb-pulse-a 9s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: 5%;
  right: -160px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.22) 0%, transparent 65%);
  animation: orb-pulse-b 11s ease-in-out infinite 1.5s;
}
@keyframes orb-pulse-a {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.15); opacity: 0.85; }
}
@keyframes orb-pulse-b {
  0%, 100% { transform: scale(1.1); opacity: 0.4; }
  50% { transform: scale(1); opacity: 0.7; }
}

/* Mouse-following spotlight */
.spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.14), transparent 60%);
  transition: background 0.25s;
  z-index: 1;
}

/* Floating specks */
.specks { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.speck {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.7), rgba(212, 175, 55, 0));
  animation: speck-float 14s linear infinite;
  opacity: 0;
}
@keyframes speck-float {
  0% { opacity: 0; transform: translateY(0); }
  20% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-220px); }
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fr-gold);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fade-in-left 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fade-in-left {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: none; }
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.95;
  color: var(--fr-ivory);
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero h1 .word span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 .gold-line span { color: var(--fr-gold-bright); font-style: italic; }
@keyframes word-reveal { to { transform: none; } }
.hero-sub {
  margin-top: 2.5rem;
  max-width: 36rem;
  color: rgba(249, 248, 246, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  padding: 1rem 2.25rem;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fr-ink);
  background: var(--fr-gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.4s;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fr-ivory);
  transform: translateX(-100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.btn-primary:hover::before { transform: none; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-text {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fr-ivory);
  padding-bottom: 4px;
  transition: color 0.5s;
}
.btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: rgba(201, 169, 97, 0.4);
  transition: background 0.5s;
}
.btn-text:hover { color: var(--fr-gold-bright); }
.btn-text:hover::after { background: var(--fr-gold-bright); }

.hero-tags {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.5rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249, 248, 246, 0.4);
  opacity: 0;
  animation: fade-up 1s ease 1.4s forwards;
}
.hero-tags .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(201, 169, 97, 0.6); }

/* Hero bottle */
.bottle-wrap {
  position: relative;
  perspective: 1200px;
  max-width: 28rem;
  margin-inline: auto;
  opacity: 0;
  animation: bottle-in 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
@keyframes bottle-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.bottle-caption {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(201, 169, 97, 0.7);
  white-space: nowrap;
  z-index: 4;
}
@media (min-width: 768px) { .bottle-caption { left: -32px; } }
.bottle-frame-outer, .bottle-frame-inner {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 97, 0.3);
  pointer-events: none;
}
.bottle-frame-inner { inset: 16px; border-color: rgba(201, 169, 97, 0.15); }
.bottle-frame-outer { animation: frame-pulse 4s ease-in-out infinite; }
@keyframes frame-pulse { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.45; } }
.bottle-glow {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  filter: blur(40px);
  background: radial-gradient(circle, rgba(15, 76, 58, 0.55) 0%, transparent 70%);
  animation: bottle-glow 6s ease-in-out infinite;
}
@keyframes bottle-glow {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.12); opacity: 0.75; }
}
.bottle-float {
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transform-style: preserve-3d;
  animation: bottle-bob 6s ease-in-out infinite;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes bottle-bob {
  0%, 100% { translate: 0 -6px; }
  50% { translate: 0 6px; }
}
.bottle-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55));
}
.bottle-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: rotate-cw 30s linear infinite;
}
.bottle-orbit .dot {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fr-gold-bright);
  box-shadow: 0 0 12px var(--fr-gold-bright);
  transform: translateX(-50%);
}
.bottle-orbit-ring {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 97, 0.15);
  animation: rotate-ccw 45s linear infinite;
}
@keyframes rotate-cw { to { transform: rotate(360deg); } }
@keyframes rotate-ccw { to { transform: rotate(-360deg); } }

.bottle-label {
  margin-top: 2rem;
  text-align: center;
  opacity: 0;
  animation: fade-up 0.8s ease 1.3s forwards;
}
.bottle-label-name { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--fr-ivory); }
.bottle-label-meta { font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--fr-gold); margin-top: 0.5rem; }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fade-up 1s ease 1.6s forwards;
  z-index: 3;
}
.scroll-cue-label { font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase; color: rgba(201, 169, 97, 0.8); }
.scroll-cue-bar {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--fr-gold-bright), transparent);
  animation: scroll-cue 2.2s ease-in-out infinite;
}
@keyframes scroll-cue { 0%, 100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(10px); opacity: 1; } }

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--fr-ink);
  color: var(--fr-ivory);
  border-top: 1px solid rgba(201, 169, 97, 0.18);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
}
.marquee-item span.text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.875rem;
  color: var(--fr-gold-bright);
}
@media (min-width: 768px) { .marquee-item span.text { font-size: 2.25rem; } }
.marquee-item .bullet { width: 8px; height: 8px; border-radius: 50%; background: var(--fr-gold); }

/* ---------- Diagonal Dividers ---------- */
.divider {
  position: relative;
  width: 100%;
  height: 70px;
  overflow: hidden;
}
.divider.dark-to-light { background: var(--fr-ink); }
.divider.dark-to-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fr-ivory);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}
.divider.light-to-dark { background: var(--fr-ivory); }
.divider.light-to-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fr-ink);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}
.divider::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, transparent calc(50% - 0.5px), rgba(201, 169, 97, 0.6) 50%, transparent calc(50% + 0.5px));
  pointer-events: none;
  z-index: 2;
}

/* ---------- Philosophy ---------- */
.philosophy h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.02;
  max-width: 60rem;
  margin-top: 1.5rem;
}
.philosophy-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3.5rem;
}
@media (min-width: 1024px) { .philosophy-grid { grid-template-columns: 5fr 7fr; gap: 3rem; } }
.philosophy-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.philosophy-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.8s; }
.philosophy-img:hover img { transform: scale(1.04); }
.philosophy-img-tag-tl {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fr-ivory);
}
.philosophy-img-tag-br {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--fr-ivory);
  font-size: 1.125rem;
}
.principles { display: flex; flex-direction: column; justify-content: center; }
.principles-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--fr-emerald);
}
.principles-list { background: var(--fr-border); display: grid; gap: 1px; }
.principle {
  background: var(--fr-ivory);
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  transition: background 0.5s;
}
@media (min-width: 768px) { .principle { grid-template-columns: 80px 220px 1fr; gap: 1.5rem; } }
.principle:hover { background: var(--fr-ivory-deep); }
.principle .n { font-family: "Cormorant Garamond", serif; font-size: 1.875rem; font-weight: 300; color: var(--fr-gold); }
.principle .ttl { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; line-height: 1.2; }
@media (min-width: 768px) { .principle .ttl { font-size: 1.5rem; } }
.principle .txt { font-size: 0.875rem; line-height: 1.6; color: var(--fr-ink-soft); grid-column: 1 / -1; }
@media (min-width: 768px) { .principle .txt { grid-column: 3; font-size: 1rem; line-height: 1.65; } }

/* ---------- Meet First Ritual ---------- */
.meet {
  background: var(--fr-ivory-deep);
  overflow: hidden;
}
.meet-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .meet-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.meet-img-wrap { position: relative; }
.meet-watermark {
  position: absolute;
  top: -2.5rem;
  left: -0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 14rem;
  line-height: 1;
  color: rgba(15, 76, 58, 0.06);
  pointer-events: none;
  user-select: none;
}
@media (min-width: 768px) { .meet-watermark { font-size: 18rem; } }
.meet-imgs { position: relative; display: grid; grid-template-columns: 3fr 2fr; gap: 0.75rem; }
.meet-img-a {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.meet-img-a img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s; }
.meet-img-a:hover img { transform: scale(1.05); }
.meet-img-a-tag-bl {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.meet-img-a-tag-bl .name { font-family: "Cormorant Garamond", serif; color: var(--fr-ivory); font-style: italic; }
.meet-img-a-tag-bl .pct { font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fr-gold-bright); }
.meet-img-b {
  position: relative;
  aspect-ratio: 3 / 5;
  overflow: hidden;
  animation: float-up-down 7s ease-in-out infinite;
}
@keyframes float-up-down { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
.meet-img-b img { width: 100%; height: 100%; object-fit: cover; }
.meet-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}
.meet-copy-sub { margin-top: 1rem; font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.25rem; color: var(--fr-emerald); }
.meet-copy-desc { margin-top: 2rem; font-size: 1rem; line-height: 1.85; color: var(--fr-ink-soft); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; margin-top: 2.5rem; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; }
.feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--fr-emerald);
  color: var(--fr-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 14px; height: 14px; }
.feature-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
.spec-row {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fr-border);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-end;
}
.spec-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fr-muted); }
.spec-value { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; margin-top: 0.25rem; }

/* ---------- Why / Generic 3-col ---------- */
.tri-grid { display: grid; gap: 1px; margin-top: 4rem; background: var(--fr-border); }
@media (min-width: 768px) { .tri-grid { grid-template-columns: repeat(3, 1fr); } }
.tri-card { background: var(--fr-ivory-deep); padding: 2.5rem 3rem; }
.tri-card .icon { color: var(--fr-emerald); }
.tri-card .icon svg { width: 28px; height: 28px; }
.tri-card .ttl { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; margin-top: 1.5rem; }
.tri-card .txt { font-size: 0.875rem; line-height: 1.65; margin-top: 1rem; color: var(--fr-ink-soft); }

/* ---------- Ingredient Story ---------- */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 4rem;
}
@media (min-width: 1024px) { .ingredients-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.ingredient-card {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--fr-ink);
  border: 1px solid var(--fr-border);
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.ingredient-card .img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) brightness(0.95);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s;
}
.ingredient-card:hover .img-bg { transform: scale(1.08); filter: none; }
.ingredient-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 21, 18, 0) 35%, rgba(19, 21, 18, 0.85) 100%);
  pointer-events: none;
}
.ic-corner-tr, .ic-corner-bl {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(212, 175, 55, 0.6);
  transition: border-color 0.5s;
  z-index: 2;
}
.ic-corner-tr { top: 12px; right: 12px; border-top: 1px solid; border-right: 1px solid; }
.ic-corner-bl { bottom: 12px; left: 12px; border-bottom: 1px solid; border-left: 1px solid; }
.ingredient-card:hover .ic-corner-tr,
.ingredient-card:hover .ic-corner-bl { border-color: var(--fr-gold-bright); }
.ic-top {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
.ic-short { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fr-gold-bright); }
.ic-pct {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  color: var(--fr-gold-bright);
  animation: ic-pulse 3s ease-in-out infinite;
}
@keyframes ic-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.ic-bottom {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
}
.ic-name { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--fr-ivory); line-height: 1.15; }
.ic-bot { font-size: 10px; font-style: italic; color: rgba(249, 248, 246, 0.6); margin-top: 0.25rem; }
.ic-reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  color: var(--fr-ivory);
  background: rgba(11, 59, 44, 0.96);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}
.ingredient-card:hover .ic-reveal { transform: translateY(0); }
.ic-reveal .head { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fr-gold-bright); margin-bottom: 0.75rem; }
.ic-reveal p { font-size: 0.875rem; line-height: 1.6; }
.inci {
  max-width: 48rem;
  margin-top: 5rem;
}
.inci-label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fr-emerald); margin-bottom: 1rem; }
.inci p { font-size: 0.875rem; line-height: 1.85; color: var(--fr-ink-soft); }

/* ---------- How Different (table) ---------- */
.howd-wrap { max-width: 64rem; }
.howd-table { margin-top: 4rem; border: 1px solid var(--fr-border); }
.howd-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--fr-border);
}
@media (min-width: 768px) { .howd-row { padding: 1.25rem 2.5rem; } }
.howd-row.head {
  background: var(--fr-ivory-deep);
  color: var(--fr-emerald);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  border-top: none;
}
.howd-row .check, .howd-row .x { display: flex; justify-content: center; }
.howd-row .check svg { width: 20px; height: 20px; color: var(--fr-emerald); }
.howd-row .x svg { width: 20px; height: 20px; color: #bbb; }

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.benefit-card { background: var(--fr-ivory); border: 1px solid var(--fr-border); }
.benefit-card .img { aspect-ratio: 5 / 4; overflow: hidden; }
.benefit-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
.benefit-card:hover .img img { transform: scale(1.05); }
.benefit-card .body { padding: 2rem; }
.benefit-card .for { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--fr-emerald); }
.benefit-card h3 { font-family: "Cormorant Garamond", serif; font-size: 2.25rem; margin-top: 0.5rem; }
.benefit-card ul { margin-top: 1.5rem; }
.benefit-card li { font-size: 0.875rem; color: var(--fr-ink-soft); display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.25rem 0; }
.benefit-card li::before { content: ""; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--fr-gold); flex-shrink: 0; }

/* ---------- How to Apply ---------- */
.howto-grid { display: grid; gap: 1px; margin-top: 4rem; background: var(--fr-border); }
@media (min-width: 768px) { .howto-grid { grid-template-columns: repeat(4, 1fr); } }
.howto-step { background: var(--fr-ivory); padding: 2.5rem; }
.howto-n { font-family: "Cormorant Garamond", serif; font-size: 3rem; font-weight: 300; color: var(--fr-gold); }
.howto-ttl { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; margin-top: 1.5rem; }
.howto-txt { font-size: 0.875rem; line-height: 1.65; margin-top: 1rem; color: var(--fr-ink-soft); }

/* ---------- Everyday Ritual (dark) ---------- */
.everyday { background: var(--fr-ink); color: var(--fr-ivory); }
.everyday h2 { color: var(--fr-ivory); }
.everyday-grid { display: grid; gap: 1px; margin-top: 4rem; background: rgba(201, 169, 97, 0.15); }
@media (min-width: 768px) { .everyday-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .everyday-grid { grid-template-columns: repeat(5, 1fr); } }
.everyday-card { background: var(--fr-ink); padding: 2rem; height: 100%; }
.everyday-n { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--fr-gold-bright); }
.everyday-t { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; margin-top: 1rem; color: var(--fr-ivory); }
.everyday-p { font-size: 0.75rem; line-height: 1.65; margin-top: 1rem; color: rgba(249, 248, 246, 0.6); }

/* ---------- FAQ ---------- */
.faq { background: var(--fr-ivory-deep); }
.faq-list { max-width: 56rem; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--fr-border); }
.faq-item:first-child { border-top: 1px solid var(--fr-border); }
.faq-q {
  width: 100%;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  padding: 1.75rem 2.5rem 1.75rem 0;
  position: relative;
  transition: color 0.3s;
}
@media (min-width: 768px) { .faq-q { font-size: 1.5rem; } }
.faq-q::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--fr-ink);
  border-bottom: 1px solid var(--fr-ink);
  transform: rotate(45deg);
  transition: transform 0.4s;
}
.faq-item.open .faq-q::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fr-ink-soft);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.75rem; }

/* ---------- Store Locator ---------- */
.stores-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.chip {
  padding: 0.625rem 1.25rem;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--fr-border);
  background: transparent;
  color: var(--fr-ink);
  transition: all 0.3s;
}
.chip.active { background: var(--fr-emerald); color: var(--fr-ivory); border-color: var(--fr-emerald); }
.chip:hover:not(.active) { border-color: var(--fr-emerald); }
.stores-grid { display: grid; gap: 1px; margin-top: 2.5rem; background: var(--fr-border); }
@media (min-width: 768px) { .stores-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stores-grid { grid-template-columns: repeat(3, 1fr); } }
.store-card { background: var(--fr-ivory); padding: 2rem; display: flex; flex-direction: column; }
.store-card .city { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fr-emerald); }
.store-card .name { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; margin-top: 0.75rem; line-height: 1.25; }
.store-card .row { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 1.25rem; font-size: 0.875rem; color: var(--fr-ink-soft); }
.store-card .row svg { width: 16px; height: 16px; margin-top: 4px; flex-shrink: 0; color: var(--fr-emerald); }
.store-card .maps {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fr-emerald);
  border-bottom: 1px solid var(--fr-emerald);
  padding-bottom: 4px;
  width: fit-content;
  transition: opacity 0.3s;
}
.store-card .maps:hover { opacity: 0.7; }

/* ---------- Brand Quote interlude ---------- */
.bq {
  position: relative;
  padding: 5rem 0 6rem;
  background: var(--fr-ink);
  color: var(--fr-ivory);
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) { .bq { padding: 7rem 0 8rem; } }
.bq-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 76, 58, 0.45) 0%, transparent 65%);
  filter: blur(20px);
  animation: orb-pulse-a 12s ease-in-out infinite;
}
.bq .label-eyebrow { color: var(--fr-gold); display: inline-flex; }
.bq-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 10rem;
  line-height: 1;
  margin-top: 0.5rem;
  margin-bottom: -3rem;
  color: var(--fr-gold-bright);
  opacity: 0.18;
  user-select: none;
}
@media (min-width: 768px) { .bq-mark { font-size: 14rem; } }
.bq-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1.25;
  max-width: 56rem;
  margin: 0 auto;
}
.bq-rule {
  width: 6rem;
  height: 1px;
  background: var(--fr-gold);
  margin: 2.5rem auto 0;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.bq.in .bq-rule { transform: none; }
.bq-sig { font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--fr-gold); margin-top: 1.5rem; }

/* ---------- Testimonials ---------- */
.testimonials { text-align: center; }
.testimonials-wrap { max-width: 56rem; margin: 0 auto; }
.testimonial-stage { margin-top: 4rem; min-height: 280px; position: relative; }
.testimonial-quote-mark {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  opacity: 0.15;
  color: var(--fr-emerald);
}
.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s, transform 0.6s;
  pointer-events: none;
}
@media (min-width: 768px) { .testimonial { padding: 0 4rem; } }
.testimonial.active { opacity: 1; transform: none; pointer-events: auto; }
.testimonial-stars { display: flex; gap: 6px; margin-bottom: 2rem; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--fr-gold-bright); }
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 768px) { .testimonial-text { font-size: 1.875rem; } }
.testimonial-meta { margin-top: 2rem; display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fr-emerald);
  color: var(--fr-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
}
.testimonial-meta .info { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--fr-emerald); }
.testimonial-nav { margin-top: 3rem; display: flex; align-items: center; justify-content: center; gap: 2rem; }
.tn-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--fr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.tn-arrow:hover { background: var(--fr-emerald); color: var(--fr-ivory); border-color: var(--fr-emerald); }
.tn-arrow svg { width: 18px; height: 18px; }
.tn-dots { display: flex; gap: 0.75rem; }
.tn-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fr-border);
  transition: all 0.3s;
}
.tn-dots button.active { background: var(--fr-emerald); transform: scale(1.6); }

/* ---------- Instagram Gallery ---------- */
.ig { background: var(--fr-ivory-deep); }
.ig-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) { .ig-head { flex-direction: row; align-items: flex-end; } }
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fr-emerald);
  transition: opacity 0.3s;
}
.ig-handle:hover { opacity: 0.7; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .ig-grid { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; } }
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s; }
.ig-tile:hover img { transform: scale(1.1); }
.ig-tile .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(11, 59, 44, 0.55);
  transition: opacity 0.5s;
}
.ig-tile:hover .overlay { opacity: 1; }
.ig-tile .overlay svg { width: 28px; height: 28px; color: var(--fr-gold-bright); }

/* ---------- About Us ---------- */
.about { text-align: center; }
.about h2 { font-size: clamp(2.25rem, 5vw, 4rem); margin-top: 1.5rem; line-height: 1.05; }
.about-copy { max-width: 56rem; margin: 3rem auto 0; font-size: 1.125rem; line-height: 1.85; color: var(--fr-ink-soft); text-align: left; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .about-copy { text-align: center; } }
.about-copy .signature { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.25rem; color: var(--fr-emerald); }

/* ---------- Contact ---------- */
.contact { background: var(--fr-ivory-deep); }
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.contact h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; margin-top: 1.5rem; }
.contact-intro { margin-top: 1.5rem; font-size: 1rem; line-height: 1.65; color: var(--fr-ink-soft); }
.contact-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid var(--fr-border);
  background: var(--fr-ivory);
  transition: border-color 0.3s;
  margin-top: 1.5rem;
}
.contact-card-row:first-of-type { margin-top: 3rem; }
.contact-card-row:hover { border-color: var(--fr-emerald); }
.contact-card-row .left { display: flex; align-items: center; gap: 1rem; }
.contact-card-row svg.lead { width: 22px; height: 22px; color: var(--fr-emerald); }
.contact-card-row .label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fr-emerald); }
.contact-card-row .val { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; margin-top: 0.25rem; }
.contact-card-row .arrow { transition: transform 0.3s; }
.contact-card-row:hover .arrow { transform: translate(2px, -2px); }
.contact-form {
  padding: 2rem;
  background: var(--fr-ivory);
  border: 1px solid var(--fr-border);
}
@media (min-width: 768px) { .contact-form { padding: 3rem; } }
.field-row { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.75rem; }
.field + .field { margin-top: 2rem; }
.field-row + .field { margin-top: 2rem; }
.field label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fr-emerald); }
.field input, .field textarea {
  border: 0;
  border-bottom: 1px solid var(--fr-border);
  padding: 0.5rem 0;
  background: transparent;
  color: var(--fr-ink);
  outline: none;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--fr-emerald); }
.field.textarea textarea { border: 1px solid var(--fr-border); padding: 0.75rem; resize: vertical; min-height: 110px; }
.field.textarea textarea:focus { border-color: var(--fr-emerald); }
.btn-emerald {
  margin-top: 2.5rem;
  padding: 1rem 2.5rem;
  background: var(--fr-emerald);
  color: var(--fr-ivory);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.4s;
}
.btn-emerald:hover { background: var(--fr-emerald-deep); }
.btn-emerald:disabled { opacity: 0.6; cursor: not-allowed; }

/* Toast */
.toast-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toast {
  background: var(--fr-ink);
  color: var(--fr-ivory);
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--fr-gold-bright);
  font-size: 0.875rem;
  min-width: 240px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}
.toast.show { opacity: 1; transform: none; }
.toast.success { border-left-color: var(--fr-emerald); }
.toast.error { border-left-color: #c0392b; }

/* ---------- Footer ---------- */
.footer { position: relative; padding: 5rem 0 2.5rem; background: var(--fr-ink); color: var(--fr-ivory); }
.footer-grid {
  display: grid;
  gap: 3rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; } }
.footer-logo { width: 80px; height: 80px; overflow: hidden; border: 1px solid rgba(201, 169, 97, 0.3); }
.footer-logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.6); }
.footer-name { font-family: "Cormorant Garamond", serif; font-size: 2.25rem; margin-top: 1.5rem; line-height: 1.1; }
.footer-tag { font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase; margin-top: 0.75rem; color: var(--fr-gold); }
.footer-desc { margin-top: 2rem; max-width: 28rem; font-size: 0.875rem; line-height: 1.65; color: rgba(249, 248, 246, 0.6); }
.footer-col-head { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--fr-gold); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col button, .footer-col a { font-size: 0.875rem; color: rgba(249, 248, 246, 0.7); transition: color 0.3s; }
.footer-col button:hover, .footer-col a:hover { color: var(--fr-gold-bright); }
.footer-col .muted { color: rgba(249, 248, 246, 0.5); }
.footer-rule { height: 1px; width: 100%; background: rgba(201, 169, 97, 0.18); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(249, 248, 246, 0.4);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
