/* ============================================
   SUGAR BEE FLOWERS — DESIGN SYSTEM v2
   Warm Yarra Valley elegance.
   ============================================ */

:root {
  /* Palette — warmer, dustier */
  --bone:        #F7F2EA;
  --bone-soft:   #F0E9DC;
  --bone-deep:   #E5DBC8;
  --ink:         #14100B;        /* deeper near-black */
  --ink-soft:    #2D2822;
  --clay:        #4D4640;
  --mushroom:    #8C8276;
  --whisper:     #B7AE9E;
  --hairline:    #DCD4C2;
  --rose:        #9D5E4C;        /* deeper terracotta */
  --rose-soft:   #E8D2C2;        /* champagne pink */
  --gilt:        #A88B5C;        /* muted antique gold — hardware accent */
  --leaf:        #6B7551;        /* sage accent */
  --honey:       #D4A574;        /* warm honey */

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --slow: 1.2s var(--ease);
  --med:  0.5s var(--ease);
  --fast: 0.25s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ============================================
   TYPE
   ============================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.eyebrow--rose { color: var(--rose); }
.eyebrow--bone { color: var(--bone); }
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(34px, 4.5vw, 56px); line-height: 1.15; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25; }
h4 { font-size: 18px; line-height: 1.3; }
p { margin: 0; }

.lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  font-weight: 400;
}

/* ============================================
   LAYOUT
   ============================================ */
.wrap { width: 100%; padding: 0 36px; max-width: 1440px; margin: 0 auto; }
.wrap-tight { max-width: 920px; margin: 0 auto; padding: 0 36px; }
.section { padding: 120px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 160px 0; }

@media (max-width: 768px) {
  .wrap, .wrap-tight { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-lg { padding: 96px 0; }
}

/* ============================================
   NAV — same masthead but with subtle warmth
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 242, 234, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--hairline);
  transition: background var(--med), border-color var(--med), backdrop-filter var(--med);
}

/* Logo swap — both variants live in the wordmark; CSS shows one or the other. */
.wordmark .logo-white { display: none; }

/* ----- Transparent overlay treatment for pages with a hero (homepage) ----- */
body.has-hero .nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
body.has-hero .nav .nav-link { color: var(--bone); }
body.has-hero .nav .nav-link::after { background: var(--bone); }
body.has-hero .nav .enquire-pill {
  color: var(--bone);
  border-color: var(--bone);
}
body.has-hero .nav .enquire-pill:hover {
  background: var(--bone); color: var(--ink); border-color: var(--bone);
}
body.has-hero .nav .nav-toggle span { background: var(--bone); }
body.has-hero .wordmark .logo-charcoal { display: none; }
body.has-hero .wordmark .logo-white { display: block; }
/* Drop-shadow keeps white text/logo readable over varying hero photography */
body.has-hero .nav .nav-link,
body.has-hero .nav .enquire-pill { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55); }
/* For the homepage overlay, combine brightness/invert (turns the file white)
   WITH a deeper drop-shadow — this single declaration wins on specificity over
   both the generic .wordmark img filter and the [src*="logo-white"] filter. */
body.has-hero .nav .wordmark img[src*="logo-white"] {
  filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0, 0, 0, 0.6));
}
body.has-hero .wordmark img { filter: drop-shadow(0 1px 12px rgba(0, 0, 0, 0.5)); }

/* ----- Transparent nav over interior page-head photos -----
   Same idea as the homepage hero but the page-head photo has a LIGHT bone
   overlay, so we keep the logo + menu in their default dark charcoal (no
   white-swap and no drop-shadow needed). Nav re-solidifies on scroll. */
body.has-page-head-photo .nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
body.has-page-head-photo .nav.is-scrolled {
  background: rgba(247, 242, 234, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
}

/* ----- Re-solidify on scroll ----- */
body.has-hero .nav.is-scrolled {
  background: rgba(247, 242, 234, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
}
body.has-hero .nav.is-scrolled .nav-link { color: var(--ink); text-shadow: none; }
body.has-hero .nav.is-scrolled .nav-link::after { background: var(--rose); }
body.has-hero .nav.is-scrolled .enquire-pill {
  color: var(--ink);
  border-color: var(--gilt);
  text-shadow: none;
}
body.has-hero .nav.is-scrolled .enquire-pill:hover {
  background: var(--ink); color: var(--bone); border-color: var(--ink);
}
body.has-hero .nav.is-scrolled .nav-toggle span { background: var(--ink); }
body.has-hero .nav.is-scrolled .wordmark .logo-charcoal { display: block; }
body.has-hero .nav.is-scrolled .wordmark .logo-white { display: none; }
body.has-hero .nav.is-scrolled .wordmark img { filter: none; }
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 36px;
  gap: 24px;
}
.nav-left, .nav-right {
  display: flex; gap: 26px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 400;
  align-items: center;
}
.nav-right { justify-content: flex-end; }
.nav-link { position: relative; padding: 4px 0; transition: color var(--fast); }
.nav-link:hover { color: var(--rose); }
.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 0.5px; background: var(--rose);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--rose); }
.nav-link.is-active::after { transform: scaleX(1); }

.wordmark {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.wordmark-link { display: inline-flex; }
.wordmark img {
  display: block;
  height: 48px;
  width: auto;
  max-width: none;
}
.footer .wordmark img { height: 52px; }
@media (max-width: 880px) {
  .wordmark img { height: 30px; }
  .footer .wordmark img { height: 36px; }
}

/* Render the white-named logo file as a white silhouette via CSS — saves us
   needing a separate white-on-transparent source file. */
.wordmark img[src*="logo-white"] {
  filter: brightness(0) invert(1);
}

.cart-link { color: var(--mushroom); font-size: 11px; }
.enquire-pill {
  border: 0.5px solid var(--gilt);
  padding: 7px 18px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background var(--fast), color var(--fast), border-color var(--fast);
}
.enquire-pill:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* Cart pill — sits to the left of the Enquire pill */
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0.5px solid var(--hairline);
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  transition: background var(--fast), color var(--fast), border-color var(--fast);
  cursor: pointer;
}
.cart-pill .snipcart-items-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  border-radius: 9px;
  background: var(--rose);
  color: var(--bone);
  letter-spacing: 0;
}
.cart-pill:hover { border-color: var(--ink); }
/* Match the hero/light-overlay treatment used for nav-link + enquire-pill */
body.has-hero .nav .cart-pill { color: var(--bone); border-color: var(--bone); text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
body.has-hero .nav .cart-pill:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
body.has-hero .nav.is-scrolled .cart-pill { color: var(--ink); border-color: var(--hairline); text-shadow: none; }
body.has-hero .nav.is-scrolled .cart-pill:hover { background: transparent; border-color: var(--ink); }
@media (max-width: 880px) { .cart-pill { display: none; } }

.nav-toggle { display: none; }

@media (max-width: 1080px) {
  .nav-left, .nav-right { gap: 18px; font-size: 10px; }
}

@media (max-width: 880px) {
  .nav-inner { grid-template-columns: 1fr auto 1fr; padding: 14px 20px; }
  .nav-left, .nav-right { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; margin-left: -8px;
  }
  .nav-toggle span { width: 22px; height: 0.5px; background: var(--ink); }
  .wordmark { font-size: 22px; }
}

.mobile-menu {
  display: none; /* hidden on desktop — only shown < 880px below */
}

@media (max-width: 880px) {
  .mobile-menu {
    position: fixed; inset: 0;
    background: var(--bone);
    z-index: 99;
    padding: 100px 30px 40px;
    transform: translateY(-100%);
    /* Belt-and-suspenders: some iOS Safari builds let the off-screen drawer
       leak through when transform/inset interact with scroll-driven viewport
       height changes. Lock it out with visibility + opacity + pointer-events
       and only unlock when the toggle adds .is-open. */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s var(--ease),
                opacity 0.4s var(--ease),
                visibility 0s linear 0.6s;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .mobile-menu.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.6s var(--ease),
                opacity 0.4s var(--ease),
                visibility 0s linear 0s;
  }
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
}
.mobile-menu nav a.feature { color: var(--rose); font-style: italic; }
.mobile-menu .meta {
  border-top: 0.5px solid var(--hairline);
  padding-top: 20px;
  font-size: 11px; color: var(--mushroom);
  letter-spacing: 0.08em; line-height: 1.85;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  /* Top darkness ensures the transparent-nav logo + menu links read on light parts
     of the hero photo (e.g. concrete wall). Middle stays near-clear so the photo
     shines. Bottom darker for headline legibility. */
  background: linear-gradient(180deg,
    rgba(20,16,11,0.55) 0%,
    rgba(20,16,11,0.30) 12%,
    rgba(20,16,11,0.05) 35%,
    rgba(31,27,22,0.55) 100%);
}

.hero-meta-top {
  position: absolute;
  top: 96px; left: 36px; right: 36px;
  display: flex; justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.6s forwards;
}

.hero-content {
  position: absolute;
  bottom: 64px; left: 36px; right: 36px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--bone);
  max-width: 1100px;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease) 0.4s forwards;
}
.hero-headline .em { font-style: italic; font-weight: 400; }

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.9s forwards;
}
.hero-tagline {
  font-size: 14px; color: var(--bone);
  max-width: 560px; line-height: 1.7;
  letter-spacing: 0.02em;
}
.hero-scroll {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--bone);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.hero-scroll-line {
  width: 0.5px; height: 36px; background: var(--bone);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.4); opacity: 0.4; }
}

