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

/*  Stylesheet */
:root {
  --ink:        #1c1a17;
  --parchment:  #f7f3ec;
  --linen:      #ede8df;
  --stem:       #5c6b47;
  --soft-stem:  #edf0ea;
  --leaf:       #8a9e6f;
  --bloom:      #b85c4a;
  --dark-stem:  #203600;
  --mist:       #e8e2d9;
  --gold:       #c9a96e;
  --cream:      #f3efe6;
  /* --text-muted: #0e0c0a; */
  --text-muted: #665d55;
  --border:     rgba(201,169,110,0.2);
  --sage:       rgba(143,160,126,1);

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

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 28px;
  --shadow:    0 4px 32px rgba(28,26,23,0.07);
  --shadow-subtle: 0 8px 20px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 60px rgba(28,26,23,0.13);
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--parchment); color: var(--ink); overflow-x: hidden; line-height: 1.7; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(247,243,236,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(28,26,23,0.07); }

.nav-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--stem); letter-spacing: 0.02em; flex-shrink: 0;
}
.nav-logo { height: 44px; width: auto; }
.brand-mark {
  width: 30px; height: 30px; background: var(--stem); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem; flex-shrink: 0;
}

.nav-links { display: flex; list-style: none; align-items: center; gap: 2.25rem; }
.nav-links a {
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink);
  position: relative; padding-bottom: 3px;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--stem); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--stem) !important;
  color: white !important;
  padding: 0.4rem 1rem !important;
  border-radius: 99px;
  transition: background 0.25s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--bloom) !important; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  width: 32px; height: 32px;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--ink);
  border-radius: 2px; transition: all 0.3s var(--ease); transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════
   HOME — HERO (SPLIT)
════════════════════════════════ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  /* sits under fixed nav — no extra padding needed, left side handles it */
}

.btn-our-story {
  margin-bottom:2.5rem;display:inline-block;max-width:50%;text-align:center;
}

/* LEFT — text panel */
.hero-left {
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 5.5rem;
  position: relative;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bloom);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: '';
  display: block; width: 1rem; height: 1px;
  background: var(--bloom); flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(6rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--dark-stem);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.hero-title em { font-style: italic; color: var(--stem); }

.hero-sub {
  font-size: 1.3rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 2.75rem;
  font-weight: 300;
  font-family: var(--serif);
}

.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--stem); color: white;
  padding: 0.9rem 2.25rem;
  font-family: var(--sans); font-size: 0.76rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  display: inline-block;
}
.btn-primary:hover { background: var(--bloom); color: white; }

.btn-ghost {
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-ghost:hover { gap: 1rem; color: var(--stem); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 2.5rem;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* RIGHT — image/illustration panel */
.hero-right {
  position: relative;
  overflow: hidden;
  background: #2d3d28;
  min-height: 500px;
}

/* If a background image is set via inline style, it shows here */
.hero-right-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}

/* Botanical SVG illustration */
.hero-deco {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-deco svg { width: 80%; height: 80%; opacity: 0.92; }

/* Floating "in season" tag */
.hero-float-tag {
  position: absolute; top: 3.5rem; left: 2rem;
  background: rgba(247,243,236,0.1);
  border: 1px solid rgba(247,243,236,0.22);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.1rem;
  color: var(--parchment);
}
.hero-float-tag p {
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.65; margin-bottom: 0.2rem;
}
.hero-float-tag h4 {
  font-family: var(--serif); font-size: 1.15rem;
  font-weight: 300; font-style: italic;
}

/* Spinning badge */
.hero-badge {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  width: 90px; height: 90px; border-radius: 50%;
  border: 1px solid rgba(247,243,236,0.3);
  display: flex; align-items: center; justify-content: center;
  animation: rotateBadge 20s linear infinite;
}
.hero-badge-inner {
  position: absolute; inset: 7px; border-radius: 50%;
  border: 1px solid rgba(247,243,236,0.15);
}
.hero-badge-text {
  position: relative; z-index: 1;
  font-family: var(--serif); font-style: italic;
  font-size: 0.6rem; line-height: 1.5;
  color: rgba(247,243,236,0.7); text-align: center; padding: 0.5rem;
}
@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ════════════════════════════════
   HOME — MARQUEE STRIP
════════════════════════════════ */
.marquee-strip {
  background: var(--stem); color: var(--parchment);
  padding: 0.85rem 0; overflow: hidden; white-space: nowrap;
}
.marquee-inner {
  display: inline-flex; gap: 3rem;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-inner span {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 1.5rem; flex-shrink: 0;
}
.marquee-inner span::after { content: '✦'; opacity: 0.55; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════
   HOME — SHARED SECTION STYLES
════════════════════════════════ */
.home-section-label {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--bloom); display: flex; align-items: center;
  gap: 0.8rem; margin-bottom: 0.75rem;
}
.home-section-label::before {
  content: ''; display: block; width: 1.75rem; height: 1px;
  background: var(--bloom); flex-shrink: 0;
}
.home-section-label--light { color: var(--gold); }
.home-section-label--light::before { background: var(--gold); }

.home-section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 300; line-height: 1.15; color: var(--ink);
}
.home-section-title em { font-style: italic; color: var(--stem); }
.home-section-title--light { color: var(--parchment); }
.home-section-title--light em { color: var(--sage); }

.home-section-body {
  font-size: 0.95rem; line-height: 1.85;
  color: #000; font-weight: 300;
}

.link-underline {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 2px; flex-shrink: 0; align-self: flex-end;
  transition: color 0.25s, border-color 0.25s;
  display: flex;
  align-items: center;
}
.link-underline:hover { color: var(--bloom); border-color: var(--bloom); }

/* ════════════════════════════════
   HOME — FEATURED PRODUCTS
════════════════════════════════ */
.home-products { padding: 6rem 0; background: var(--parchment); }
.home-products-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3.5rem;
}
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}
.home-product-card { cursor: pointer; }
.home-product-img {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  margin-bottom: 1rem; background: var(--linen);
  border-radius: 4px;
  box-shadow: var(--shadow-subtle);
}
.home-product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.home-product-card:hover .home-product-img img { transform: scale(1.05);  transform: translateY(-4px); }
.home-product-img-deco {
  position: absolute; inset: 0; transition: transform 0.6s var(--ease);
}
.home-product-img-deco svg { width: 100%; height: 100%; }
.home-product-card:hover .home-product-img-deco { transform: scale(1.05); transform: translateY(-4px);}
.home-product-tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: var(--parchment); padding: 0.2rem 0.65rem;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.29);
  backdrop-filter: blur(4px);
}
.home-product-tag.tag-in { background: var(--bloom); color: white; }
.home-product-hover {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,26,23,0.55),
    rgba(28,26,23,0.0)
  );
  display: flex; align-items: flex-end; padding: 1.25rem;
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.home-product-hover span {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: white;
}
.home-product-card:hover .home-product-hover { opacity: 1; }
.home-product-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0.3rem 0;
  transition: color 0.3s;
  letter-spacing: 0.01em;
}
.home-product-card:hover .home-product-name { color: var(--stem); }
.home-product-meta { display: flex; justify-content: space-between; align-items: center; }
.home-product-price { font-family: var(--serif); font-size: 1.1rem; color: var(--bloom);opacity: 0.75; }

