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

:root {
  --plum:      #3d1a3a;
  --plum-dark: #261026;
  --rose:      #c17b8a;
  --rose-light:#e8b4bf;
  --gold:      #c9964a;
  --gold-light:#e8c98a;
  --cream:     #faf5f0;
  --cream-dark:#f0e8e0;
  --sage:      #7a9e87;
  --bark:      #4a3228;
  --text:      #2c1a14;
  --text-mid:  #5a3e36;
  --text-light:#8a6e66;
  --white:     #ffffff;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 12px rgba(61,26,58,.08);
  --shadow:    0 8px 40px rgba(61,26,58,.14);
  --shadow-lg: 0 24px 80px rgba(61,26,58,.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { line-height: 1.75; color: var(--text-mid); font-weight: 300; }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .75rem;
}
.eyebrow--light { color: var(--gold-light); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85em 2.2em;
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-dark {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn-dark:hover { background: var(--plum-dark); }

.btn-light {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}
.btn-light:hover { background: var(--cream); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-xl { padding: 1.1em 3em; font-size: 1rem; }

/* ─── REVEAL ANIMATION ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease calc(var(--delay, 0s)), transform .7s ease calc(var(--delay, 0s));
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── HEADER / NAV ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  transition: background .3s, padding .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(250,245,240,.92);
  backdrop-filter: blur(16px);
  padding: .85rem 2.5rem;
  box-shadow: 0 2px 24px rgba(61,26,58,.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--white);
  transition: color .3s;
}
.site-header.scrolled .logo-link { color: var(--plum); }

.logo-rose {
  font-size: 1.8rem;
  color: var(--rose-light);
  line-height: 1;
  transition: color .3s;
}
.site-header.scrolled .logo-rose { color: var(--rose); }

.logo-text {
  font-family: var(--ff-serif);
  font-size: .95rem;
  line-height: 1.35;
  font-weight: 300;
}
.logo-text strong { font-weight: 600; display: block; font-size: 1.1rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .25s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--white); }
.site-header.scrolled .nav-links a { color: var(--text-mid); }
.site-header.scrolled .nav-links a:hover { color: var(--plum); }

.nav-cta {
  background: rgba(255,255,255,.18) !important;
  color: var(--white) !important;
  padding: .5em 1.4em;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.4);
  transition: background .25s, border-color .25s !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,.3) !important;
  border-color: var(--white) !important;
}
.site-header.scrolled .nav-cta {
  background: var(--plum) !important;
  color: var(--white) !important;
  border-color: var(--plum) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .3s;
}
.site-header.scrolled .nav-toggle span { background: var(--plum); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(250,245,240,.97);
  backdrop-filter: blur(16px);
  padding: 1.5rem 2.5rem;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu a {
  font-size: 1.1rem;
  color: var(--plum);
  font-family: var(--ff-serif);
  font-weight: 500;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;       /* fallback for older iOS */
  height: 100svh;      /* svh excludes browser chrome on iOS 15.4+ */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-img.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(38,16,38,.55) 0%,
    rgba(38,16,38,.45) 50%,
    rgba(38,16,38,.7) 100%
  );
}

.petal-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.petal {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: petalFall linear infinite;
  user-select: none;
}
@keyframes petalFall {
  0%   { transform: translateY(-60px) rotate(0deg);   opacity: 0; }
  10%  { opacity: .7; }
  90%  { opacity: .4; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 860px;
}

.hero-sub {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-title span {
  display: block;
  font-size: .45em;
  letter-spacing: .05em;
  font-weight: 300;
  margin-bottom: .25em;
  opacity: .9;
}
.hero-title em {
  font-style: italic;
  color: var(--rose-light);
  display: block;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: fadeUpDown 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes fadeUpDown {
  0%, 100% { opacity: .5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;  transform: translateX(-50%) translateY(-6px); }
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.dot.active {
  background: var(--rose-light);
  border-color: var(--rose-light);
  width: 24px;
  border-radius: 100px;
}

/* ─── MARQUEE ────────────────────────────────────────── */
.marquee-strip {
  background: var(--plum);
  padding: .9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  font-weight: 400;
}
.marquee-track span:nth-child(odd) { color: var(--rose-light); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── COLLECTIONS ────────────────────────────────────── */
.collections {
  padding: 7rem 0;
  background: var(--cream);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.collection-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.collection-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--plum);
  color: var(--white);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35em .9em;
  border-radius: 100px;
  font-weight: 500;
}
.card-badge--new { background: var(--gold); }

.card-body {
  padding: 1.75rem;
}
.card-eyebrow {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .5rem;
}
.card-body h3 { margin-bottom: .75rem; color: var(--plum-dark); }
.card-body p { font-size: .9rem; margin-bottom: 1.5rem; }

/* ─── PRODUCTS ───────────────────────────────────────── */
.products {
  padding: 7rem 0;
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* carousel */
.product-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  flex-shrink: 0;
}

.pc-track {
  display: flex;
  height: 100%;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  touch-action: pan-y;  /* lets vertical scroll through while capturing horizontal swipe */
}
.pc-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

.pc-prev, .pc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(6px);
  border: none;
  color: var(--plum);
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s, background .2s, transform .2s;
  z-index: 2;
  line-height: 1;
}
.pc-prev { left: .6rem; }
.pc-next { right: .6rem; }
.product-carousel:hover .pc-prev,
.product-carousel:hover .pc-next { opacity: 1; }
/* always visible on touch devices — hover never fires on iOS/Android */
@media (hover: none) {
  .pc-prev, .pc-next { opacity: .75; }
}
.pc-prev:hover, .pc-next:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}
.pc-prev.hidden, .pc-next.hidden { display: none; }

.pc-dots {
  position: absolute;
  bottom: .6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .35rem;
  z-index: 2;
}
.pc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  border: none;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.pc-dot.active {
  background: var(--white);
  width: 18px;
  border-radius: 100px;
}
.pc-dots.hidden { display: none; }

.pc-badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  background: var(--plum);
  color: var(--white);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3em .85em;
  border-radius: 100px;
  font-weight: 500;
  z-index: 2;
}
.pc-badge--gold { background: var(--gold); }

/* product info */
.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info .card-eyebrow { margin-bottom: .4rem; }
.product-info h3 { color: var(--plum-dark); margin-bottom: .35rem; font-size: 1.45rem; }
.product-scent {
  font-style: italic;
  font-size: .8rem;
  color: var(--gold);
  margin-bottom: .65rem;
  font-weight: 400;
}
.product-desc {
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.product-footer .btn { white-space: nowrap; }
.product-price {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--plum);
  font-weight: 500;
  line-height: 1;
}

/* ─── ABOUT ──────────────────────────────────────────── */
.about {
  background: var(--plum-dark);
  padding: 7rem 0;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--plum-dark);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .6rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: var(--shadow);
}
.about-badge-icon { font-size: 1.4rem; display: block; margin-bottom: .2rem; }

.about-text { color: var(--white); }
.about-text .eyebrow { color: var(--gold-light); }
.about-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-lead {
  font-size: 1.15rem;
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--rose-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.about-text p { color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.about-text p em { font-style: italic; color: var(--rose-light); }

.about-pillars {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: background .25s;
}
.pillar:hover { background: rgba(255,255,255,.1); }
.pillar-icon { font-size: 1.5rem; display: block; margin-bottom: .5rem; }
.pillar h4 { font-family: var(--ff-serif); font-size: .95rem; color: var(--white); margin-bottom: .35rem; }
.pillar p { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ─── GALLERY ────────────────────────────────────────── */
.gallery-section {
  padding: 7rem 0;
  background: var(--cream-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(38,16,38,0);
  transition: background .3s;
}
.gallery-item:hover::after { background: rgba(38,16,38,.25); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials {
  padding: 7rem 0;
  background: var(--cream);
}

.testi-carousel {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.testi-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  min-width: 100%;
  padding: 3.5rem 4rem;
  background: var(--white);
  text-align: center;
  border-radius: var(--radius-xl);
}
.testi-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: .15em;
  margin-bottom: 1.5rem;
}
.testi-card p {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.testi-card cite {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-style: normal;
  font-weight: 500;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--plum);
  background: transparent;
  color: var(--plum);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--plum); color: var(--white); transform: scale(1.08); }

.testi-dots { display: flex; gap: .5rem; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-light);
  border: none;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.testi-dot.active { background: var(--plum); width: 24px; border-radius: 100px; }

/* ─── SHOP CTA ───────────────────────────────────────── */
.shop-cta {
  position: relative;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, #5a1a55 100%);
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}
.shop-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-petal-left, .cta-petal-right {
  position: absolute;
  font-size: 8rem;
  color: rgba(193,123,138,.12);
  pointer-events: none;
  line-height: 1;
}
.cta-petal-left { left: -1rem; top: 50%; transform: translateY(-50%) rotate(-20deg); }
.cta-petal-right { right: -1rem; top: 50%; transform: translateY(-50%) rotate(20deg); }

.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-inner p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ─── NEWSLETTER ─────────────────────────────────────── */
.newsletter {
  padding: 5rem 0;
  background: var(--cream-dark);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsletter-text h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--plum-dark);
  margin-bottom: .5rem;
}
.newsletter-text p { font-size: .95rem; }

.newsletter-form {
  display: flex;
  gap: .75rem;
  flex: 1;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  padding: .85em 1.5em;
  border: 1.5px solid rgba(61,26,58,.2);
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-size: .9rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--plum); }
.newsletter-form input::placeholder { color: var(--text-light); }

.newsletter-thanks {
  display: none;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: .05em;
}
.newsletter-thanks.show { display: block; }

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--plum-dark);
  padding: 5rem 0 2rem;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-link { color: var(--white); margin-bottom: 1rem; display: inline-flex; }
.footer-brand .logo-rose { color: var(--rose-light); }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.5); margin-top: .75rem; }

