/* =========================================================
   Rashmi Malhotra — Holistic Nutrition & Herbal Wellness
   Theme: Warm Golden-Hour — Rose · Amber · Sand · Terracotta
   Extracted from Rashmi's photo: golden sun, warm whites,
   soft rose-blush, terracotta amber, sandy neutrals
   ========================================================= */

:root {
  /* ---- Backgrounds ---- */
  --paper:       #FBF6EE;   /* warm ivory — matches her white outfit */
  --paper-deep:  #F2EAD8;   /* warm sand */
  --paper-warm:  #FDF9F3;   /* near white */

  /* ---- Text ---- */
  --ink:         #2C2118;   /* warm dark brown, not cold black */
  --ink-soft:    #5E4E3A;   /* warm mid-brown */
  --ink-deep:    #1A1410;

  /* ---- Primary — Warm Rose Gold (from her skin + golden light) ---- */
  --rose:        #C4826A;   /* warm rose-terracotta */
  --rose-deep:   #8B4F3C;   /* deep burnt rose */
  --rose-light:  #D9A08A;   /* blush rose */

  /* ---- Blush (from background warm tones) ---- */
  --blush:       #E8C4B4;   /* soft blush pink */
  --blush-deep:  #D4937A;

  /* ---- Gold-Amber (golden hour sun in photo) ---- */
  --gold:        #C9913A;   /* warm amber gold */
  --gold-light:  #E5AD55;   /* bright gold */
  --gold-warm:   #F0C97A;   /* pale gold glow */

  /* ---- Terracotta (her accessories, warm shadows) ---- */
  --terracotta:  #B85A35;
  --terracotta-lt:#D07850;

  /* ---- Line / Border ---- */
  --line:        #E2D5C3;

  /* ---- Typography ---- */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  /* ---- Layout ---- */
  --container:   1280px;
  --radius:      8px;
  --ease:        cubic-bezier(.22,.61,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- Floating Particles ---------- */
.particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.particles span {
  position: absolute; border-radius: 50%;
  animation: float-up linear infinite; opacity: 0;
}
.particles span:nth-child(1)  { width:4px; height:4px; background:var(--rose);       left:10%; animation-duration:18s; animation-delay:0s; }
.particles span:nth-child(2)  { width:3px; height:3px; background:var(--gold);       left:22%; animation-duration:22s; animation-delay:4s; }
.particles span:nth-child(3)  { width:5px; height:5px; background:var(--blush);      left:38%; animation-duration:16s; animation-delay:2s; }
.particles span:nth-child(4)  { width:3px; height:3px; background:var(--terracotta); left:55%; animation-duration:20s; animation-delay:7s; }
.particles span:nth-child(5)  { width:4px; height:4px; background:var(--gold-light); left:70%; animation-duration:24s; animation-delay:1s; }
.particles span:nth-child(6)  { width:3px; height:3px; background:var(--rose-light); left:82%; animation-duration:17s; animation-delay:9s; }
.particles span:nth-child(7)  { width:5px; height:5px; background:var(--gold-warm);  left:15%; animation-duration:26s; animation-delay:5s; }
.particles span:nth-child(8)  { width:3px; height:3px; background:var(--blush);      left:45%; animation-duration:19s; animation-delay:12s; }
.particles span:nth-child(9)  { width:4px; height:4px; background:var(--terracotta); left:62%; animation-duration:21s; animation-delay:3s; }
.particles span:nth-child(10) { width:3px; height:3px; background:var(--rose-deep);  left:90%; animation-duration:23s; animation-delay:8s; }
@keyframes float-up {
  0%   { transform: translateY(100vh) rotate(0deg); opacity:0; }
  10%  { opacity: .3; }
  90%  { opacity: .1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity:0; }
}

/* Warm paper grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: .025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 700;
  line-height: 1.1; letter-spacing: -.01em; margin: 0;
  color: var(--ink-deep);
}
.display-xl { font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 700; }
.display-lg { font-size: clamp(2.1rem, 3.6vw, 3.1rem); }
p { margin: 0; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink-soft); max-width: 54ch; }
.body-text { color: var(--ink-soft); max-width: 62ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--terracotta); font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  display: inline-block; border-radius: 2px;
}

.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: .85rem; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); position: relative; z-index: 2; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--alt { background: var(--paper-deep); }
.section--dark {
  background: linear-gradient(140deg, #2C1810 0%, #3D2215 50%, #241510 100%);
  color: var(--paper); position: relative; overflow: hidden;
}
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark .body-text, .section--dark .lede { color: rgba(251,246,238,.72); }
.section--dark .eyebrow { color: var(--gold-light); }
.section--dark .eyebrow::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.section--dark .btn--ghost { color: var(--paper); border-color: rgba(251,246,238,.35); }
.section--dark .btn--ghost:hover { border-color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.6rem; font-family: var(--font-body); font-size: .92rem;
  font-weight: 600; letter-spacing: .02em; text-decoration: none;
  border-radius: var(--radius); border: 1.5px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.btn__arrow { transition: transform .3s var(--ease-bounce); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: var(--paper); border-color: var(--rose-deep);
  box-shadow: 0 2px 0 rgba(201,145,58,.4) inset, 0 4px 16px -6px rgba(184,90,53,.45);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #6E3328, var(--rose-deep));
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -10px rgba(184,90,53,.5), 0 2px 0 rgba(201,145,58,.35) inset;
}
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--ink-deep); transform: translateY(-3px); }
.btn--small { padding: .55rem 1.1rem; font-size: .82rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,238,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}

.nav { display: flex; align-items: center; justify-content: space-between; padding-block: .85rem; gap: 1.5rem; }

/* ---- RM Logo ---- */
.nav__brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; flex-shrink: 0; }
.logo-mark svg { width: 44px; height: 44px; transition: transform .4s var(--ease-bounce), filter .3s; }
.nav__brand:hover .logo-mark svg {
  transform: rotate(8deg) scale(1.06);
  filter: drop-shadow(0 3px 10px rgba(201,145,58,.45));
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.22rem;
  color: var(--ink-deep); letter-spacing: -.01em; line-height: 1.1; font-style: italic;
}
.logo-sub {
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .22em;
  color: var(--ink-soft); text-transform: uppercase; margin-top: .2rem; line-height: 1;
}

.nav__list { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 2rem); font-size: .9rem; font-weight: 500; }
.nav__link { position: relative; text-decoration: none; padding-block: .3rem; color: var(--ink); transition: color .25s; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 2px; transition: right .35s var(--ease);
}
.nav__link:hover { color: var(--rose-deep); }
.nav__link:hover::after, .nav__link[aria-current]::after { right: 0; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__toggle {
  display: none; background: none; border: 1.5px solid var(--line);
  padding: .45rem; color: var(--ink-deep); border-radius: var(--radius); transition: border-color .2s;
}
.nav__toggle:hover { border-color: var(--gold); }
.nav__toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; }
  .nav__list {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 2px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); font-size: 1rem;
  }
  .nav__list.is-open { max-height: 480px; box-shadow: 0 12px 30px -8px rgba(44,33,24,.12); }
  .nav__list li { width: 100%; }
  .nav__link { display: block; padding: 1rem clamp(1.25rem, 4vw, 3rem); width: 100%; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .logo-sub { display: none; }
}
@media (max-width: 560px) { .nav__actions .btn--primary { display: none; } }

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(3rem, 7vw, 6rem);
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--paper) 0%, var(--paper-deep) 100%);
}
.hero__bg-art { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero__bg-svg { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }

.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center; position: relative; z-index: 2;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terracotta); background: rgba(184,90,53,.07); border: 1px solid rgba(184,90,53,.22);
  padding: .45rem 1rem; border-radius: 100px; margin-bottom: 1.4rem;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--terracotta);
  border-radius: 50%; animation: pulse-dot 2.4s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,90,53,.5); }
  50% { box-shadow: 0 0 0 6px rgba(184,90,53,0); }
}