@media (max-width: 768px) {
  .hero-meta-top { top: 80px; left: 20px; right: 20px; flex-direction: column; gap: 8px; }
  .hero-content { bottom: 40px; left: 20px; right: 20px; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ============================================
   SERVICE TILES (homepage — replaces index strip)
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
}
.service {
  background: var(--bone);
  padding: 64px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: background var(--fast);
  cursor: pointer;
  min-height: 280px;
  justify-content: space-between;
}
.service:hover { background: var(--bone-soft); }
.service .num {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rose);
}
.service h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.service .em { font-style: italic; }
.service p {
  font-size: 14px; line-height: 1.75;
  color: var(--clay);
  max-width: 340px;
}
.service .arrow {
  font-size: 11px;
  color: var(--gilt);
  letter-spacing: 0.08em;
  transition: transform var(--fast);
}
.service:hover .arrow { transform: translateX(6px); }

@media (max-width: 880px) {
  .services { grid-template-columns: 1fr; }
  .service { min-height: 220px; padding: 48px 24px; }
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto { padding: 140px 0 120px; }
.manifesto .wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.manifesto .label { padding-top: 16px; }
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.manifesto-text .em { font-style: italic; color: var(--rose); }

@media (max-width: 768px) {
  .manifesto { padding: 80px 0; }
  .manifesto .wrap { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   FEATURED PRODUCTS — homepage shop preview
   ============================================ */
.featured-shop {
  background: var(--bone-soft);
  padding: 120px 0;
}
.shop-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  margin-bottom: 48px;
}
.shop-head h2 { letter-spacing: -0.015em; font-weight: 300; }
.shop-head > a.link-line { white-space: nowrap; }
@media (max-width: 720px) {
  .shop-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
  }
  .shop-head > a.link-line { white-space: normal; }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product {
  cursor: pointer;
  transition: transform var(--med);
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-4px); }
.product-img {
  aspect-ratio: 4/5;
  background-color: var(--bone-deep);
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--bone);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.product-badge.rose { background: var(--rose); color: var(--bone); }
.product-tag {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mushroom); margin-bottom: 6px;
}
.product-name { font-family: var(--serif); font-size: 20px; margin-bottom: 4px; line-height: 1.25; }
.product-price { font-size: 13px; color: var(--clay); }

@media (max-width: 880px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

/* ============================================
   PRODUCT DETAIL PAGE (shop/product.html?slug=…)
   ============================================ */
.product-detail { padding: 140px 36px 80px; background: var(--bone); }
.product-detail-loading { text-align: center; color: var(--mushroom); font-size: 13px; }
.product-detail-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail-img-wrap {
  position: relative;
  background: var(--bone-deep);
}
.product-detail-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.product-detail-img-wrap .product-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
}
.product-detail-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.product-detail-thumb {
  flex: 1;
  height: 80px;
  border: 1px solid transparent;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
  transition: opacity var(--fast), border-color var(--fast);
}
.product-detail-thumb:hover { opacity: 0.85; }
.product-detail-thumb.is-active { opacity: 1; border-color: var(--rose); }
@media (max-width: 880px) {
  .product-detail-thumb { height: 60px; }
}
.product-detail-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 12px;
}
.product-detail-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mushroom);
  margin-bottom: 28px;
}
.product-detail-breadcrumb a {
  color: var(--mushroom);
  border-bottom: 0.5px solid transparent;
  transition: color var(--fast), border-color var(--fast);
}
.product-detail-breadcrumb a:hover { color: var(--rose); border-bottom-color: var(--rose); }
.product-detail-sku {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.product-detail-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.product-detail-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  padding-bottom: 28px;
  border-bottom: 0.5px solid var(--hairline);
  margin-bottom: 28px;
}
.product-detail-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--clay);
  margin-bottom: 32px;
}
.product-detail-sizes {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  border-top: 0.5px solid var(--hairline);
}
.product-size-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--hairline);
}
.product-size-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.product-size-desc {
  font-size: 13px;
  color: var(--mushroom);
  line-height: 1.5;
}
.product-size-price {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  text-align: right;
}
.product-size-add {
  border: 0.5px solid var(--ink);
  background: transparent;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--fast), color var(--fast), border-color var(--fast);
  white-space: nowrap;
}
.product-size-add:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.product-detail-cta-prompt {
  display: inline-block;
  font-size: 12px;
  color: var(--mushroom);
  letter-spacing: 0.04em;
  font-style: italic;
}

/* Required delivery-date block on bouquet / event-florals pages.
   Customer picks a valid date here; rules per category are validated by JS. */
.product-delivery {
  margin: 24px 0 12px;
  padding: 16px 18px;
  border-left: 2px solid var(--rose-soft);
  background: var(--bone-soft);
}
.product-step-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 28px 0 12px;
  font-weight: 500;
}