.footer-links h4, .footer-social h4 {
  font-family: var(--ff-serif);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-links ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--rose-light); }

.footer-social p { font-size: .875rem; margin-bottom: 1.25rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.social-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  padding: .5em 1.25em;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: border-color .2s, color .2s, background .2s;
}
.social-btn:hover {
  border-color: var(--rose-light);
  color: var(--rose-light);
  background: rgba(193,123,138,.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ─── LIGHTBOX ───────────────────────────────────────── */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,5,15,.92);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox-backdrop.open { opacity: 1; pointer-events: all; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-img-wrap {
  max-width: min(90vw, 900px);
  max-height: 90svh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.lightbox-img-wrap img { width: 100%; height: 100%; object-fit: contain; }

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,.3);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.products-loading {
  text-align: center; padding: 3rem 0; color: var(--text-light);
  font-size: .95rem; grid-column: 1/-1;
}

/* ─── SEASONAL THEMES ────────────────────────────────── */

/* Christmas */
body.season-christmas {
  --plum:      #165b33;
  --plum-dark: #0d3b21;
  --rose:      #e8534a;
  --rose-light:#f4a29e;
  --gold:      #ffd700;
  --gold-light:#ffe966;
}
body.season-christmas .marquee-strip { background: #c41e3a; }
body.season-christmas .hero-title em { color: #f4a29e; }

/* Thanksgiving */
body.season-thanksgiving {
  --plum:      #7b3f00;
  --plum-dark: #4e2800;
  --rose:      #e07c3a;
  --rose-light:#f0b87a;
  --gold:      #d4a017;
  --gold-light:#e8c060;
}
body.season-thanksgiving .marquee-strip { background: #7b3f00; }

/* Easter */
body.season-easter {
  --plum:      #7b5ea7;
  --plum-dark: #5c3d8a;
  --rose:      #f48fb1;
  --rose-light:#f8c8d8;
  --gold:      #81c784;
  --gold-light:#a5d6a7;
}
body.season-easter .marquee-strip { background: #7b5ea7; }

/* 4th of July */
body.season-july4 {
  --plum:      #3c3b6e;
  --plum-dark: #282770;
  --rose:      #b22234;
  --rose-light:#e05a6a;
  --gold:      #c8a951;
  --gold-light:#e0c870;
}
body.season-july4 .marquee-strip { background: #b22234; }

/* Mother's Day */
body.season-mothersday {
  --plum:      #880e4f;
  --plum-dark: #560027;
  --rose:      #e91e8c;
  --rose-light:#f48fb1;
  --gold:      #e040fb;
  --gold-light:#ea80fc;
}
body.season-mothersday .marquee-strip { background: #880e4f; }

/* Father's Day */
body.season-fathersday {
  --plum:      #1565c0;
  --plum-dark: #003c8f;
  --rose:      #2e7d32;
  --rose-light:#66bb6a;
  --gold:      #5c4033;
  --gold-light:#8d6e63;
}
body.season-fathersday .marquee-strip { background: #1565c0; }

/* seasonal announcement banner */
.season-banner {
  background: var(--gold);
  color: var(--plum-dark);
  text-align: center;
  padding: .6rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  display: none;
}
body[class*="season-"]:not(.season-default) .season-banner { display: block; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { max-width: 580px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .site-header { padding: 1rem 1.5rem; }
  .site-header.scrolled { padding: .75rem 1.5rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gi-tall { grid-row: span 1; }
  .gi-wide { grid-column: span 2; }

  .about-pillars { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }

  .newsletter-inner { flex-direction: column; gap: 1.5rem; }
  .newsletter-form { max-width: 100%; width: 100%; flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius-xl); }
  .newsletter-form .btn { align-self: flex-start; }

  .testi-card { padding: 2.5rem 2rem; }

  .about-img-accent { display: none; }
  .about-badge { right: 1rem; }

  .collection-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gi-wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* stack price + button on very narrow screens */
  .product-footer { flex-direction: column; align-items: flex-start; }

  /* tighten testimonial card padding */
  .testi-card { padding: 2rem 1.25rem; }

  /* hero title a touch smaller on 4" phones */
  .hero-title { font-size: clamp(2.75rem, 9vw, 8rem); }
}

/* lightbox: side nav arrows stack to bottom on mobile */
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next {
    top: auto;
    bottom: 1.5rem;
    transform: none;
  }
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
}