.hero__content > * + * { margin-top: 1.2rem; }
.hero__title-line { display: block; }
.hero__title-accent {
  color: transparent; -webkit-text-stroke: 2px var(--rose-deep); position: relative;
}
.hero__title-accent::after {
  content: attr(data-text); position: absolute; left: 0; top: 0;
  color: var(--rose-deep); clip-path: inset(0 100% 0 0);
  animation: text-reveal 1.4s var(--ease) .5s forwards;
}
@keyframes text-reveal { to { clip-path: inset(0 0% 0 0); } }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem !important; }

.hero__stats {
  display: flex; align-items: center; gap: 1.5rem;
  border-top: 1px solid var(--line); padding-top: 1.4rem; margin-top: 2.5rem !important; flex-wrap: wrap;
}
.hero__stat strong {
  display: block; font-family: var(--font-display); font-size: 2rem;
  font-weight: 700; color: var(--rose-deep); line-height: 1;
}
.hero__stat span {
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft); margin-top: .25rem; display: block;
}
.hero__stat-div { width: 1px; height: 40px; background: var(--line); flex-shrink: 0; }

/* ---- Photo Section ---- */
.hero__photo { display: flex; align-items: center; justify-content: center; }
.hero__photo-frame {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
}

/* Outer decorative ring */
.hero__photo-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: ring-spin linear infinite;
}
.hero__photo-ring--outer {
  inset: -18px;
  border: 1.5px dashed rgba(201,145,58,.3);
  animation-duration: 30s;
}
.hero__photo-ring--inner {
  inset: -8px;
  border: 1px solid rgba(196,130,106,.2);
  animation-duration: 20s;
  animation-direction: reverse;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* Photo image container */
.hero__photo-img-wrap {
  position: relative; border-radius: 52% 48% 42% 58% / 48% 52% 48% 52%;
  overflow: hidden;
  box-shadow:
    0 24px 60px -20px rgba(184,90,53,.4),
    0 8px 24px -8px rgba(44,33,24,.25),
    inset 0 0 0 3px rgba(201,145,58,.18);
  animation: blob-morph 8s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 52% 48% 42% 58% / 48% 52% 48% 52%; }
  25%       { border-radius: 58% 42% 52% 48% / 52% 48% 52% 48%; }
  50%       { border-radius: 44% 56% 48% 52% / 56% 44% 56% 44%; }
  75%       { border-radius: 50% 50% 56% 44% / 44% 56% 44% 56%; }
}
.hero__photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(1.02) saturate(1.08) contrast(1.02);
  transition: transform .6s var(--ease), filter .6s;
}
.hero__photo-frame:hover .hero__photo-img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.12);
}