/* Small photo-credit line beneath a gallery section */
.gallery-credits {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--mushroom);
  font-style: italic;
  padding: 14px 36px 48px;
  margin: 0 auto;
  max-width: 920px;
  line-height: 1.7;
}
.gallery-credits a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 122, 110, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.gallery-credits a:hover,
.gallery-credits a:focus {
  color: var(--rose, #b48c8c);
  border-bottom-color: currentColor;
}
@media (max-width: 720px) {
  .gallery-credits {
    font-size: 10.5px;
    letter-spacing: 0.08em;
    line-height: 1.75;
    padding: 12px 20px 36px;
  }
}
.product-delivery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: flex-end;
}
.product-delivery-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-delivery-field > span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.product-delivery-date {
  border: 0.5px solid var(--hairline);
  background: var(--bone);
  padding: 8px 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  min-width: 170px;
  cursor: pointer;
}
.product-delivery-date:hover,
.product-delivery-date:focus { border-color: var(--rose); outline: none; }
.product-delivery-hint {
  font-size: 11px;
  color: var(--mushroom);
  letter-spacing: 0.02em;
  font-style: italic;
  margin-top: 14px;
  line-height: 1.6;
}
/* Disabled add-to-cart buttons — neutral until a date is picked */
.snipcart-add-item:disabled,
.snipcart-add-item[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.config-add-to-cart:disabled,
.config-add-to-cart[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
/* Error messages on the date/collection rows */
.product-delivery-error,
.config-row-error {
  font-size: 12px;
  color: var(--rose);
  letter-spacing: 0.02em;
  margin-top: 10px;
  line-height: 1.55;
}

/* Quantity selector for single-price product detail buy row */
.product-buy-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.product-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-quantity-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.product-quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 0.5px solid var(--ink);
  background: transparent;
}
.product-quantity-stepper .qty-down,
.product-quantity-stepper .qty-up {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--fast), color var(--fast);
  padding: 0;
}
.product-quantity-stepper .qty-down:hover,
.product-quantity-stepper .qty-up:hover { background: var(--ink); color: var(--bone); }
.product-quantity-stepper .qty-count {
  min-width: 36px;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  border-left: 0.5px solid var(--ink);
  border-right: 0.5px solid var(--ink);
  padding: 8px 4px;
}
.product-size-row { grid-template-columns: 100px 1fr auto auto; gap: 12px 18px; }
@media (max-width: 880px) {
  .product-size-row { grid-template-columns: 1fr auto; }
  .product-size-desc { grid-column: 1 / -1; }
  .product-size-add { grid-column: 1 / -1; justify-self: stretch; margin-top: 6px; }
}
.product-detail-notes {
  font-size: 12px;
  color: var(--mushroom);
  line-height: 1.7;
  padding: 14px 16px;
  background: var(--bone-soft);
  border-left: 2px solid var(--rose-soft);
  margin-bottom: 28px;
}
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding-top: 8px;
}
.product-detail-aside {
  font-size: 11px;
  color: var(--mushroom);
  letter-spacing: 0.04em;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 0.5px solid var(--hairline);
  font-style: italic;
}

@media (max-width: 880px) {
  .product-detail { padding: 110px 24px 64px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-size-row { grid-template-columns: 1fr auto; gap: 4px 12px; }
  .product-size-desc { grid-column: 1 / -1; }
}

/* ============================================
   MOTHERS DAY CAMPAIGN BANNER
   ============================================ */
.campaign {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--rose-soft);
  align-items: stretch;
}
.campaign-text {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
  margin: 0 auto;
}
.campaign-text .eyebrow { color: var(--rose); }
.campaign-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 22px 0 24px;
}
.campaign-text h2 .em { font-style: italic; }
.campaign-text p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 32px;
}
.campaign-img {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.campaign-collab {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}
.campaign-collab .x { color: var(--ink); margin: 0 6px; }

@media (max-width: 880px) {
  .campaign { grid-template-columns: 1fr; }
  .campaign-text { padding: 64px 24px; }
  .campaign-img { min-height: 320px; order: -1; }
}

/* ============================================
   ETHOS / SPLIT
   ============================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-text { padding: 100px 60px; display: flex; flex-direction: column; justify-content: center; max-width: 620px; margin: 0 auto; }
.split-img { background-size: cover; background-position: center; min-height: 520px; }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split-text { padding: 64px 20px; }
  .split-img { min-height: 360px; order: -1; }
}

/* ============================================
   LINK
   ============================================ */
.link-line {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.06em;
  border-bottom: 0.5px solid var(--ink);
  padding-bottom: 2px;
  color: var(--ink);
  transition: padding var(--fast);
}
.link-line:hover { padding-right: 8px; }
.link-line.bone { color: var(--bone); border-bottom-color: var(--bone); }
.link-line.rose { color: var(--rose); border-bottom-color: var(--rose); }

/* ============================================
   PRESS BAR
   ============================================ */
.press {
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
  padding: 56px 0;
  background: var(--bone);
}
.press-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.press-eyebrow {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mushroom);
  flex-shrink: 0;
}
.press-name {
  font-family: var(--serif);
  font-size: 20px; color: var(--ink);
  letter-spacing: 0.02em;
  font-style: italic;
  display: inline-flex;
  align-items: center;
}

/* Logo within a press-name or brands-names entry; text fallback if the file is missing */
img.brand-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
  /* mix-blend-mode: darken takes min(source, backdrop) per channel — so any
     pixel lighter than the bone background (including near-white anti-aliased
     edges) blends to invisible, while darker letterforms and colour logos
     render at their natural strength. */
  mix-blend-mode: darken;
}
.brand-logo-fallback { display: none; }
.brand-logo-fallback.is-visible { display: inline; }

@media (max-width: 768px) {
  img.brand-logo { height: 26px; }
}

@media (max-width: 768px) {
  .press-inner { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ============================================
   PRESS MARQUEE — slow horizontal scroll of partner logos
   ============================================ */
/* Per-section bg colour, so the eyebrow + edge fades can match the strip they
   sit on. Default is bone; overridden for any .press with an inline bone-soft style. */
.press { --press-bg: var(--bone); }
.press[style*="bone-soft"] { --press-bg: var(--bone-soft); }

.press.is-marquee { overflow: hidden; }
/* Two-row layout: eyebrow as a clear label above, marquee row below */
.press.is-marquee .press-inner {
  display: block;
  position: relative;
  overflow: visible;
}
.press.is-marquee .press-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 28px;
  padding: 0;
  background: none;
}
.press.is-marquee .press-marquee-wrap {
  position: relative;
  overflow: hidden;
}
/* Fade masks at the left + right edges so logos vanish smoothly into the
   section background instead of hard-clipping */
.press.is-marquee .press-marquee-wrap::before,
.press.is-marquee .press-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 110px;
  pointer-events: none;
  z-index: 2;
}
.press.is-marquee .press-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--press-bg) 0%, var(--press-bg) 30%, transparent 100%);
}
.press.is-marquee .press-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--press-bg) 0%, var(--press-bg) 30%, transparent 100%);
}
.press-marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-shrink: 0;
  width: max-content;
  animation: press-marquee-scroll 60s linear infinite;
}
.press.is-marquee:hover .press-marquee-track,
.press.is-marquee:focus-within .press-marquee-track {
  animation-play-state: paused;
}
@keyframes press-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Respect users who've turned off motion in their OS */
@media (prefers-reduced-motion: reduce) {
  .press-marquee-track { animation: none; }
}
@media (max-width: 768px) {
  .press.is-marquee .press-inner { flex-direction: row; gap: 24px; align-items: center; }
  .press-marquee-track { gap: 40px; animation-duration: 40s; }
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  text-align: center;
  padding: 140px 36px;
  background: var(--bone);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.3;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.005em;
  max-width: 880px;
  margin: 0 auto 36px;
}
.testimonial cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mushroom);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  text-align: center;
  padding: 160px 36px;
  background-color: var(--bone);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
/* Soft bone wash over the background photo so the headline stays readable. */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 234, 0.82);
  pointer-events: none;
  z-index: 0;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cta h2 .em { font-style: italic; color: var(--rose); }