/* ════════════════════════════════
   HOME — CONTENT SECTIONS
════════════════════════════════ */
.home-content-section { padding: 4.5rem 0; }
.section-cream { 
   background-color: #f3efe6;
  background-image: url("/static/core/images/grainy-bg.c781984edb8c.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-attachment: fixed;
}
.home-split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.home-split-img-wrap { position: relative;  }
.home-split-img-wrap img { width: 100%; aspect-ratio: 1; object-fit: cover;border-radius: 40px; }
.img-placeholder-deco {
  width: 100%; aspect-ratio: 4/5; background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--leaf);
}
.home-split-text { display: flex; flex-direction: column; gap: 1rem; }
.centered-img { width: 100%; max-height: 420px; object-fit: cover; margin-top: 2rem; }
.img-wrap-center {
  position: relative;
}
.img-wrap-center::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gold);
  top: -30px;
  right: -50px;
  z-index: -1;
	clip-path: shape(from 20.45px 11.45px,curve to calc(2.08% + 28.75px) 13.5px with calc(0% + 30px) 12px,curve to calc(6.25% + 26.25px) 19.5px with calc(4.17% + 27.5px) 15px,curve to calc(10.42% + 23.75px) 20px with calc(8.33% + 25px) 24px,curve to calc(14.58% + 21.25px) 15px with calc(12.5% + 22.5px) 16px,curve to calc(18.75% + 18.75px) 16.5px with calc(16.67% + 20px) 14px,curve to calc(22.92% + 16.25px) 18px with calc(20.83% + 17.5px) 19px,curve to calc(27.08% + 13.75px) 15.5px with calc(25% + 15px) 17px,curve to calc(31.25% + 11.25px) 13.5px with calc(29.17% + 12.5px) 14px,curve to calc(35.42% + 8.75px) 7.5px with calc(33.33% + 10px) 13px,curve to calc(39.58% + 6.25px) 2.5px with calc(37.5% + 7.5px) 2px,curve to calc(43.75% + 3.75px) 11.5px with calc(41.67% + 5px) 3px,curve to calc(47.92% + 1.25px) 14.5px with calc(45.83% + 2.5px) 20px,curve to calc(52.08% + -1.25px) 19px with calc(50% + 0px) 9px,curve to calc(56.25% + -3.75px) 23.5px with calc(54.17% + -2.5px) 29px,curve to calc(60.42% + -6.25px) 18px with calc(58.33% + -5px) 18px,curve to calc(64.58% + -8.75px) 20.5px with calc(62.5% + -7.5px) 18px,curve to calc(68.75% + -11.25px) 24px with calc(66.67% + -10px) 23px,curve to calc(72.92% + -13.75px) 21.5px with calc(70.83% + -12.5px) 25px,curve to calc(77.08% + -16.25px) 17px with calc(75% + -15px) 18px,curve to calc(81.25% + -18.75px) 21.5px with calc(79.17% + -17.5px) 16px,curve to calc(85.42% + -21.25px) 16px with calc(83.33% + -20px) 27px,curve to calc(89.58% + -23.75px) 11px with calc(87.5% + -22.5px) 5px,curve to calc(93.75% + -26.25px) 22px with calc(91.67% + -25px) 17px,curve to calc(97.92% + -28.75px) 27px with calc(95.83% + -27.5px) 27px,curve to calc(100% - 23.99px) 22.49px with calc(100% - 30px) 27px,curve to calc(100% - 14.99px) 23.99px with calc(100% - 17.98px) 17.98px,curve to calc(100% - 12px) calc(3.57% + 27.86px) with calc(100% - 12px) calc(0% + 30px),curve to calc(100% - 20.5px) calc(10.71% + 23.57px) with calc(100% - 12px) calc(7.14% + 25.71px),curve to calc(100% - 18.5px) calc(17.86% + 19.29px) with calc(100% - 29px) calc(14.29% + 21.43px),curve to calc(100% - 11.5px) calc(25% + 15.00px) with calc(100% - 8px) calc(21.43% + 17.14px),curve to calc(100% - 13px) calc(32.14% + 10.71px) with calc(100% - 15px) calc(28.57% + 12.86px),curve to calc(100% - 19.5px) calc(39.29% + 6.43px) with calc(100% - 11px) calc(35.71% + 8.57px),curve to calc(100% - 18.5px) calc(46.43% + 2.14px) with calc(100% - 28px) calc(42.86% + 4.29px),curve to calc(100% - 10px) calc(53.57% + -2.14px) with calc(100% - 9px) calc(50% + 0px),curve to calc(100% - 18.5px) calc(60.71% + -6.43px) with calc(100% - 11px) calc(57.14% + -4.29px),curve to calc(100% - 20px) calc(67.86% + -10.71px) with calc(100% - 26px) calc(64.29% + -8.57px),curve to calc(100% - 16px) calc(75% + -15.00px) with calc(100% - 14px) calc(71.43% + -12.86px),curve to calc(100% - 19px) calc(82.14% + -19.29px) with calc(100% - 18px) calc(78.57% + -17.14px),curve to calc(100% - 17px) calc(89.29% + -23.57px) with calc(100% - 20px) calc(85.71% + -21.43px),curve to calc(100% - 21.5px) calc(96.43% + -27.86px) with calc(100% - 14px) calc(92.86% + -25.71px),curve to calc(100% - 28.79px) calc(100% - 29.29px) with calc(100% - 29px) calc(100% - 30px),curve to calc(100% - 29.29px) calc(100% - 20.29px) with calc(100% - 28.59px) calc(100% - 28.59px),curve to calc(97.92% - 28.75px) calc(100% - 14.5px) with calc(100% - 30px) calc(100% - 12px),curve to calc(93.75% - 26.25px) calc(100% - 21px) with calc(95.83% - 27.5px) calc(100% - 17px),curve to calc(89.58% - 23.75px) calc(100% - 18.5px) with calc(91.67% - 25px) calc(100% - 25px),curve to calc(85.42% - 21.25px) calc(100% - 20px) with calc(87.5% - 22.5px) calc(100% - 12px),curve to calc(81.25% - 18.75px) calc(100% - 28px) with calc(83.33% - 20px) calc(100% - 28px),curve to calc(77.08% - 16.25px) calc(100% - 26.5px) with calc(79.17% - 17.5px) calc(100% - 28px),curve to calc(72.92% - 13.75px) calc(100% - 25px) with calc(75% - 15px) calc(100% - 25px),curve to calc(68.75% - 11.25px) calc(100% - 18px) with calc(70.83% - 12.5px) calc(100% - 25px),curve to calc(64.58% - 8.75px) calc(100% - 10px) with calc(66.67% - 10px) calc(100% - 11px),curve to calc(60.42% - 6.25px) calc(100% - 14px) with calc(62.5% - 7.5px) calc(100% - 9px),curve to calc(56.25% - 3.75px) calc(100% - 15.5px) with calc(58.33% - 5px) calc(100% - 19px),curve to calc(52.08% - 1.25px) calc(100% - 12.5px) with calc(54.17% - 2.5px) calc(100% - 12px),curve to calc(47.92% - -1.25px) calc(100% - 12.5px) with calc(50% - 0px) calc(100% - 13px),curve to calc(43.75% - -3.75px) calc(100% - 15px) with calc(45.83% - -2.5px) calc(100% - 12px),curve to calc(39.58% - -6.25px) calc(100% - 18px) with calc(41.67% - -5px) calc(100% - 18px),curve to calc(35.42% - -8.75px) calc(100% - 21px) with calc(37.5% - -7.5px) calc(100% - 18px),curve to calc(31.25% - -11.25px) calc(100% - 13.5px) with calc(33.33% - -10px) calc(100% - 24px),curve to calc(27.08% - -13.75px) calc(100% - 8.5px) with calc(29.17% - -12.5px) calc(100% - 3px),curve to calc(22.92% - -16.25px) calc(100% - 17.5px) with calc(25% - -15px) calc(100% - 14px),curve to calc(18.75% - -18.75px) calc(100% - 17.5px) with calc(20.83% - -17.5px) calc(100% - 21px),curve to calc(14.58% - -21.25px) calc(100% - 17px) with calc(16.67% - -20px) calc(100% - 14px),curve to calc(10.42% - -23.75px) calc(100% - 10.5px) with calc(12.5% - -22.5px) calc(100% - 20px),curve to calc(6.25% - -26.25px) calc(100% - 14px) with calc(8.33% - -25px) calc(100% - 1px),curve to calc(2.08% - -28.75px) calc(100% - 27.5px) with calc(4.17% - -27.5px) calc(100% - 27px),curve to 26.46px calc(100% - 25.46px) with 30px calc(100% - 28px),curve to 12.96px calc(100% - 26.46px) with 22.93px calc(100% - 22.93px),curve to 10.5px calc(96.43% - 27.86px) with 3px calc(100% - 30px),curve to 16.5px calc(89.29% - 23.57px) with 18px calc(92.86% - 25.71px),curve to 18px calc(82.14% - 19.29px) with 15px calc(85.71% - 21.43px),curve to 25px calc(75% - 15px) with 21px calc(78.57% - 17.14px),curve to 19.5px calc(67.86% - 10.71px) with 29px calc(71.43% - 12.86px),curve to 13px calc(60.71% - 6.43px) with 10px calc(64.29% - 8.57px),curve to 16px calc(53.57% - 2.14px) with 16px calc(57.14% - 4.29px),curve to 20.5px calc(46.43% - -2.14px) with 16px calc(50% - 0px),curve to 18.5px calc(39.29% - -6.43px) with 25px calc(42.86% - -4.29px),curve to 18px calc(32.14% - -10.71px) with 12px calc(35.71% - -8.57px),curve to 13px calc(25% - -15px) with 24px calc(28.57% - -12.86px),curve to 6px calc(17.86% - -19.29px) with 2px calc(21.43% - -17.14px),curve to 7px calc(10.71% - -23.57px) with 10px calc(14.29% - -21.43px),curve to 12.5px calc(3.57% - -27.86px) with 4px calc(7.14% - -25.71px),curve to 15.95px 20.45px with 21px 30px,curve to 20.45px 11.45px with 10.91px 10.91px);
}
.split-centered { max-width: 680px; margin: 0 auto; text-align: center; }