/* Warm golden glow behind photo */
.hero__art-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; height: 90%;
  background: radial-gradient(ellipse, rgba(229,173,85,.22) 0%, rgba(196,130,106,.12) 40%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: -1;
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .8; }
  50%       { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Floating credential badge */
.hero__cred-badge {
  position: absolute; bottom: 8%; left: -8%;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: white; padding: 1rem 1.2rem; border-radius: 14px;
  display: flex; align-items: center; gap: .65rem;
  box-shadow: 0 8px 24px -8px rgba(184,90,53,.55);
  animation: badge-float 4s ease-in-out infinite;
}
.hero__cred-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1;
}
.hero__cred-label {
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em;
  text-transform: uppercase; opacity: .9; line-height: 1.5;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Floating rating pill */
.hero__rating-pill {
  position: absolute; top: 8%; right: -6%;
  background: rgba(251,246,238,.96); border: 1px solid var(--line);
  padding: .65rem 1rem; border-radius: 100px;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  box-shadow: 0 6px 20px -6px rgba(44,33,24,.2);
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .08em; color: var(--ink-soft);
  animation: badge-float 4s ease-in-out .8s infinite;
}
.hero__rating-stars { color: var(--gold); font-size: .9rem; letter-spacing: .12em; }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { order: -1; }
  .hero__photo-frame { width: min(100%, 320px); }
  .hero__cred-badge { left: 0; bottom: 5%; }
  .hero__rating-pill { right: 0; top: 5%; }
}
@media (max-width: 540px) {
  .hero__cred-badge { left: 4px; padding: .7rem .9rem; }
  .hero__cred-num { font-size: 1.5rem; }
  .hero__rating-pill { right: 4px; }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-soft); opacity: .5;
  animation: hint-bounce 2.5s ease-in-out infinite; z-index: 3;
}
.scroll-hint__line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 960px) { .scroll-hint { display: none; } }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: linear-gradient(135deg, var(--ink-deep) 0%, #3A1E0F 100%);
  padding-block: 1rem; position: relative; z-index: 3; overflow: hidden;
}
.trust-bar::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,145,58,.1) 0%, transparent 60%);
  pointer-events: none;
}
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(251,246,238,.82); white-space: nowrap;
}
.trust-item svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }
.trust-div { width: 1px; height: 20px; background: rgba(251,246,238,.15); flex-shrink: 0; }
@media (max-width: 700px) { .trust-div { display: none; } .trust-bar__inner { gap: .75rem 1.5rem; justify-content: flex-start; } }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .95fr 1.15fr; gap: clamp(2.5rem, 5vw, 5.5rem); align-items: center; }
.about__plate { border: 1px solid var(--line); background: var(--paper-deep); padding: clamp(1.5rem, 3vw, 2.5rem); position: relative; border-radius: 4px; }
.about__plate::after { content: ""; position: absolute; inset: -4px; border: 1px dashed rgba(196,130,106,.3); pointer-events: none; }
.about__plate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.about__specimen { background: var(--paper); padding: 1.5rem 1rem; display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; transition: background .25s; }
.about__specimen:hover { background: var(--paper-warm); }
.about__specimen svg { width: 46px; height: 46px; color: var(--rose); }
.about__specimen span { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; color: var(--ink-soft); text-transform: uppercase; }
.about__plate-cap { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); text-align: center; padding-top: 1.1rem; }