.cta p {
  font-size: 14px; color: var(--clay);
  max-width: 460px; margin: 0 auto 40px;
  line-height: 1.85;
}
.btn-ink, .btn-rose {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 40px;
  transition: all var(--fast);
}
.btn-ink {
  background: var(--ink); color: var(--bone);
}
.btn-ink:hover { background: var(--rose); letter-spacing: 0.22em; }
.btn-rose {
  background: var(--rose); color: var(--bone);
}
.btn-rose:hover { background: var(--ink); letter-spacing: 0.22em; }

@media (max-width: 768px) { .cta { padding: 96px 20px; } }

/* ============================================
   BLOG / JOURNAL — index card grid + individual post layout
   ============================================ */
.blog-index { padding: 96px 0; background: var(--bone); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--med);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
  margin-bottom: 24px;
}
.blog-card-body { display: flex; flex-direction: column; }
.blog-card .eyebrow { margin-bottom: 12px; }
.blog-card h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.blog-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--clay);
  margin-bottom: 20px;
  max-width: 540px;
}
.blog-card .link-line { align-self: flex-start; }

@media (max-width: 880px) {
  .blog-grid { grid-template-columns: 1fr; gap: 64px; }
}

/* ----- Single post — split sections + trio/duo photo rows ----- */
/* ============================================
   JOURNAL POST — coordinated with .page-head + .page-image pattern
   ============================================ */
.post-article {
  background-color: var(--bone);
  padding: 0 0 96px;
}

.post-body {
  padding: 72px 0 24px;
  background-color: var(--bone);
}
.post-body + .post-figure,
.post-body + .post-figure-grid {
  margin-top: 24px;
}
.post-figure + .post-body,
.post-figure-grid + .post-body {
  padding-top: 56px;
}
.post-body .wrap-tight { max-width: 720px; }
.post-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.post-body p.post-lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 32px;
}

.post-section-head {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 28px;
}
.post-section-head .em { font-style: italic; color: var(--rose); }
.post-section-head .post-section-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
  font-style: normal;
}

/* Figures — single image, centered, constrained.
   Source photos from Showit are tiny (683-768px wide). Cap display
   close to native size so they look crisp on retina rather than soft. */
.post-figure {
  margin: 0 auto;
  max-width: 720px;
  padding: 0 36px;
}
.post-figure img {
  width: 100%;
  height: auto;
  display: block;
  background-color: var(--bone-deep);
}
/* For figures with genuinely high-res sources (hero, marching band) */
.post-figure--wide {
  max-width: 1100px;
}
.post-figure figcaption,
.post-figure-grid figcaption,
.post-caption-block {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mushroom);
  text-align: center;
  margin-top: 16px;
  line-height: 1.7;
}

/* Multi-image grids — 2-up or 3-up centered. Widths kept tight so each
   tile stays near the native source resolution (~683-768px). */
.post-figure-grid {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  padding: 0 36px;
}
.post-figure-grid--two {
  grid-template-columns: 1fr 1fr;
  max-width: 920px;
}
.post-figure-grid--three {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1080px;
}
.post-figure-grid figure { margin: 0; }
.post-figure-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
  background-color: var(--bone-deep);
}
.post-figure-grid--two img { aspect-ratio: 4 / 5; }
.post-figure-grid + .post-caption-block {
  max-width: 1080px;
  margin: 16px auto 0;
  padding: 0 36px;
}

.post-signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--rose);
  margin-top: 48px;
}
.post-back {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 0.5px solid var(--hairline);
}

@media (max-width: 880px) {
  .post-article { padding-bottom: 64px; }
  .post-body { padding: 48px 0 16px; }
  .post-figure + .post-body, .post-figure-grid + .post-body { padding-top: 40px; }
  .post-figure, .post-figure-grid { padding: 0 20px; }
  .post-figure-grid--three { grid-template-columns: 1fr; }
  .post-figure-grid--two { grid-template-columns: 1fr; }
  .post-figure-grid img { aspect-ratio: 4 / 5; }
  .post-body p { font-size: 15px; }
  .post-body p.post-lede { font-size: 18px; }
  .post-section-head { font-size: 26px; }
}

/* ============================================
   LEGAL PAGES — Privacy + Terms
   ============================================ */
.legal { padding: 24px 0 96px; }
.legal h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 48px 0 16px;
  color: var(--ink);
}
.legal h2:first-child { margin-top: 0; }
.legal p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 720px;
}
.legal p a {
  border-bottom: 0.5px solid var(--ink);
  padding-bottom: 1px;
  color: var(--ink);
  transition: color var(--fast), border-color var(--fast);
}
.legal p a:hover { color: var(--rose); border-bottom-color: var(--rose); }

.footer-bottom a {
  color: inherit;
  border-bottom: 0.5px solid transparent;
  transition: border-color var(--fast), color var(--fast);
}
.footer-bottom a:hover { color: var(--bone); border-bottom-color: var(--mushroom); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink-soft);
  color: var(--whisper);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  font-size: 12px;
}
.footer-col-title {
  font-size: 10px; color: var(--mushroom);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a { display: block; padding: 4px 0; transition: color var(--fast); }
.footer-col a:hover { color: var(--bone); }
.footer-brand .wordmark { color: var(--bone); margin-bottom: 14px; display: inline-block; }
.footer-brand .address { line-height: 1.85; font-size: 11px; }

.footer-bottom {
  margin-top: 56px; padding-top: 20px;
  border-top: 0.5px solid var(--ink-soft);
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--mushroom);
}
.acknowledgement {
  border-top: 0.5px solid var(--ink-soft);
  margin-top: 32px; padding-top: 24px;
  font-size: 11px; line-height: 1.85;
  color: var(--mushroom); max-width: 720px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ============================================
   PAGE HEAD (interior pages)
   ============================================ */
.page-head {
  padding: 180px 36px 80px;
  text-align: center;
  border-bottom: 0.5px solid var(--hairline);
  background-color: var(--bone);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
/* Soft bone wash over any page-head background photo so the headline stays readable */
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 234, 0.86);
  pointer-events: none;
  z-index: 0;
}
.page-head > * { position: relative; z-index: 1; }
.page-head .eyebrow { display: block; margin-bottom: 18px; }
.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 920px; margin: 0 auto;
}
.page-head .em { font-style: italic; color: var(--rose); }
.page-head p {
  margin: 28px auto 0;
  font-size: 14px; color: var(--clay);
  max-width: 560px;
  line-height: 1.85;
}

/* ============================================
   SERVICE CARDS — 3-up service breakdown (corporate page)
   ============================================ */
.service-cards { padding: 120px 0; background: var(--bone); }
.service-cards-head { text-align: left; margin-bottom: 56px; max-width: 720px; }
.service-cards-head h2 {
  letter-spacing: -0.015em;
  font-family: var(--serif);
}
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--med);
}
.service-card-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
  margin-bottom: 24px;
  transition: transform var(--med);
}
.service-card:hover .service-card-img { transform: translateY(-4px); }
.service-card .eyebrow { margin-bottom: 10px; }
.service-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--clay);
  margin-bottom: 20px;
  flex: 1;
}
.service-card .link-line { align-self: flex-start; }