.home-split-img-wrap.img-wrap-right::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gold);
  top: 20px;
  right: -36px;
  z-index: -1;
  border-radius: 40px;
}

.home-split-img-wrap.img-wrap-left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gold);
  top: -20px;
  left: -36px;
  z-index: -1;
  border-radius: 40px;
  
}

/* ════════════════════════════════
/* ════════════════════════════════
   HOME — GALLERY PREVIEW
════════════════════════════════ */
.home-gallery-section { padding: 6rem 0; background: var(--mist); }
.home-gallery-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 2.5rem;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}

/* placements */
.home-gallery-item:nth-child(1){
  grid-column:1/3;
  grid-row:span 2;
}

.home-gallery-item:nth-child(2){
  grid-column:3/4;
}

.home-gallery-item:nth-child(3){
  grid-column:4/5;
}

.home-gallery-item:nth-child(4){
  grid-column:3/5;
}

.home-gallery-item:nth-child(5){
  grid-column:1/4;
}

.home-gallery-item:nth-child(6){
  grid-column:4/5;
}

.home-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--mist);
}

/* Per-item aspect ratios matching inspo */
.home-gallery-img { width: 100%;  height: 100%; position: relative; overflow: hidden;
  border-width: 6px;
  border-color: var(--parchment);
  border-style: solid;
}
/* .home-gallery-item:nth-child(1) .home-gallery-img { aspect-ratio: 2/3; }
.home-gallery-item:nth-child(5) .home-gallery-img,
.home-gallery-item:nth-child(6) .home-gallery-img { aspect-ratio: 4/3; } */

.home-gallery-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.home-gallery-item:hover .home-gallery-img img { transform: scale(1.06); }

/* Overlay — gradient bottom-up, italic caption */
.home-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,61,40,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
}
.home-gallery-item:hover .home-gallery-overlay { opacity: 1; }
.home-gallery-overlay p {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--parchment);
}