.pull-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem); line-height: 1.5; color: var(--ink-deep);
  margin: 2rem 0 0; padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--rose); background: linear-gradient(to right, rgba(196,130,106,.08), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote cite { display: block; margin-top: 1rem; font-style: normal; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.cert-seal { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; }
.cert-badge svg { width: 90px; height: 90px; flex-shrink: 0; }
.cert-seal__text { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; color: var(--ink-soft); line-height: 1.9; }
.cert-seal__text strong { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--ink-deep); letter-spacing: 0; }

@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } .about__plate { order: 2; } }

/* ---------- Pillars ---------- */
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar {
  padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.5rem, 2.5vw, 2.25rem);
  border-left: 1px solid var(--line); position: relative; transition: background .3s;
}
.pillar:hover { background: var(--paper-deep); }
.pillar:first-child { border-left: none; }
.pillar::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.pillar:hover::after { transform: scaleX(1); }
.pillar__icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(196,130,106,.14), rgba(201,145,58,.1));
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  border-radius: 50%; margin-bottom: 1.25rem; transition: transform .35s var(--ease-bounce), box-shadow .35s;
}
.pillar:hover .pillar__icon-wrap { transform: scale(1.1) rotate(-6deg); box-shadow: 0 6px 18px -8px rgba(184,90,53,.28); }
.pillar__icon-wrap svg { width: 26px; height: 26px; color: var(--rose-deep); }
.pillar__num { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .75rem; }
.pillar h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); margin-bottom: .75rem; }
.pillar p { color: var(--ink-soft); font-size: .95rem; line-height: 1.7; }
@media (max-width: 760px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-left: none; border-top: 1px solid var(--line); }
  .pillar:first-child { border-top: none; }
}