@media (max-width: 880px) {
  .service-cards { padding: 80px 0; }
  .service-cards-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   PAGE IMAGE (interior pages, full-bleed hero strip under page-head)
   ============================================ */
.page-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
}
@media (max-width: 768px) {
  .page-image { aspect-ratio: 4 / 3; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 80px 36px;
}
.gallery-item {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
}
.gallery-item.span-2 { grid-column: span 2; aspect-ratio: 16/10; }

@media (max-width: 768px) {
  .gallery { grid-template-columns: 1fr 1fr; padding: 40px 16px; }
  .gallery-item.span-2 { grid-column: span 2; }
}

/* Captioned gallery — each photo gets its own credit line directly below */
.gallery.gallery--captioned { row-gap: 4px; }
.gallery--captioned .gallery-figure {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.gallery--captioned .gallery-figure.span-2 { grid-column: span 2; }
.gallery--captioned .gallery-figure .gallery-item {
  aspect-ratio: 4/5;
}
.gallery--captioned .gallery-figure.span-2 .gallery-item { aspect-ratio: 16/10; }
.photo-credit {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mushroom);
  font-style: italic;
  padding: 10px 6px 18px;
  line-height: 1.5;
  min-height: 2.2em;
  margin: 0;
}
.photo-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 122, 110, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.photo-credit a:hover,
.photo-credit a:focus {
  color: var(--rose, #b48c8c);
  border-bottom-color: currentColor;
}
@media (max-width: 768px) {
  .gallery--captioned .gallery-figure.span-2 { grid-column: span 2; }
  .photo-credit {
    font-size: 9px;
    letter-spacing: 0.14em;
    padding: 7px 2px 12px;
    min-height: 2em;
    /* Force text to wrap rather than overflow the narrow column */
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
}

/* Venue-page variant — 3-col grid, but the LAST row's incomplete items
   automatically expand to fill the remaining columns. So no empty cells
   ever, regardless of how many photos a venue has. */
.gallery.gallery--masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
/* Last item alone in its row (positions 1, 4, 7, …) → spans full row */
.gallery.gallery--masonry .gallery-item:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
  aspect-ratio: 12 / 5;
}
/* Last item is the 2nd in its row (positions 2, 5, 8, …) → spans 2 cols */
.gallery.gallery--masonry .gallery-item:last-child:nth-child(3n+2) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
@media (max-width: 880px) {
  .gallery.gallery--masonry { grid-template-columns: 1fr 1fr; padding: 48px 16px; }
  /* In a 2-col grid the last row is incomplete only when total is odd */
  .gallery.gallery--masonry .gallery-item:last-child:nth-child(3n+1),
  .gallery.gallery--masonry .gallery-item:last-child:nth-child(3n+2) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }
  .gallery.gallery--masonry .gallery-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    aspect-ratio: 8 / 5;
  }
}
@media (max-width: 480px) {
  .gallery.gallery--masonry { grid-template-columns: 1fr; padding: 32px 16px; }
  .gallery.gallery--masonry .gallery-item:last-child {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }
}

/* ============================================
   WEDDING PARTY PACKAGES — luxury 4-up grid on shop page
   ============================================ */
.wedding-packages-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.wedding-packages-head .section-desc {
  font-size: 14px;
  color: var(--clay);
  line-height: 1.85;
  margin-top: 18px;
}
.wedding-packages-head .section-desc strong {
  color: var(--ink);
  font-weight: 500;
}
.wedding-packages-head .section-desc strong em {
  color: var(--rose);
  font-style: italic;
}
.wedding-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.wedding-package {
  background: var(--bone);
  display: flex;
  flex-direction: column;
  transition: transform var(--med);
}
.wedding-package:hover { transform: translateY(-4px); }
.wedding-package-img {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
  transition: background-image 0.3s ease;
}
.wedding-package-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 12px 0;
  background: var(--bone);
}
.pkg-thumb {
  flex: 1;
  height: 56px;
  border: 1px solid transparent;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
  transition: opacity var(--fast), border-color var(--fast);
}
.pkg-thumb:hover { opacity: 0.85; }
.pkg-thumb.is-active { opacity: 1; border-color: var(--rose); }
.wedding-package-body { padding: 24px 28px 32px; display: flex; flex-direction: column; flex: 1; }
/* Pin the "Add package to cart" + enquire link to the bottom of each card
   so all four packages align even if descriptions are different lengths. */
.wedding-package-body .config-add-to-cart { margin-top: auto; }
/* Give descriptions a minimum height so the configurator starts at roughly
   the same vertical position across the 4 cards. */
.wedding-package-desc { min-height: 3em; }

/* Delivery / pickup choice on each package configurator */
.config-row--delivery { flex-direction: column; align-items: flex-start; gap: 12px; }
.delivery-options { display: flex; gap: 18px; width: 100%; flex-wrap: wrap; }
.delivery-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
}
.delivery-options input[type="radio"] {
  accent-color: var(--rose);
  cursor: pointer;
}
.wedding-package .package-no {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rose);
  display: block; margin-bottom: 8px;
}
.wedding-package h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.wedding-package-desc {
  font-size: 13px; line-height: 1.75;
  color: var(--clay);
  font-style: italic;
  margin-bottom: 22px;
}
.wedding-package-prices {
  list-style: none;
  padding: 18px 0;
  margin-bottom: 24px;
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
}
.wedding-package-prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 13px;
  color: var(--clay);
}
.wedding-package-prices .price {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}
.wedding-package .link-line { margin-top: auto; align-self: flex-start; }

/* ============================================
   WEDDING PACKAGE — interactive configurator
   ============================================ */
.package-config {
  padding: 18px 0 4px;
  margin-bottom: 22px;
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
}
.config-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
  border-bottom: 0.5px solid rgba(220, 212, 194, 0.5);
}
.config-row:last-of-type { border-bottom: 0; }
.config-row--fixed { opacity: 0.85; }
.config-row--date .wedding-date-input {
  border: 0.5px solid var(--hairline);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  background: var(--bone);
  cursor: pointer;
  min-width: 150px;
  transition: border-color var(--fast);
}
.config-row--date .wedding-date-input:hover,
.config-row--date .wedding-date-input:focus {
  border-color: var(--rose);
  outline: none;
}
.config-row--date .wedding-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}
.config-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.config-label strong {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
}
.config-label span {
  font-size: 11px;
  color: var(--mushroom);
  letter-spacing: 0.04em;
}
.config-fixed-count {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--clay);
  font-style: italic;
}
.stepper {
  display: inline-flex;
  align-items: center;
  border: 0.5px solid var(--hairline);
  border-radius: 999px;
  padding: 2px;
  background: var(--bone);
  flex-shrink: 0;
}
.stepper button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--fast), color var(--fast);
  font-family: var(--sans);
  line-height: 1;
  padding: 0;
}
.stepper button:hover:not(:disabled) {
  background: var(--ink);
  color: var(--bone);
}
.stepper button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.stepper .step-count {
  min-width: 28px;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  padding: 0 4px;
}
.config-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 10px;
  margin-top: 6px;
  border-top: 0.5px solid var(--hairline);
}
.config-total span:first-child {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.config-total-amount {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.config-enquire {
  align-self: flex-start;
  margin-top: auto;
  font-size: 11px;
  padding: 13px 24px;
}
@media (max-width: 600px) {
  .config-row { gap: 12px; }
  .config-label strong { font-size: 12px; }
  .stepper button { width: 32px; height: 32px; font-size: 18px; }
  .stepper .step-count { font-size: 18px; min-width: 32px; }
}

@media (max-width: 1080px) {
  .wedding-packages-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .wedding-packages-grid { grid-template-columns: 1fr; gap: 32px; }
  .wedding-package-img { aspect-ratio: 4 / 3; }
}

/* ============================================
   NEWSLETTER POPUP — appears once per visitor, dismissible
   ============================================ */
.newsletter-popup {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.newsletter-popup.is-open {
  display: flex;
  opacity: 1;
}
.newsletter-popup-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 16, 11, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.newsletter-popup-card {
  position: relative;
  background: var(--bone);
  max-width: 480px;
  width: 100%;
  padding: 56px 44px 40px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease);
}
.newsletter-popup.is-open .newsletter-popup-card { transform: translateY(0); }
.newsletter-popup-close {
  position: absolute;
  top: 18px; right: 22px;
  width: 32px; height: 32px;
  font-size: 22px;
  line-height: 1;
  color: var(--mushroom);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--fast);
}
.newsletter-popup-close:hover { color: var(--ink); }
.newsletter-popup-card .eyebrow { display: block; margin-bottom: 14px; }
.newsletter-popup-card h2 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 16px;
}
.newsletter-popup-card h2 em { font-style: italic; color: var(--rose); }
.newsletter-popup-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--clay);
  max-width: 360px;
  margin: 0 auto 28px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.newsletter-form input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--ink);
  padding: 12px 4px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  outline: none;
  transition: border-color var(--fast);
}
.newsletter-form input[type="email"]:focus { border-bottom-color: var(--rose); }
.newsletter-form button[type="submit"] {
  background: var(--ink);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--fast);
}
.newsletter-form button[type="submit"]:hover { background: var(--rose); }
.newsletter-popup-dismiss {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mushroom);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color var(--fast);
}
.newsletter-popup-dismiss:hover { color: var(--ink); }
.newsletter-popup-success {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--rose);
  margin: 24px 0 12px;
}