/* Expand icon — top-right, fades in on hover */
.home-gallery-expand {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 32px; height: 32px;
  background: rgba(247,243,236,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--ink);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.home-gallery-item:hover .home-gallery-expand { opacity: 1; }

/* Lightbox */
.home-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(45,61,40,0.95);
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.home-lightbox.open { display: flex; }
.home-lightbox-inner {
  position: relative;
  max-width: 920px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.home-lightbox-img {
  width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.home-lightbox-caption {
  color: rgba(247,243,236,0.65);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
}
.home-lightbox-close {
  position: absolute;
  top: -3rem; right: 0;
  background: transparent;
  border: 1px solid rgba(247,243,236,0.3);
  color: var(--parchment);
  width: 38px; height: 38px;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.home-lightbox-close:hover { background: var(--bloom); border-color: var(--bloom); }
.home-lightbox-prev,
.home-lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(247,243,236,0.1);
  border: 1px solid rgba(247,243,236,0.2);
  color: var(--parchment);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease);
  backdrop-filter: blur(4px);
}
.home-lightbox-prev:hover,
.home-lightbox-next:hover { background: rgba(247,243,236,0.22); }
.home-lightbox-prev { left: -4rem; }
.home-lightbox-next { right: -4rem; }

/* Gallery responsive */
@media (max-width: 900px) {
  .home-gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .home-gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .home-gallery-img { aspect-ratio: 1 !important; }
  .home-lightbox-prev { left: -2.5rem; }
  .home-lightbox-next { right: -2.5rem; }
}
@media (max-width: 560px) {
  .home-gallery-grid { grid-template-columns: 1fr; }
  .home-lightbox-prev,
  .home-lightbox-next { display: none; }
}
/* ════════════════════════════════
   HOME — SEASONS
════════════════════════════════ */
.seasons-section { background: var(--ink); padding: 6rem 0; }
.seasons-header { margin-bottom: 3rem; }
.seasons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(247,243,236,0.1);
}
.season-card {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid rgba(247,243,236,0.1);
  position: relative; overflow: hidden; transition: background 0.4s;
}
.season-card:last-child { border-right: none; }
.season-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 0; background: linear-gradient(to top, rgba(92,107,71,0.2), transparent);
  transition: height 0.4s;
}
.season-card:hover::before { height: 100%; }
.season-icon { font-size: 1.75rem; display: block; margin-bottom: 1.25rem; }
.season-name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 300;
  color: var(--parchment); margin-bottom: 1rem;
}
.season-flowers { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.season-flowers li {
  font-size: 0.8rem; color: rgba(247,243,236,0.5);
  display: flex; align-items: center; gap: 0.55rem;
}
.season-flowers li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ════════════════════════════════
   HOME — VISIT CTA
════════════════════════════════ */
.visit-cta { padding: 6rem 0; background: var(--linen); }
.visit-cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.visit-deco { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); }

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  padding: 8rem 0 3.5rem; background: var(--linen);
  text-align: center; border-bottom: 1px solid var(--border);
}
.page-hero--short { padding: 7rem 0 2.5rem; }
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--ink); line-height: 1.1; margin-top: 0.5rem;
}
.page-hero-title::after{
  content: "";
  width: 100px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto 0;
  display: block;
}



.page-hero-title em { font-style: italic; color: var(--stem); }
.page-hero-rule {
  width: 40px; height: 1px; background: var(--gold); margin: 1.25rem auto 0;
}

/* ════════════════════════════════
   GENERAL SECTION UTILITIES
════════════════════════════════ */
.content-section { padding: 4.5rem 0; }
.section-alt { background: var(--linen); }
.section-intro { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.section-label {
  display: block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bloom); margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 300; color: var(--ink); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--stem); }
.section-body {
  margin-top: 0.9rem; color: #2b2828;
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
}
.section-rule { width: 36px; height: 1px; background: var(--gold); margin: 1.25rem auto 0; }
.section-cta { text-align: center; margin-top: 3rem; }
.intro-text {
  font-family: var(--serif); font-size: 1.2rem; font-style: italic;
  font-weight: 300; color: var(--text-muted); line-height: 1.9;
  max-width: 720px; margin: 0 auto; text-align: center;
}
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.split-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.split-img-placeholder {
  width: 100%; aspect-ratio: 4/3; background: var(--mist);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--leaf);
}
.empty-state { text-align: center; padding: 4rem 0; color: var(--text-muted); }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

.btn-outlined {
  display: inline-block; padding: 0.75rem 2rem;
  border: 1px solid var(--stem); border-radius: 99px;
  color: var(--stem); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.25s var(--ease);
}
.btn-outlined:hover { background: var(--stem); color: white; }

/* ════════════════════════════════
   PRODUCTS (shop & detail)
════════════════════════════════ */
.products-section { padding: 5.5rem 0; }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.products-grid--wide { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.product-card {
   cursor: pointer;
   margin-bottom: 1.75rem;
   background: var(--cream);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-radius: 4px;}
.product-img-wrap {
  aspect-ratio: 4/4; position: relative; overflow: hidden;
  margin-bottom: 1rem; background: var(--linen);
  border-radius: 4px;
  box-shadow: var(--shadow-subtle);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--leaf);
  background: linear-gradient(135deg, var(--mist), var(--linen));
}
.product-badge {
  position: absolute; top: 0.7rem; left: 0.7rem;
  background: var(--bloom); color: white;
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 99px;
}
.badge-sold { background: var(--text-muted); }
.badge-featured { background: var(--gold); }
.product-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.product-category-tag {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
  min-height: 1em; display: block;
  opacity: .8;
}
.product-name {
  font-family: var(--serif);
  color: var(--ink); margin-bottom: 0.3rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.product-desc {
  font-size: 0.82rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 0.9rem; flex: 1;
}
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-family: var(--serif); font-size: 1.25rem; color: var(--stem); }
.product-price span { font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--stem); }
.price-original { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; margin-right: 0.25rem; }
.price-sale { color: var(--bloom) !important; }

.btn-add {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--linen); border: 1px solid rgba(201,169,110,0.3);
  color: var(--stem); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s var(--ease); flex-shrink: 0;
  opacity: 0; transform: scale(0.85);
}
.product-card:hover .btn-add {
  opacity: 1; transform: scale(1);
}
.btn-add:hover { background: var(--stem); color: white; }
/* Shop filter bar */
.filter-bar {
  background: white; border-bottom: 1px solid var(--border);
  padding: 1rem 0; position: sticky; top: 72px; z-index: 100;
}
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pill {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 99px;
  border: 1px solid var(--border); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--text-muted);
  transition: all 0.2s var(--ease); cursor: pointer;
}
.pill:hover { border-color: var(--stem); color: var(--stem); }
.pill-active { background: var(--stem); color: white; border-color: var(--stem); }