/* ---------- Collection ---------- */
.collection__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.collection__count { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; color: var(--ink-soft); text-transform: uppercase; padding-bottom: .35rem; white-space: nowrap; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card--specimen {
  background: var(--paper); border: 1px solid var(--line);
  padding: 1.85rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; border-radius: 4px; overflow: hidden;
}
.card--specimen::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card--specimen:hover { transform: translateY(-8px) rotate(-.3deg); box-shadow: 0 20px 40px -20px rgba(184,90,53,.38); border-color: var(--blush); }
.card--specimen:hover::before { transform: scaleX(1); }
.card__tag {
  position: absolute; top: 0; right: 1.5rem;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--terracotta)); color: white;
  padding: .28rem .7rem; border-radius: 0 0 4px 4px; font-weight: 500;
}
.card--specimen__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.card--specimen svg.icon { width: 46px; height: 46px; color: var(--rose-deep); flex-shrink: 0; transition: transform .4s var(--ease-bounce); }
.card--specimen:hover svg.icon { transform: scale(1.12) rotate(5deg); }
.card--specimen .ref { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .14em; color: var(--gold); border: 1px solid rgba(201,145,58,.3); padding: .25rem .55rem; white-space: nowrap; background: rgba(201,145,58,.06); }
.card--specimen h3 { font-size: 1.28rem; margin-bottom: .2rem; }
.card--specimen .latin { font-family: var(--font-mono); font-style: italic; font-size: .76rem; color: var(--ink-soft); letter-spacing: .03em; margin-top: 0; display: block; }
.card--specimen p { color: var(--ink-soft); font-size: .93rem; flex-grow: 1; }
.card--specimen__meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1rem; margin-top: .25rem; }
.card--specimen__price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--rose-deep); }
.card--specimen__price span { font-family: var(--font-mono); font-size: .66rem; color: var(--ink-soft); display: block; letter-spacing: .1em; margin-bottom: .15rem; font-weight: 400; }
.card-link { font-size: .82rem; font-weight: 600; text-decoration: none; color: var(--rose-deep); display: inline-flex; align-items: center; gap: .4rem; border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; transition: gap .25s var(--ease), color .25s; }
.card-link:hover { gap: .65rem; color: var(--terracotta); }
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.notes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.field-note {
  background: var(--paper); border: 1px solid var(--line); padding: 2rem;
  position: relative; border-radius: 4px; transition: transform .35s var(--ease), box-shadow .35s;
}
.field-note:hover { transform: translateY(-4px); box-shadow: 0 12px 30px -15px rgba(184,90,53,.28); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: .75rem; }
.field-note__mark { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; color: var(--rose); display: block; margin-bottom: .5rem; font-style: italic; }
.field-note p.quote { font-style: italic; color: var(--ink-deep); font-size: 1.04rem; line-height: 1.75; }
.field-note__by { margin-top: 1.5rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--ink-soft); text-transform: uppercase; }
.field-note__by strong { display: block; font-family: var(--font-body); font-size: .94rem; letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 600; margin-bottom: .2rem; }
@media (max-width: 980px) { .notes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .notes__grid { grid-template-columns: 1fr; } }

/* ---------- Newsletter ---------- */
.newsletter__deco { position: absolute; right: -40px; top: -40px; width: 300px; pointer-events: none; opacity: .5; }
.newsletter__inner { text-align: center; max-width: 660px; margin-inline: auto; position: relative; z-index: 2; }
.newsletter__inner .eyebrow { justify-content: center; }
.newsletter__inner h2 { margin-top: 1rem; }
.newsletter-form { display: flex; gap: .85rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] {
  flex: 1 1 280px; background: rgba(251,246,238,.1);
  border: none; border-bottom: 1.5px solid rgba(251,246,238,.35);
  color: var(--paper); padding: .85rem .3rem; font-size: 1rem; transition: border-color .25s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(251,246,238,.4); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold-light); outline: none; }