/* Wedding-lead popup — multi-field variant of newsletter popup */
.wedding-lead-field {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}
.wedding-lead-field > span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.wedding-lead-form input[type="date"],
.wedding-lead-form input[type="text"],
.wedding-lead-form input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--ink);
  padding: 8px 4px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  text-align: left;
  outline: none;
  transition: border-color var(--fast);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.wedding-lead-form input:focus { border-bottom-color: var(--rose); }
.wedding-lead-form input::placeholder { color: var(--mushroom); font-style: italic; }
.wedding-lead-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.5;
  filter: invert(20%);
}

@media (max-width: 600px) {
  .newsletter-popup-card { padding: 48px 28px 32px; }
  .newsletter-popup-card h2 { font-size: 26px; }
}

/* ============================================
   SHOP PAGE — category filters + full grid
   ============================================ */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 24px 36px 0;
  border-bottom: 0.5px solid var(--hairline);
  flex-wrap: wrap;
}
.shop-filter {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 0;
  cursor: pointer;
  position: relative;
  transition: color var(--fast);
  border: none; background: none;
  font-family: var(--sans);
  color: var(--ink);
}
.shop-filter:hover { color: var(--rose); }
.shop-filter.is-active { color: var(--rose); }
.shop-filter.is-active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--rose);
}

.shop-section {
  padding: 80px 0;
}
.shop-section h2 {
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.shop-section .section-desc {
  font-size: 13px;
  color: var(--mushroom);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.85;
}

@media (max-width: 768px) {
  /* Filter row becomes a horizontal swipe-strip on mobile so all options
     stay in a single line — no awkward wrap with "Event florals" alone. */
  .shop-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 24px;
    padding: 14px 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .shop-filters::-webkit-scrollbar { display: none; }
  .shop-filter { flex-shrink: 0; padding: 12px 0; }
  .shop-section { padding: 56px 0; }
}

/* ============================================
   PROCESS LIST (wedding 11 steps)
   ============================================ */
.process { background: var(--bone-soft); padding: 120px 0; }
.process-head { text-align: left; margin-bottom: 64px; max-width: 720px; }
.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 0.5px solid var(--hairline);
}
.process-step {
  background: var(--bone-soft);
  padding: 28px;
  display: flex; gap: 20px;
  align-items: baseline;
  transition: background var(--fast);
}
.process-step:hover { background: var(--bone); }
.process-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--rose);
  flex-shrink: 0;
  min-width: 36px;
}
.process-text { font-size: 13px; color: var(--clay); line-height: 1.65; }

@media (max-width: 768px) {
  .process { padding: 80px 0; }
  .process-list { grid-template-columns: 1fr; }
}

/* Modifier for short (3- and 4-step) process lists — bigger, more editorial,
   with floral connectors between cards and staggered scroll reveal. */
.process-list.process-list--three,
.process-list.process-list--four {
  background: var(--hairline);
  /* let the floral connectors overflow the cell boundaries */
  overflow: visible;
}
.process-list.process-list--three { grid-template-columns: repeat(3, 1fr); }
.process-list.process-list--four  { grid-template-columns: repeat(4, 1fr); }

.process-list.process-list--three .process-step,
.process-list.process-list--four .process-step {
  padding: 64px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  min-height: 320px;
  position: relative;
  transition: background var(--med);
}
.process-list.process-list--three .process-num,
.process-list.process-list--four .process-num {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-weight: 300;
  min-width: 0;
  opacity: 0.85;
  transition: opacity var(--med), transform var(--med), color var(--med);
  transform-origin: left center;
}
.process-list.process-list--four .process-num {
  /* 4-up cards are narrower — slightly smaller numeral keeps balance */
  font-size: clamp(48px, 5.5vw, 80px);
}
.process-list.process-list--three .step-label,
.process-list.process-list--four .step-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mushroom);
  margin-bottom: 12px;
  display: block;
}
.process-list.process-list--three .process-text,
.process-list.process-list--four .process-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.process-list.process-list--four .process-text { font-size: 14px; }

/* Hover bloom on the Roman numeral + slight card warming */
.process-list.process-list--three .process-step:hover,
.process-list.process-list--four .process-step:hover { background: var(--bone); }
.process-list.process-list--three .process-step:hover .process-num,
.process-list.process-list--four .process-step:hover .process-num {
  opacity: 1;
  transform: scale(1.06);
  color: var(--rose);
}

/* Floral connector SVG between each pair of cards (hidden on mobile) */
.process-list.process-list--three .process-step:not(:last-child)::after,
.process-list.process-list--four .process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -48px;
  width: 96px;
  height: 32px;
  transform: translateY(-50%);
  background: url('../assets/process-floral-divider.svg') center/contain no-repeat;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s var(--ease) 0.6s;
}
.process.is-visible .process-list.process-list--three .process-step:not(:last-child)::after,
.process.is-visible .process-list.process-list--four .process-step:not(:last-child)::after {
  opacity: 1;
}

/* Staggered scroll-reveal: each step fades up after the previous */
.process-list.process-list--three .process-step,
.process-list.process-list--four .process-step {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), background var(--med);
}
.process.is-visible .process-list.process-list--three .process-step:nth-child(1),
.process.is-visible .process-list.process-list--four .process-step:nth-child(1) { transition-delay: 0ms;   opacity: 1; transform: translateY(0); }
.process.is-visible .process-list.process-list--three .process-step:nth-child(2),
.process.is-visible .process-list.process-list--four .process-step:nth-child(2) { transition-delay: 180ms; opacity: 1; transform: translateY(0); }
.process.is-visible .process-list.process-list--three .process-step:nth-child(3),
.process.is-visible .process-list.process-list--four .process-step:nth-child(3) { transition-delay: 360ms; opacity: 1; transform: translateY(0); }
.process.is-visible .process-list.process-list--four .process-step:nth-child(4) { transition-delay: 540ms; opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  /* 4-up collapses to 2x2 at tablet — hide connectors in this state */
  .process-list.process-list--four { grid-template-columns: repeat(2, 1fr); }
  .process-list.process-list--four .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 880px) {
  .process-list.process-list--three,
  .process-list.process-list--four { grid-template-columns: 1fr; }
  .process-list.process-list--three .process-step,
  .process-list.process-list--four .process-step { padding: 48px 28px; min-height: auto; gap: 20px; }
  .process-list.process-list--three .process-num,
  .process-list.process-list--four .process-num { font-size: 64px; }
  /* Hide horizontal connectors when stacked; reveal a vertical version instead */
  .process-list.process-list--three .process-step:not(:last-child)::after {
    top: auto; bottom: -28px; right: 50%;
    transform: translate(50%, 0) rotate(90deg);
    display: block;
  }
  .process-list.process-list--four .process-step:not(:last-child)::after {
    top: auto; bottom: -28px; right: 50%;
    transform: translate(50%, 0) rotate(90deg);
    display: block;
  }
}