/* Shop layout with sidebar */
.shop-layout { padding: 0 0 6rem; }
.shop-container {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 3rem; align-items: start; padding-top: 3rem;
}
.shop-sidebar {
  position: sticky;
  top: calc(72px + 1.5rem);
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.sidebar-title {
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
  display: flex; align-items: center; gap: 0.5rem;
}
.filter-badge {
  background: var(--bloom); color: white; font-family: var(--sans);
  font-size: 0.65rem; font-weight: 600; width: 20px; height: 20px;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
}
.filter-clear {
  font-size: 0.75rem; color: var(--text-muted);
  text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s;
}
.filter-clear:hover { color: var(--bloom); }
.filter-group {
  margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border);
}
.filter-group:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-group-title {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.filter-options { display: flex; flex-direction: column; gap: 0.25rem; }
.filter-option a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0.6rem; border-radius: 8px;
  font-size: 0.875rem; color: var(--text-muted);
  transition: all 0.2s var(--ease); font-weight: 300;
}
.filter-option a:hover { background: var(--linen); color: var(--ink); }
.filter-option--active a { background: var(--parchment); color: var(--stem); font-weight: 500; }
.option-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid currentColor; flex-shrink: 0; transition: background 0.2s;
}
.filter-option--active .option-dot { background: var(--stem); border-color: var(--stem); }
.option-count { margin-left: auto; font-size: 0.75rem; color: var(--text-muted); }

.price-inputs {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem;
}
.price-input-wrap {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--parchment); overflow: hidden; flex: 1;
  transition: border-color 0.2s;
}
.price-input-wrap:focus-within { border-color: var(--stem); }
.price-input-symbol {
  padding: 0 0.4rem 0 0.6rem;
  font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
  pointer-events: none;
}
.price-input {
  width: 100%; border: none; outline: none; background: transparent;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  color: var(--ink); padding: 0.45rem 0.5rem 0.45rem 0;
  -moz-appearance: textfield;
}
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.price-input-sep {
  font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0;
}

.price-range-wrap { padding-top: 0.5rem; }
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--stem);
  font-family: var(--serif);
}
.range-track {
  position: relative;
  height: 6px;
  background: #d6d3cc; /* light neutral track */
  border-radius: 999px;
}
.range-fill {
  position: absolute;
  height: 100%;
  background: var(--stem);
  border-radius: 999px;
}
.range-input {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; height: 4px; background: transparent;
  -webkit-appearance: none; pointer-events: auto; left: 0;
  cursor: pointer;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--stem);
  box-shadow:
    0 2px 6px rgba(0,0,0,0.15),
    0 0 0 4px rgba(90,107,74,0.08);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.15s var(--ease), box-shadow 0.2s;
}
.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow:
    0 4px 10px rgba(0,0,0,0.18),
    0 0 0 6px rgba(90,107,74,0.12);
}
.range-min { z-index: 1; }
.range-max { z-index: 2; left: 4px;}
.toggle-label { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
.toggle-label input { display: none; }
.toggle-track {
  width: 40px; height: 22px; background: var(--mist); border-radius: 99px;
  position: relative; flex-shrink: 0; transition: background 0.25s var(--ease);
  border: 1px solid var(--border);
}
.toggle-label input:checked + .toggle-track { background: var(--stem); border-color: var(--stem); }
.toggle-thumb {
  position: absolute; top: 2px; left: 2px; width: 16px; height: 16px;
  background: white; border-radius: 50%; box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform 0.25s var(--ease);
}
.toggle-label input:checked + .toggle-track .toggle-thumb { transform: translateX(18px); }
.toggle-text { font-size: 0.875rem; color: var(--text-muted); font-weight: 300; }
.btn-apply-filters {
  width: 100%; padding: 0.75rem; background: var(--stem); color: white;
  border: none; border-radius: 99px; font-family: var(--sans);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; margin-top: 1.5rem;
  transition: background 0.25s var(--ease);
}
.btn-apply-filters:hover { background: var(--bloom); }
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.product-count { font-size: 0.875rem; color: var(--text-muted); font-weight: 300; }
.product-count em { font-style: normal; font-weight: 500; color: var(--ink); }
.toolbar-right {
  display: flex; align-items: center; gap: 0.75rem;
}
.sort-wrap {
  display: flex; align-items: center; gap: 0.5rem;
}
.sort-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); white-space: nowrap;
}
.sort-select {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  color: var(--ink); 
  background: var(--parchment);
  border: 1px solid var(--border); border-radius: 99px;
  padding: 0.45rem 2rem 0.45rem 0.9rem;
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238a8478' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: border-color 0.2s;
  min-width: 170px;
}
.sort-select:focus { outline: none; border-color: var(--gold); }
.sort-select:hover { border-color: var(--gold); }
.btn-filter-toggle {
  display: none; align-items: center; gap: 0.5rem;
  background: var(--parchment); border: 1px solid var(--border); border-radius: 99px;
  padding: 0.5rem 1rem; font-family: var(--sans); font-size: 0.78rem;
  font-weight: 500; cursor: pointer; color: var(--ink); transition: border-color 0.2s;
}
.btn-filter-toggle:hover { border-color: var(--stem); color: var(--stem); }

/* Product detail */
.breadcrumb-bar {
  background: var(--linen); border-bottom: 1px solid var(--border);
  padding: 0.8rem 0; margin-top: 72px;
}
.breadcrumb-nav {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap;
}
.breadcrumb-nav a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb-nav a:hover { color: var(--stem); }
.bc-sep { color: var(--border); }
.bc-current { color: var(--ink); font-weight: 500; }

/* PRODUCT DETAIL */