.newsletter__note { margin-top: 1.25rem; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--rose-light); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2.5rem, 5vw, 5rem); }
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.field label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea { background: transparent; border: none; border-bottom: 1.5px solid var(--line); padding: .75rem .1rem; color: var(--ink); transition: border-color .25s; font-size: .96rem; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose); outline: none; }
.field textarea { resize: vertical; min-height: 130px; font-family: var(--font-body); }
.field-error { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--terracotta); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-msg { padding: .9rem 1.2rem; font-size: .9rem; border: 1px solid var(--line); margin-bottom: 1.75rem; font-family: var(--font-mono); border-radius: var(--radius); }
.form-msg--success { border-color: var(--rose); color: var(--rose-deep); background: rgba(196,130,106,.06); }
.form-msg--error { border-color: var(--gold); color: var(--terracotta); background: rgba(201,145,58,.08); }
.info-card { background: var(--paper-deep); border: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 2.5rem); height: 100%; border-radius: 4px; }
.info-card h3 { font-size: 1.2rem; margin-bottom: 1.6rem; }
.info-list { display: flex; flex-direction: column; gap: 1.4rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.info-list svg { width: 20px; height: 20px; color: var(--rose); flex-shrink: 0; margin-top: 3px; }
.info-list strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: .15rem; }
.social-row { display: flex; gap: .9rem; margin-top: 1.85rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.social-row a { width: 40px; height: 40px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; text-decoration: none; border-radius: var(--radius); transition: border-color .25s, transform .25s var(--ease-bounce), background .25s; }
.social-row a:hover { border-color: var(--rose); transform: translateY(-3px); background: rgba(196,130,106,.08); }
.social-row svg { width: 17px; height: 17px; color: var(--rose-deep); }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

/* ==========================================================
   FOOTER — warm dark, shimmer bar flush at very top
   ========================================================== */
.site-footer {
  background: linear-gradient(150deg, #241308 0%, #341A0C 40%, #2A1018 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

/* Shimmer bar — at absolute top of footer */
.footer__top-deco {
  position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 5;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--rose-light), var(--gold-warm), var(--terracotta));
  background-size: 300%; animation: shimmer-bar 5s linear infinite;
}
@keyframes shimmer-bar { to { background-position: 300% center; } }

/* Grain */
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025; pointer-events: none;
}

/* Warm glow blob inside footer */
.site-footer::after {
  content: ""; position: absolute; bottom: -80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(196,130,106,.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* Inner wrapper — adds top padding so content clears the 4px shimmer bar */
.footer__inner-wrap { padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; position: relative; z-index: 2; }

.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); }

/* Footer Logo */
.footer__brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; margin-bottom: 1.25rem; transition: opacity .25s; }
.footer__brand:hover { opacity: .85; }
.footer__logo-mark svg { width: 44px; height: 44px; flex-shrink: 0; }
.footer__logo-text { display: flex; flex-direction: column; }
.footer__name { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.22rem; color: var(--paper); line-height: 1.1; }
.footer__sub { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(251,246,238,.5); margin-top: .25rem; }

.footer p.body-text { color: rgba(251,246,238,.62); max-width: 32ch; font-size: .9rem; }
.footer__location { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(251,246,238,.4); }
.footer__location svg { width: 13px; height: 13px; flex-shrink: 0; }

.footer h4 { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 1.3rem; font-weight: 500; }
.footer__list { display: flex; flex-direction: column; gap: .85rem; }
.footer__list a { color: rgba(251,246,238,.72); text-decoration: none; font-size: .9rem; transition: color .25s, padding-left .25s; display: flex; align-items: center; gap: .5rem; }
.footer__list a:hover { color: var(--gold-light); padding-left: .3rem; }
.footer__list a::before { content: ""; width: 0; height: 1px; background: var(--gold); flex-shrink: 0; transition: width .25s; }
.footer__list a:hover::before { width: 10px; }
.footer__list .ref { font-family: var(--font-mono); font-size: .66rem; color: var(--gold); margin-right: .4rem; flex-shrink: 0; }

.footer__badge { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(251,246,238,.1); display: flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(251,246,238,.42); }
.footer__badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.75rem; border-top: 1px solid rgba(251,246,238,.1); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; color: rgba(251,246,238,.4); }

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__grid > :first-child { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; align-items: flex-start; } }

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

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .particles { display: none; }
  .badge-dot { animation: none; }
  .hero__art-glow { animation: none; }
  .hero__photo-ring { animation: none; }
  .hero__photo-img-wrap { animation: none; }
  .hero__cred-badge, .hero__rating-pill { animation: none; }
  .footer__top-deco { animation: none; }
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