/* ============================================
   PRICE BLOCK
   ============================================ */
.price-block {
  text-align: center;
  padding: 100px 36px;
  background: var(--bone);
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
}
.price-block .eyebrow { display: block; margin-bottom: 18px; }
.price-block h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.price-block .em { font-style: italic; color: var(--rose); }
.price-block .note {
  font-size: 13px;
  color: var(--mushroom);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 120px 0; }
/* When a faq section has a background photo, lay a bone overlay underneath
   the content so the text reads cleanly without obscuring the floral. */
.faq.has-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}
.faq.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 234, 0.88);
  pointer-events: none;
  z-index: 0;
}
.faq.has-bg > * { position: relative; z-index: 1; }
.faq-head { text-align: center; margin-bottom: 64px; }
.faq-head h2 { font-weight: 300; letter-spacing: -0.015em; }
.faq-list { max-width: 820px; margin: 0 auto; border-top: 0.5px solid var(--hairline); }
.faq-item { border-bottom: 0.5px solid var(--hairline); }
.faq-q {
  width: 100%; text-align: left;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif);
  font-size: 22px;
  cursor: pointer;
  transition: color var(--fast);
}
.faq-q:hover { color: var(--rose); }
.faq-toggle {
  font-size: 24px; font-family: var(--serif);
  font-weight: 300; color: var(--mushroom);
  transition: transform var(--med);
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); color: var(--rose); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.is-open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 0 28px; font-size: 14px; line-height: 1.85; color: var(--clay); max-width: 680px; }

@media (max-width: 768px) {
  .faq { padding: 80px 0; }
  .faq-q { font-size: 18px; padding: 20px 0; }
}

/* ============================================
   TEAM
   ============================================ */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 0;
}
.team-member { display: flex; flex-direction: column; gap: 24px; }
.team-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
}
.team-info .role { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mushroom); margin-bottom: 8px; }
.team-info h3 { font-family: var(--serif); font-size: 36px; margin-bottom: 14px; }
.team-info p { font-size: 13px; color: var(--clay); line-height: 1.85; }

@media (max-width: 768px) {
  .team { grid-template-columns: 1fr; gap: 56px; padding: 80px 0; }
}

/* ============================================
   VENUE GRID
   ============================================ */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  padding: 80px 0;
}
@media (max-width: 1080px) {
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
}
.venue { cursor: pointer; }
.venue-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
  margin-bottom: 16px;
  transition: transform var(--med);
}
.venue:hover .venue-img { transform: translateY(-4px); }
.venue-name { font-family: var(--serif); font-size: 22px; margin-bottom: 6px; }
.venue-loc { font-size: 11px; color: var(--mushroom); letter-spacing: 0.06em; }

@media (max-width: 768px) {
  .venue-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: 40px 0; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}
.contact-left {
  padding: 140px 56px 80px;
  background: var(--bone);
}
.contact-right {
  padding: 140px 56px 80px;
  background: var(--bone-soft);
}
.contact-left h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 36px;
}
.contact-left h1 .em { font-style: italic; color: var(--rose); }
.contact-info {
  margin-top: 48px;
  display: flex; flex-direction: column;
  gap: 28px;
}
.contact-info .group .label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mushroom); margin-bottom: 8px; }
.contact-info .group .val { font-family: var(--serif); font-size: 18px; line-height: 1.45; }
.contact-info .group .val a { border-bottom: 0.5px solid var(--ink); padding-bottom: 1px; }

.form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mushroom);
}
.field input, .field select, .field textarea {
  background: transparent; border: none;
  border-bottom: 0.5px solid var(--ink);
  padding: 8px 0;
  font-family: var(--sans); font-size: 14px;
  color: var(--ink); font-weight: 300;
  outline: none;
  transition: border-color var(--fast);
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--rose); }
.field textarea { resize: vertical; min-height: 80px; }
.form button[type="submit"] {
  align-self: flex-start;
  background: var(--ink); color: var(--bone);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px; margin-top: 16px;
  transition: background var(--fast);
}
.form button[type="submit"]:hover { background: var(--rose); }