.product-detail-section { padding: 3.5rem 0 5rem; }
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.product-detail-media { position: sticky; top: calc(72px + 2rem); }
.product-detail-img-wrap {
  position: relative; border-radius: 4px;
  overflow: hidden; box-shadow: var(--shadow-subtle); background: var(--mist);
  
}
.product-detail-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.product-detail-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; color: var(--leaf);
}
.detail-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 99px;
}
.detail-badge--sale { background: var(--bloom); color: white; }
.detail-badge--sold { background: rgba(28,26,23,0.6); color: white; }
.product-cats { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.cat-tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,169,110,0.4);
  padding: 0.25rem 0.65rem; border-radius: 99px; transition: all 0.2s var(--ease);
}
.cat-tag:hover { background: var(--gold); color: white; border-color: var(--gold); }
.product-detail-name {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 1.25rem;
}
.product-detail-price {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-family: var(--serif); font-size: 2.25rem;
  color: var(--stem); margin-bottom: 1.25rem;
}
.price-unit { font-family: var(--sans); font-size: 0.82rem; font-weight: 300; color: var(--text-muted); }
.price-original--lg { font-size: 1.4rem; text-decoration: line-through; color: var(--text-muted); }
.price-sale--lg { color: var(--bloom); }
.stock-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.stock-dot--in  { background: #6ba058; box-shadow: 0 0 0 3px rgba(107,160,88,0.2); }
.stock-dot--out { background: var(--text-muted); }
.stock-label { font-size: 0.82rem; }
.stock-label--in  { color: #4a7c35; }
.stock-label--out { color: var(--text-muted); }
.detail-rule { height: 1px; background: var(--border); margin: 1.5rem 0; }
.product-detail-desc {
  font-size: 0.95rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 2rem;
}
.product-detail-desc p { margin-bottom: 0.75rem; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.btn-detail-primary {
  display: inline-flex; align-items: center; padding: 0.85rem 2rem;
  background: var(--stem); color: white; border-radius: 99px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.25s var(--ease);
  font-family: var(--sans);
  gap: 5px;
}
.btn-detail-primary:hover { background: var(--bloom); }
.btn-detail-disabled { background: var(--mist) !important; color: var(--text-muted) !important; cursor: not-allowed; }
.btn-detail-secondary {
  display: inline-flex; align-items: center; padding: 0.85rem 1.5rem;
  border: 1px solid var(--border); border-radius: 99px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); transition: all 0.2s var(--ease);
}
.btn-detail-secondary:hover { border-color: var(--stem); color: var(--stem); }
.detail-meta { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.meta-row { display: flex; gap: 1rem; font-size: 0.9rem; padding: 0.4rem 0; }
.meta-label { color: var(--text-muted); font-weight: 500; min-width: 90px; }
.meta-value { color: var(--ink); font-weight: 300; }
.meta-value a { color: var(--stem); }
.meta-value a:hover { text-decoration: underline; }
.related-section { padding: 3rem 0 6rem; background: var(--linen); }

/* Gallery (gallery_list / gallery_detail) */
.gallery-albums {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.album-card {
  border-radius: var(--radius); overflow: hidden; background: white;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.album-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.album-cover { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--mist); }
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.album-card:hover .album-cover img { transform: scale(1.05); }
.album-cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--leaf);
}
.album-overlay {
  position: absolute; inset: 0; background: rgba(28,26,23,0);
  display: flex; align-items: flex-end; padding: 0.9rem; transition: background 0.3s var(--ease);
}
.album-card:hover .album-overlay { background: rgba(28,26,23,0.25); }
.album-count {
  background: rgba(28,26,23,0.65); color: white;
  font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem; border-radius: 99px;
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.album-card:hover .album-count { opacity: 1; }
.album-info { padding: 1.1rem 1.35rem 1.4rem; }
.album-name { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); margin-bottom: 0.3rem; }
.album-desc { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }
.gallery-section { padding: 3.5rem 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 0.6rem;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: var(--mist);border-width: 6px;border-color: white;border-style: solid; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.g-featured { grid-column: span 2; grid-row: span 2; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(28,26,23,0);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; transition: background 0.3s var(--ease);
}
.gallery-item:hover .gallery-overlay { background: rgba(28,26,23,0.32); }
.gallery-overlay-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ink);
  opacity: 0; transform: scale(0.8); transition: all 0.25s var(--ease);
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }
.gallery-caption {
  color: white; font-size: 0.8rem; font-weight: 300; text-align: center;
  padding: 0 0.75rem; opacity: 0; transition: opacity 0.25s var(--ease); max-width: 200px;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(28,26,23,0.93);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease); backdrop-filter: blur(6px);
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-img { max-width: 88vw; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-caption { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.5rem; cursor: pointer; transition: color 0.2s;
}
.lightbox-close:hover { color: white; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 2rem; width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; line-height: 1; transition: background 0.2s var(--ease); backdrop-filter: blur(4px);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* About */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.75rem; }
.team-card {
  background: white; border-radius: var(--radius); padding: 2rem 1.5rem 1.75rem;
  text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease);
}
.team-card:hover { transform: translateY(-4px); }
.team-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid var(--mist); }
.team-photo-placeholder {
  width: 96px; height: 96px; border-radius: 50%; background: var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--leaf); margin: 0 auto 1rem;
}
.team-name { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-bottom: 0.25rem; }
.team-role { font-size: 0.75rem; color: var(--gold); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.83rem; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-intro {
  font-size: 0.95rem; line-height: 1.85; color:#2b2828;
  font-weight: 300; margin-bottom: 2.25rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.contact-visual { position: sticky; top: calc(72px + 2rem); }
.info-block { display: flex; gap: 1rem; margin-bottom: 2rem; }
.home-info-block { display: flex; gap: 1rem;  margin-bottom: 1.25rem;align-items: center; }
.info-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--soft-stem);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--stem);
}
.info-block h3 { font-family: var(--serif); font-size: 1rem; color: var(--ink); margin-bottom: 0.25rem; }
.info-block p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.info-block a { color: var(--stem); }
.info-block a:hover { text-decoration: underline; }

.home-info-block h3 { font-family: var(--serif); font-size: 1rem; color: var(--ink); margin-bottom: 0.25rem; }
.home-info-block p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.home-info-block a { color: var(--stem); }
.home-info-block a:hover { text-decoration: underline; }
.contact-photo { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; }

/* Footer */
.footer { background: var(--ink); padding: 4.5rem 0 2rem; color: rgba(255,255,255,0.55); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer-brand-name { font-family: var(--serif); font-size: 1.65rem; font-weight: 300; color: white; margin-bottom: 0.65rem; display: flex;align-content: center;gap: 10px; }
.footer-tagline { font-size: 0.875rem; font-weight: 300; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  transition: background 0.2s var(--ease), color 0.2s;
}
.social-link:hover { background: var(--gold); color: white; }
.footer-col h4 {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a { font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem;
}

.footer-contact-link {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-contact-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.info-heading {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--stem);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════
   SECTION BULLET POINTS
════════════════════════════════ */
.section-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.section-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: #000;
  line-height: 1.65;
}
.section-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ════════════════════════════════
   FLOWER SHAPE ACCENTS
════════════════════════════════ */
.flower {
  width: 160px;
  aspect-ratio: 1;
  position: absolute;
  pointer-events: none;
  z-index: 0;
   --g:/37.02% 37.02% radial-gradient(#000 calc(71% - 1px),#0000 71%) no-repeat;
  mask: 65.451% 97.553% var(--g),9.549% 79.389% var(--g),9.549% 20.611% var(--g),65.451% 2.447% var(--g),100% 50% var(--g),radial-gradient(100% 100%,#000 25.476%,#0000 calc(25.476% + 1px))
}
/* ── Size variants ── */
.flower--sm { width: 80px; }
.flower--md { width: 140px; }
.flower--lg { width: 220px; }
/* ── Corner positions ── */
.flower--tl { top: -2.5rem;  left: -2.5rem;  transform: rotate(-20deg); }
/* .flower--tr { top: -2.5rem;  right: -2.5rem; transform: rotate(20deg);  } */
.flower--tr { right: -3.5rem; transform: rotate(20deg);  }
.flower--bl { bottom: -2.5rem; left: -2.5rem;  transform: rotate(15deg);  }
.flower--br { bottom: -2.5rem; right: -2.5rem;  }

/* ── Color variants ── */
.flower--bloom      { background: var(--bloom); opacity: 0.1; }
.flower--stem       { background: var(--stem);  opacity: 0.07; }
.flower--gold       { background: var(--gold);  opacity: 0.02; }
.flower--gold-light { background: var(--gold);  opacity: 0.12; }



/* ── Ensure sections clip overflow and stack correctly ── */
.home-content-section,
.home-products,
.seasons-section,
.home-gallery-section,
.visit-cta { overflow: hidden; }

.home-content-section .container,
.home-products .container,
.seasons-section .container,
.home-gallery-section .container,
.visit-cta .container { position: relative; z-index: 1; }


/* ════════════════════════════════
   HERO — LOGO WATERMARK
════════════════════════════════ */
.hero-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-watermark img {
  width: 260px;
  max-width: 60%;
  filter: brightness(10);  /* forces white regardless of logo color */
}
.hero-logo-watermark span {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: white;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ════════════════════════════════
   SECTION DIVIDER
════════════════════════════════ */
.section-divider {
 display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 0rem 2rem;
  background: var(--parchment);
}
.divider-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}
.divider-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.divider-logo {
  height: 40px;
  width: auto;
  opacity: 0.45;
  filter: sepia(0.4) saturate(0.8);
}
.divider-symbol {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
} 

/* ════════════════════════════════
   OUR STORY — CENTERED SECTION
════════════════════════════════ */
/* Override section background to be parchment always */
.home-content-section:has(.our-story-split) {
  background-color: var(--parchment) !important;
  background-image: none !important;
}

.our-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
  padding: 1rem 0;
}

/* ── LEFT: media stack ── */
.our-story-media {
  position: relative;
  /* enough height to show logo card overlap */
  padding-bottom: 3.5rem;
  padding-right: 3rem;
}

.filter-option--sub a { padding-left: 1.5rem; font-size: 0.85rem; }

.our-story-main-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gold);
  padding: 4px;
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.our-story-main-img img,
.our-story-placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.our-story-main-img img {
  border: solid 15px var(--mist);
  border-radius: 20px;
}

.our-story-logo-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  aspect-ratio: 1;
  background: #fff0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  transform: rotate(20deg) translate(50px, 0px)
}
.story-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.story-logo-svg {
  width: 75%;
  height: 75%;
}

/* ── RIGHT: text ── */
.our-story-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.our-story-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 0.6rem;
  margin-bottom: 1.75rem;
}
.our-story-heading em {
  font-style: italic;
  color: var(--stem);
}

.our-story-body {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #2b2828;
  font-weight: 300;
  margin-bottom: 1.1rem;
  max-width: 480px;
}

/* ── 2×2 stat cards grid ── */
.our-story-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.story-stat-card {
  border: 1px solid var(--border);
  padding: 1.4rem 1.6rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.stat-card-number {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  color: var(--bloom);
  line-height: 1;
}

.stat-card-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .our-story-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .our-story-media {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .our-story-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .our-story-logo-card {
    width: 50%;
    height: 40%;
  }
}

/* ════════════════════════════════
   BRANCH / LEAF SVG ACCENTS
   Usage: <img src="{% static 'core/images/branches/Branch_X.svg' %}"
               class="branch branch--tr branch--lg branch--stem">
════════════════════════════════ */

/* ── Base ── */
.branch {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: block;

  /* default size */
  width: 220px;
  height: auto;
}

/* ── Size variants ── */
.branch--xs  { width: 100px; }
.branch--sm  { width: 160px; }
.branch--md  { width: 220px; }   /* same as default */
.branch--lg  { width: 320px; }
.branch--xl  { width: 440px; }

/* ── Corner positions ── */
/* top-left: hangs down-right from corner */
.branch--tl {
  top: -1rem;
  left: -1.5rem;
  transform: rotate(-15deg);
  transform-origin: top left;
}
/* top-right: hangs down-left, flipped */
.branch--tr {
  top: -8rem;
  right: -6.5rem;
  transform: rotate(210deg);
  right: -8rem;
}
/* bottom-left: rises up-right */
.branch--bl {
  bottom: -12rem;
  left: -27rem;
  transform: rotate(35deg);
}
/* bottom-right: rises up-left, both flipped */
.branch--br {
  bottom: -1rem;
  right: -1.5rem;
  transform: scale(-1) rotate(-15deg);
  transform-origin: bottom right;
}

/* ── Extra rotation nudges ── */
.branch--rot-0   { --branch-extra-rot: 0deg; }
.branch--rot-30  { --branch-extra-rot: 30deg; }
.branch--rot-60  { --branch-extra-rot: 60deg; }
.branch--rot-90  { --branch-extra-rot: 90deg; }

/* ── Opacity ── */
.branch--subtle  { opacity: 0.05; }
.branch--light   { opacity: 0.09; }
.branch--medium  { opacity: 0.14; }   /* default */
.branch--strong  { opacity: 0.22; }

/* ── Color tints via CSS filter ──
   All SVGs are black paths — these filters push them
   toward the brand palette colours.
   Use browser devtools filter generator or these presets: */

/* Deep green — matches --stem (#5c6b47) */
.branch--stem {
  opacity: 0.10;
  filter: invert(35%) sepia(20%) saturate(600%) hue-rotate(60deg) brightness(0.75);
}
/* Lighter sage green — matches --leaf (#8a9e6f) */
.branch--leaf {
  opacity: 0.12;
  filter: invert(60%) sepia(15%) saturate(500%) hue-rotate(60deg) brightness(0.9);
}
/* Warm gold — matches --gold (#c9a96e) */
.branch--gold {
  opacity: 0.10;
  filter: invert(68%) sepia(30%) saturate(500%) hue-rotate(10deg) brightness(1.0);
}
/* Dusty rose/bloom — matches --bloom (#b85c4a) */
.branch--bloom {
  opacity: 0.08;
  filter: invert(38%) sepia(40%) saturate(600%) hue-rotate(330deg) brightness(0.85);
}
/* Near-white — for dark section backgrounds */
.branch--light-on-dark {
  opacity: 0.07;
  filter: invert(1) brightness(2);
}

  .allura-script-regular {
   font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
}

.privacy-header {margin-top: 1rem;}

/* ════════════════════════════════
   CONTACT MODAL
════════════════════════════════ */

/* Honeypot — visually hidden but NOT display:none (some bots skip those) */
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}