@media (max-width: 880px) {
  .contact-page { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 100px 20px 56px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   WEDDING FACTS (inline 3-row spec inside split)
   ============================================ */
.wedding-facts {
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
  display: flex; flex-direction: column;
  gap: 14px;
}
.wedding-facts .fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: baseline;
}
.wedding-facts .fact-label {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mushroom);
}
.wedding-facts .fact-value {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

/* ============================================
   BRANDS BAR (corporate clients on homepage)
   ============================================ */
.brands-bar {
  padding: 72px 0;
  background: var(--bone-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.brands-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.brands-text h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.3;
  font-weight: 300;
  margin: 12px 0 22px;
  max-width: 480px;
}
.brands-names {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
}
@media (max-width: 880px) {
  .brands-inner { grid-template-columns: 1fr; gap: 32px; }
  .brands-names { gap: 14px 28px; font-size: 18px; }
}

/* ============================================
   PRODUCT GRID — pair variant for homepage shop preview
   ============================================ */
.product-grid.is-pair {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 480px) { .product-grid.is-pair { grid-template-columns: 1fr; } }

/* Banner that quietly offers a smaller alternative to full wedding styling.
   Used on weddings.html immediately after the $5k+ investment block. */
.alt-offer-banner {
  background: var(--bone-soft);
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.alt-offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.alt-offer-text { flex: 1; max-width: 640px; }
.alt-offer-text .eyebrow { display: inline-block; margin-bottom: 10px; }
.alt-offer-text h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.alt-offer-text p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--clay);
  margin: 0;
  max-width: 560px;
}
.btn-outline {
  display: inline-block;
  padding: 16px 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--fast), color var(--fast), letter-spacing var(--fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-outline:hover,
.btn-outline:focus {
  background: var(--ink);
  color: var(--bone);
  letter-spacing: 0.22em;
}
@media (max-width: 820px) {
  .alt-offer-banner { padding: 44px 0; }
  .alt-offer-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .alt-offer-text h3 { font-size: 22px; }
  .btn-outline { white-space: normal; padding: 14px 22px; }
}

/* Wedding feature split — primary CTA + secondary "smaller wedding" link */
.split-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}
@media (max-width: 720px) {
  .split-cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Wedding party packages preview (homepage) — sits between full-wedding feature
   and the gallery, signalling pre-priced bridal-party packages as a middle tier */
.wedding-packages-preview {
  background: var(--bone-soft);
  padding: 110px 0;
}
.wedding-packages-preview .shop-head { margin-bottom: 56px; }
.wp-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}
.wp-preview-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: var(--bone);
  transition: transform var(--med), box-shadow var(--med);
}
.wp-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(20, 16, 11, 0.18);
}
.wp-preview-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--bone-deep);
}
.wp-preview-body {
  padding: 22px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.wp-preview-body .package-no {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-style: italic;
}
.wp-preview-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.25;
  margin: 2px 0 4px;
}
.wp-preview-body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--clay);
  margin: 0 0 12px;
  flex: 1;
}
.wp-preview-price {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mushroom);
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.wp-preview-price strong {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
}
.wp-preview-foot {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.wp-preview-foot p {
  font-size: 14px;
  color: var(--clay);
  font-style: italic;
  margin: 0;
}
.wp-preview-foot a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.wp-preview-foot a:hover { color: var(--ink); }

@media (max-width: 980px) {
  .wp-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
}
@media (max-width: 520px) {
  /* Keep 2-col on phones — gives the section visual scannability instead
     of 4 enormous stacked photos. Cards shrink, info compacts. */
  .wp-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .wedding-packages-preview { padding: 64px 0; }
  .wp-preview-body { padding: 14px 14px 18px; gap: 6px; }
  .wp-preview-body h3 { font-size: 17px; }
  .wp-preview-body p { font-size: 11.5px; line-height: 1.5; margin-bottom: 8px; }
  .wp-preview-body .package-no { font-size: 9px; letter-spacing: 0.18em; }
  .wp-preview-price { font-size: 10.5px; padding-top: 8px; }
  .wp-preview-foot { margin-top: 32px; padding-top: 24px; }
  .wp-preview-foot p { font-size: 13px; line-height: 1.5; }
}

/* Six-up product grid — used on homepage to signal a real range of offerings */
.product-grid.is-sextet {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
@media (max-width: 980px) { .product-grid.is-sextet { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; } }
@media (max-width: 520px) {
  /* Keep 2-col on phones — gives the section visual scannability */
  .product-grid.is-sextet { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .product-grid.is-sextet .product-img { margin-bottom: 10px; }
  .product-grid.is-sextet .product-tag { font-size: 9px; letter-spacing: 0.16em; }
  .product-grid.is-sextet .product-name { font-size: 16px; }
  .product-grid.is-sextet .product-price { font-size: 12px; }
  .featured-shop { padding: 64px 0 !important; }
}

/* Subhead line under the shop-head heading (sits beneath h2, above the grid) */
.shop-sub {
  margin-top: 14px;
  max-width: 520px;
  color: var(--clay);
  font-size: 14.5px;
  line-height: 1.6;
  font-style: italic;
}

/* "Also in the studio" chip row — a quiet signal of additional categories */
.shop-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 10px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.shop-chips-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mushroom);
  margin-right: 6px;
  font-style: italic;
}
.shop-chip {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 9px 16px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  text-decoration: none;
  background: transparent;
  transition: color var(--fast), border-color var(--fast), background var(--fast), transform var(--fast);
}
.shop-chip:hover,
.shop-chip:focus {
  color: var(--rose);
  border-color: var(--rose);
  background: var(--bone);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .shop-chips { gap: 8px; margin-top: 48px; padding-top: 28px; }
  .shop-chip { padding: 7px 12px; font-size: 10.5px; }
  .shop-chips-label { width: 100%; text-align: center; margin: 0 0 6px; }
}

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   SNIPCART CART THEMING — match Sugar Bee brand
   These CSS variables override Snipcart's defaults inside the cart drawer.
   ============================================ */

/* Lift the Snipcart cart drawer + modal above the .nav (which is z-index: 100).
   Without this, the cart slides in but the nav stays floating on top of it. */
.snipcart,
.snipcart-modal,
.snipcart-cart,
.snipcart-modal__container,
.snipcart-modal-container,
.snipcart-cart-summary,
.snipcart-layout,
.snipcart-base-button { z-index: 9999 !important; }
.snipcart-modal__backdrop { z-index: 9998 !important; }
#snipcart,
.snipcart,
.snipcart * {
  --font-family-default: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-headings: 'Cormorant Garamond', Georgia, serif;
}
#snipcart,
.snipcart {
  /* Text + links */
  --color-default: #14100B;            /* ink */
  --color-alt: #2D2822;                /* ink-soft */
  --color-icon: #14100B;
  --color-link: #9D5E4C;               /* rose */
  --color-link--hover: #14100B;

  /* Backgrounds */
  --bgColor-default: #F7F2EA;          /* bone */
  --bgColor-alt: #F0E9DC;              /* bone-soft */
  --bgColor-modal: #F7F2EA;
  --bgColor-modal-veil: rgba(20, 16, 11, 0.4);

  /* Borders */
  --borderColor-default: #DCD4C2;      /* hairline */
  --borderRadius-l: 2px;
  --borderRadius-s: 2px;

  /* Primary action button (Checkout) — ink background, bone text, hover to rose */
  --color-buttonPrimary: #F7F2EA;
  --bgColor-buttonPrimary: #14100B;
  --color-buttonPrimary--hover: #F7F2EA;
  --bgColor-buttonPrimary--hover: #9D5E4C;
  --color-buttonPrimary--active: #F7F2EA;
  --bgColor-buttonPrimary--active: #9D5E4C;

  /* Secondary action button — bordered ink */
  --color-buttonSecondary: #14100B;
  --bgColor-buttonSecondary: transparent;
  --borderColor-buttonSecondary: #14100B;
  --color-buttonSecondary--hover: #F7F2EA;
  --bgColor-buttonSecondary--hover: #14100B;

  /* Inputs */
  --color-input: #14100B;
  --bgColor-input: #F7F2EA;
  --borderColor-input: #DCD4C2;
  --borderColor-input--focus: #9D5E4C;

  /* Cart-level layout */
  --bgColor-discount-tag: #9D5E4C;
}

/* Override the cart drawer header bar */
.snipcart-cart-header {
  background: #F7F2EA !important;
  border-bottom: 0.5px solid #DCD4C2;
}
.snipcart-cart-header__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* Cart drawer body */
.snipcart-cart__content,
.snipcart-modal__container,
.snipcart-cart,
.snipcart-cart__footer-total {
  background: #F7F2EA !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Item titles in the cart use serif */
.snipcart-item-line__title,
.snipcart-item-list__title,
.snipcart-cart-summary-item__name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-size: 18px !important;
}

/* Quantity stepper — remove the blue */
.snipcart__icon--blue,
.snipcart__icon--blue path { fill: #14100B !important; color: #14100B !important; }
.snipcart-item-quantity__input { color: #14100B !important; }
.snipcart-item-quantity__quantity { border-color: #DCD4C2 !important; }

/* Trash button on each line — neutralise the red bubble */
.snipcart-item-line__remove-item,
.snipcart-item-line__remove-button {
  color: #8C8276 !important;
  background: transparent !important;
}
.snipcart-item-line__remove-item:hover,
.snipcart-item-line__remove-button:hover {
  color: #9D5E4C !important;
}

/* Main checkout button — ink with bone text */
.snipcart-button-primary,
.snipcart-checkout__button-checkout,
button.snipcart-checkout-button,
.snipcart__actions--link-secondary--checkout {
  background-color: #14100B !important;
  color: #F7F2EA !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  padding: 18px 24px !important;
}
.snipcart-button-primary:hover,
.snipcart-checkout__button-checkout:hover,
button.snipcart-checkout-button:hover {
  background-color: #9D5E4C !important;
}

/* "View detailed cart" / continue shopping links — rose, underlined */
.snipcart-cart__secondary-header a,
.snipcart-cart-summary__continue-shopping {
  color: #9D5E4C !important;
  text-decoration: none !important;
  border-bottom: 0.5px solid #9D5E4C !important;
  letter-spacing: 0.08em !important;
}

/* Total row — heavier weight, serif */
.snipcart-cart__footer-total,
.snipcart-summary-fees__total {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 17px !important;
}