.nav-contact-btn {
  background: transparent;
  border: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  cursor: pointer;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-contact-btn:hover { border-color: var(--stem); color: var(--stem); }

.contact-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(45, 61, 40, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.contact-modal-overlay.open { display: flex; }

.contact-modal {
  position: relative;
  background: var(--parchment);
  width: 100%; max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.75rem 2.75rem 2.5rem;
}

.contact-modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: transparent; border: none;
  font-size: 1.4rem; color: var(--text-muted);
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.contact-modal-close:hover { color: var(--bloom); }

.contact-modal-label {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.contact-modal-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.contact-modal-title {
  font-family: var(--serif); font-size: 2rem;
  font-weight: 300; color: var(--ink);
  margin-bottom: 0.4rem; line-height: 1.15;
}
.contact-modal-title em { color: var(--stem); }
.contact-modal-sub {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 300; margin-bottom: 1.75rem;
}

.contact-field { margin-bottom: 1.1rem; }
.contact-field label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.4rem;
}
.contact-optional { font-weight: 300; text-transform: none; letter-spacing: 0; font-size: 0.75rem; }
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.7rem 0.9rem;
  font-family: var(--sans); font-size: 0.88rem;
  color: var(--ink); font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--stem); }
.contact-field textarea { resize: vertical; min-height: 110px; }

.contact-field-error {
  display: block; font-size: 0.75rem;
  color: var(--bloom); margin-top: 0.3rem; min-height: 1rem;
}
.contact-form-error {
  font-size: 0.82rem; color: var(--bloom);
  margin-bottom: 0.75rem; min-height: 1rem;
}

.contact-submit {
  width: 100%; padding: 0.9rem;
  background: var(--ink); color: var(--parchment);
  border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease);
  margin-top: 0.5rem;
}
.contact-submit:hover:not(:disabled) { background: var(--stem); }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success state */
.contact-success {
  text-align: center;
  padding: 2rem 0 1rem;
  color: var(--stem);
}
.contact-success svg { margin-bottom: 1rem; stroke: var(--stem); }
.contact-success h3 {
  font-family: var(--serif); font-size: 1.75rem;
  font-weight: 300; color: var(--ink); margin-bottom: 0.5rem;
}
.contact-success p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; }

@media (max-width: 560px) {
  .contact-modal { padding: 2rem 1.5rem; }
  .contact-modal-title { font-size: 1.6rem; }
}

/* ══ REVIEWS ══════════════════════════════════════════════════════════════ */
.reviews-section {
  padding: 4.5rem 0;
  background: var(--parchment);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: white;
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.2s var(--ease);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
}
.review-stars {
  display: flex;
  gap: 0.2rem;
}
.star--filled { color: var(--gold); }
.star--empty  { color: var(--border); }
.review-body {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.8;
  flex: 1;
  margin: 0;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.review-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stem);
}
.review-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* ── Roadside Stand Section ── */
.roadside-stand-section {
  padding: 5rem 0;
  background: var(--cream);
}
.stand-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.stand-note {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}
.stand-updated {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.stand-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
}
.stand-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.stand-empty p:last-child {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
}

.roadside-stand-section .section-divider {
  background: var(--cream);
}

.badge-stand {
  background: var(--gold);
  color: var(--ink);
}

.privacy-content ul {
  margin-left: 2rem;
}

.privacy-content a {
  text-decoration: underline;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .shop-container { grid-template-columns: 240px 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(247,243,236,0.98); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow); padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 2rem; font-size: 0.82rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 0.5rem 2rem; text-align: center; }

  /* Hero split */
  .hero-split { grid-template-columns: 1fr; min-height: unset; }
  .hero-left { padding: 3rem 3rem 3rem; }
  .hero-right { min-height: 60vw; }

  .hero-scroll {display: none;}
  .home-section-title {font-size: 3rem;}
  .hero-right { order: -1; }

  .our-story-body {max-width: 100%;}

  /* home */

  

  .home-split-grid { grid-template-columns: 1/2fr; gap: 2.5rem; }

  /* Layouts */
  .split-grid,
  .contact-grid,
  .product-detail-grid,
  .visit-cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-detail-media { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: 1fr 1fr; }
  .season-card:nth-child(2) { border-right: none; }
  .home-gallery-grid { grid-template-columns: 1fr 1fr; }
  .home-gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.g-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand-col { grid-column: span 2; }
  .shop-container { grid-template-columns: 1fr; }
  .shop-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; width: 300px; z-index: 300;
    border-radius: 0; overflow-y: auto;
    transform: translateX(-100%); transition: transform 0.35s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .shop-sidebar.sidebar--open { transform: translateX(0); }
  .btn-filter-toggle { display: flex; }
  .home-products-header,
  .home-gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 760px) {
.home-split-grid { grid-template-columns: 1/2fr; gap: 2.5rem; }

}

@media (max-width: 640px) {
  .home-split-grid .home-split-img-wrap { order: 2; }
  .home-split-grid .home-split-text { order: 1; }
  .home-split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-title { font-size: 5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .home-product-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .seasons-grid { grid-template-columns: 1fr; }
  .season-card { border-right: none; border-bottom: 1px solid rgba(247,243,236,0.1); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .home-section-title { font-size: 3rem; }
  .hero-sub {font-size: 1.2rem;}
  .hero-scroll {display: none;}
  .page-hero-title {font-size: 3rem;}
  .btn-primary {max-width: 80%;}
  .hero-right { min-height: 50dvh; }
  .product-count {display: none;}
  .our-story-body {
    font-size: 1rem;
    line-height: 1.9;
    color: #2b2828;
  }
  .home-product-name {
    font-size: 1rem;
  }
}