/* =====================================================
   Dahlia Farm Stand — boutique flower farm brand site
   ===================================================== */

/* Palette is drawn from the Boght Family Farm crest: the deep green of the
   lettering, the sage of the wreath foliage, the coral + magenta dahlias, the
   rosebud pink, the ranunculus yellow, the lavender sprigs. The site formerly
   used only the two darkest of those; the lighter half now carries it. */
:root {
  /* paper & ground */
  --cream: #FBF4EE;
  --cream-soft: #F7E9E2;
  --ivory: #FFFBF6;
  --paper: #FFFDFA;

  /* greens — crest lettering + wreath foliage.
     --sage is a mid-tone: fine for illustration, but it carries neither cream
     nor green-deep text at 4.5:1, so keep copy off it. */
  --green: #3A5638;
  --green-deep: #243C24;
  --sage: #8FA45C;
  --sage-soft: #B9C68E;

  /* pinks — dahlias & rosebuds */
  --blush: #F6D3CB;
  --blush-soft: #FDEAE3;
  --pink: #E597B5;
  --pink-soft: #FADEE7;
  --burgundy: #8E2F4A;
  --burgundy-deep: #6E1F35;

  /* yellows — ranunculus */
  --butter: #F4D461;
  --butter-soft: #FCEFC6;
  --gold: #C9A24E;

  --ink: #35302B;
  --ink-soft: #635A52;

  /* channel triplets — so rgba() tints track the palette instead of
     stranding at the old values whenever these are retuned */
  --green-rgb: 58,86,56;
  --burgundy-rgb: 142,47,74;
  --cream-rgb: 251,244,238;
  --blush-rgb: 246,211,203;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Caveat", "Brush Script MT", cursive;

  --max: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  /* Section rhythm. Was clamp(4rem, 9vw, 7.5rem) — 115px a side at 1280, which
     put ~1150px of pure padding on the homepage alone (19% of its height) and
     pushed each section's payload below the fold. Feeds .section and
     .form-section, so this token is the only lever needed. */
  --section-pad: clamp(3rem, 5.5vw, 4.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 17px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { opacity: .75; }

ul { list-style: none; }

/* paper-grain overlay — kept on body via pseudo, very subtle */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: radial-gradient(rgba(var(--burgundy-rgb),.025) 1px, transparent 1px),
                    radial-gradient(rgba(var(--green-rgb),.025) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }

/* =================== TYPOGRAPHY =================== */

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--green-deep);
}
.display em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 500;
}
.display--light { color: var(--cream); }
.display--light em { color: var(--blush); }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  max-width: 56ch;
  color: var(--ink-soft);
  margin-top: 1.25rem;
  font-style: italic;
}
.lede--light { color: rgba(var(--cream-rgb),.85); }

.eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--burgundy);
  margin-bottom: 1.1rem;
  display: inline-block;
}
.eyebrow--light { color: var(--blush); }

.handwritten {
  font-family: var(--script);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--burgundy);
  margin-top: .5rem;
}

.microcopy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 2.5rem;
}

/* =================== BUTTONS =================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--cream);
  cursor: pointer;
  transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
  box-shadow: 0 6px 18px -10px rgba(var(--green-rgb),.6);
}
.btn:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 12px 24px -14px rgba(var(--green-rgb),.7);
}
.btn--small { padding: .65rem 1.2rem; font-size: .72rem; }
.btn--cream {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--cream);
}
.btn--cream:hover { background: var(--paper); color: var(--burgundy); border-color: var(--paper); }
.btn--burgundy {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}
.btn--burgundy:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); }
.btn--ghost {
  background: transparent;
  border-color: rgba(var(--cream-rgb),.55);
  color: var(--cream);
}
.btn--ghost:hover { background: rgba(var(--cream-rgb),.1); border-color: var(--cream); }

.link-underline {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--burgundy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .2s;
}
.link-underline:hover { opacity: 1; color: var(--green); }

@media (prefers-reduced-motion: reduce) {

}

/* =================== HERO =================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* lift the footage itself rather than leaning on a lighter veil — a veil can
     only ever darken, and the clip is inherently dim */
  filter: brightness(1.16) saturate(1.06);
}
.hero__media img {
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }

}
.hero__veil {
  position: absolute; inset: 0;
  /* 1. scrim pooled under the centred type — explicitly sized so it fades to
        zero inside the frame; 2. warm rose vignette (dusk, not night) */
  background:
    radial-gradient(ellipse 42% 46% at 50% 52%,
      rgba(38,18,28,.68) 0%, rgba(38,18,28,.46) 52%, rgba(38,18,28,0) 100%),
    radial-gradient(ellipse at center, rgba(58,30,42,.08) 0%, rgba(48,26,36,.42) 100%),
    linear-gradient(180deg, rgba(var(--blush-rgb),.10) 0%, rgba(var(--burgundy-rgb),.16) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 var(--gutter);
  text-shadow: 0 1px 3px rgba(42,20,30,.5), 0 2px 20px rgba(42,20,30,.6);
}
/* The scrim lives in the veil (full-bleed), NOT on .hero__inner. Pinning it to
   the text block meant the gradient hit that element's edge before reaching
   zero and clipped into a visible rectangle. Full-bleed gives it room to fade
   out completely, so it reads as a pool of shade rather than a box. */
.hero__logo {
  display: block;
  width: clamp(140px, 20vw, 210px);
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .4);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 1rem 0 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--blush);
}
.hero__tag {
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .95;
  margin-bottom: 2.5rem;
}
.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--cream);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .75;
}
@media (max-height: 700px) {
  .hero__scroll { display: none; }

}
.hero__scroll span {
  width: 1px;
  height: 26px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: -13px; left: 0;
  width: 1px; height: 13px;
  background: var(--blush);
  animation: scrollNudge 2.4s ease-in-out infinite;
}
@keyframes scrollNudge {
  0% { transform: translateY(0); }
  50% { transform: translateY(26px); }
  100% { transform: translateY(52px); }

}

/* floating petals */
.hero__petal {
  position: absolute;
  z-index: 1;
  width: 80px; height: 80px;
  background: radial-gradient(ellipse, var(--blush) 0%, rgba(var(--blush-rgb),0) 70%);
  filter: blur(1px);
  opacity: .55;
  border-radius: 50%;
  animation: floatPetal 14s ease-in-out infinite;
}
.hero__petal--1 { top: 20%; left: 8%; animation-delay: 0s; }
.hero__petal--2 { top: 65%; left: 80%; width: 120px; height: 120px; animation-delay: -5s; opacity: .35; }
.hero__petal--3 { top: 40%; left: 88%; width: 60px; height: 60px; animation-delay: -9s; opacity: .45; }
@keyframes floatPetal {
  0%, 100% { transform: translate(0,0) rotate(0); }
  33% { transform: translate(-20px,-30px) rotate(40deg); }
  66% { transform: translate(15px, 20px) rotate(-30deg); }

}

/* =================== MARQUEE =================== */

.marquee {
  background: linear-gradient(90deg, var(--blush-soft) 0%, var(--pink-soft) 35%, var(--butter-soft) 68%, var(--blush-soft) 100%);
  color: var(--burgundy);
  overflow: hidden;
  border-top: 1px solid rgba(var(--burgundy-rgb),.12);
  border-bottom: 1px solid rgba(var(--burgundy-rgb),.12);
  padding: 1rem 0;
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: .01em;
}
.marquee__track span:nth-child(odd) {
  color: var(--burgundy);
}
.marquee__track span:nth-child(even) {
  color: var(--sage);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }

}

/* =================== SECTIONS =================== */

.section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.section--cream { background: var(--cream); }
.section--cream-soft { background: var(--cream-soft); }
.section--ivory { background: var(--ivory); }
.section--green {
  background: var(--green);
  color: var(--cream);
}
.section--blush {
  background: linear-gradient(160deg, var(--blush) 0%, var(--blush-soft) 100%);
}

.section__head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section__head--light { color: var(--cream); }

/* A section that is *only* a heading and a lede is a lead-in, not a
   destination. On top of the section rhythm it also pays .section__head's
   bottom margin, which exists to separate the head from content it doesn't
   have — so that margin is pure dead air above whatever it's introducing.
   Kill it and sit closer to the section below. (This only holds for head-only
   sections; anywhere else that margin is doing real work.) */
.section--tight {
  padding-bottom: clamp(2rem, 3.25vw, 2.75rem);
}
.section--tight .section__head { margin-bottom: 0; }

/* botanical divider between sections - subtle */
.section--cream + .section--cream::before,
.section--ivory + .section--ivory::before {
  content: "✿";
  position: absolute;
  top: -.6rem; left: 50%;
  transform: translateX(-50%);
  color: var(--burgundy);
  background: var(--cream);
  padding: 0 .9rem;
  font-size: 1.1rem;
}

/* =================== BOUQUET GRID =================== */

.bouquet-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
}
.card-bouquet {
  grid-column: span 4;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(var(--burgundy-rgb),.04), 0 30px 50px -40px rgba(var(--green-rgb),.35);
  transition: transform .5s ease, box-shadow .5s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(var(--burgundy-rgb),.05);
}
.card-bouquet:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(var(--burgundy-rgb),.04), 0 40px 60px -38px rgba(var(--green-rgb),.5);
}
.card-bouquet--feature { grid-column: span 8; flex-direction: row; }
.card-bouquet--feature .card-bouquet__photo { flex: 1.1; }
.card-bouquet--feature .card-bouquet__body { flex: 1; }

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

.badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--burgundy);
  color: var(--cream);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  border-radius: 999px;
}
.badge--gold { background: var(--gold); color: var(--cream); }
.badge--blush { background: var(--blush); color: var(--burgundy); }

.card-bouquet__body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.card-bouquet__body h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.1;
}
.card-bouquet__body p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.5;
}
.card-bouquet__foot {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed rgba(var(--burgundy-rgb),.2);
}
.price {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--burgundy);
  font-weight: 500;
}
.price small {
  font-size: .8rem;
  color: var(--ink-soft);
  font-style: italic;
}
.card-bouquet__cta {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}

.card-bouquet--subscription {
  grid-column: span 4;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--cream);
}
.card-bouquet--subscription .card-bouquet__body h3,
.card-bouquet--subscription .card-bouquet__body p,
.card-bouquet--subscription .eyebrow,
.card-bouquet--subscription .price,
.card-bouquet--subscription .card-bouquet__cta { color: var(--cream); }
.card-bouquet--subscription .eyebrow { color: var(--blush); }
.card-bouquet--subscription .card-bouquet__body { justify-content: center; padding: 2.25rem; }
.card-bouquet--subscription .card-bouquet__foot { border-top-color: rgba(var(--cream-rgb),.25); }

.checklist {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  margin: .25rem 0;
}
.checklist li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: .4rem;
}
.checklist li::before {
  content: "✿";
  position: absolute;
  left: 0; top: 0;
  color: var(--blush);
}

@media (max-width: 900px) {
  .card-bouquet,
  .card-bouquet--feature,
  .card-bouquet--subscription { grid-column: span 12; }
  .card-bouquet--feature { flex-direction: column; }

}

/* =================== BLOOMING THIS WEEK =================== */

.blooming__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
  margin-top: 3rem;
  max-width: 900px;
}
.blooming__list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(var(--cream-rgb),.15);
  font-family: var(--serif);
}
.blooming__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(var(--cream-rgb),.08);
}
.blooming__list strong {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--cream);
}
.blooming__list em {
  font-style: italic;
  color: var(--blush);
  font-size: .95rem;
  letter-spacing: .02em;
}

@media (max-width: 700px) {
  .blooming__list { grid-template-columns: 1fr; gap: 0; }

}

/* =================== STORY =================== */

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story__images {
  position: relative;
  height: 600px;
}
.story__img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 40px 60px -30px rgba(var(--green-rgb),.45);
  filter: sepia(.08) saturate(1.05);
}
.story__img--big {
  width: 78%; height: 80%;
  top: 0; left: 0;
  object-fit: cover;
}
.story__img--small {
  width: 55%; height: 55%;
  bottom: 0; right: 0;
  object-fit: cover;
  border: 8px solid var(--cream);
}
.story__stamp {
  position: absolute;
  top: 12%; right: 8%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--blush);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.3;
  /* Static tilt only — this used to spin a full turn every 30s, which pulled
     the eye away from the story copy it sits next to. The tilt is the wax-seal
     look; the spin was just motion for its own sake. */
  transform: rotate(-12deg);
  box-shadow: 0 18px 30px -16px rgba(var(--burgundy-rgb),.55);
}

.story__copy h2 { margin-bottom: 1.75rem; }
.story__copy p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .story__images { height: 500px; }

}

/* =================== PRACTICES =================== */

.practices__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.practice {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--paper);
  border-radius: 14px;
  color: var(--green);
  border: 1px solid rgba(var(--green-rgb),.08);
  transition: transform .4s ease;
}
.practice:hover { transform: translateY(-4px); }
.practice svg {
  width: 48px; height: 48px;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.practice h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: .5rem;
}
.practice p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 800px) { .practices__grid { grid-template-columns: repeat(2,1fr); } 

}
@media (max-width: 480px) { .practices__grid { grid-template-columns: 1fr; } 

}

/* =================== SHOP CATS =================== */

.shop-cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.cat__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.cat__img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--cream);
  margin: 12px;
  pointer-events: none;
}
.cat__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter .6s ease;
  filter: saturate(.9);
}
.cat:hover .cat__img img { transform: scale(1.05); filter: saturate(1.05); }
.cat h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-deep);
}
.cat p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
@media (max-width: 800px) { .shop-cats__grid { grid-template-columns: repeat(2,1fr); } 

}
@media (max-width: 500px) { .shop-cats__grid { grid-template-columns: 1fr; } 

}

/* =================== FORECAST =================== */

.forecast__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.forecast__grid::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--burgundy-rgb),.2), transparent);
}
.forecast__col {
  background: var(--paper);
  border: 1px solid rgba(var(--green-rgb),.1);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  position: relative;
}
.forecast__col h4 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px dashed rgba(var(--burgundy-rgb),.25);
  font-style: italic;
}
.forecast__col ul li {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-soft);
  padding: .35rem 0;
}
.forecast__col--feature {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-12px);
}
.forecast__col--feature h4 { color: var(--blush); border-bottom-color: rgba(var(--blush-rgb),.3); }
.forecast__col--feature ul li { color: var(--cream); }

@media (max-width: 800px) {
  .forecast__grid { grid-template-columns: repeat(2,1fr); }
  .forecast__col--feature { transform: none; }

}

/* =================== VISIT =================== */

.visit__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.visit__copy .lede { margin-bottom: 2.5rem; }
.visit__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.visit__details dt {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: .5rem;
}
.visit__details dd {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--cream);
}
.visit__details dd small {
  display: block;
  font-style: italic;
  font-size: .95rem;
  opacity: .7;
  margin-top: .25rem;
}

.visit__map-frame {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 35px 60px -30px rgba(0,0,0,.5);
  border: 1px solid rgba(var(--cream-rgb),.15);
  transform: rotate(-1.5deg);
  transition: transform .5s ease;
}
.visit__map:hover .visit__map-frame { transform: rotate(0); }
.visit__map-frame svg { width: 100%; height: auto; display: block; }
.visit__map-caption {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--blush);
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .visit__grid { grid-template-columns: 1fr; gap: 3rem; }
  .visit__details { grid-template-columns: 1fr; gap: 1.5rem; }

}

/* =================== TESTIMONIALS =================== */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.quote {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  position: relative;
  border: 1px solid rgba(var(--burgundy-rgb),.08);
}
.quote::before {
  content: "“";
  position: absolute;
  top: -20px; left: 22px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--burgundy);
  line-height: 1;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.quote blockquote em { color: var(--burgundy); }
.quote figcaption {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}
.quote--feature {
  background: var(--burgundy);
  transform: translateY(-1rem);
  box-shadow: 0 30px 50px -30px rgba(var(--burgundy-rgb),.6);
}
.quote--feature::before { color: var(--blush); }
.quote--feature blockquote { color: var(--cream); font-size: 1.3rem; }
.quote--feature blockquote em { color: var(--blush); }
.quote--feature figcaption { color: var(--blush); }

@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .quote--feature { transform: none; }

}

/* =================== EVENTS =================== */

.events__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 880px;
  margin: 0 auto;
}
.event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 2rem;
  background: var(--paper);
  border: 1px solid rgba(var(--green-rgb),.08);
  border-radius: 12px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.event:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 40px -25px rgba(var(--green-rgb),.35);
}
.event__date {
  font-family: var(--serif);
  text-align: center;
  background: var(--cream-soft);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  min-width: 80px;
  border: 1px dashed rgba(var(--burgundy-rgb),.25);
}
.event__day {
  display: block;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1;
}
.event__mo {
  display: block;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: .25rem;
}
.event__body h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: .35rem;
}
.event__body p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.5;
}
.event__meta {
  font-style: normal !important;
  font-family: var(--sans) !important;
  font-size: .8rem !important;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--burgundy) !important;
  margin-top: .5rem !important;
}
.event .badge { position: static; }

@media (max-width: 700px) {
  .event { grid-template-columns: auto 1fr; }
  .event .badge { grid-column: 1 / -1; justify-self: start; }

}

/* =================== GALLERY =================== */

.gallery__strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 1rem;
  padding: 0 var(--gutter);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.gallery__item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
  transition: transform 1.2s ease, filter .5s;
}
.gallery__item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
}
.gallery__item:nth-child(3n) { margin-top: 18px; }
.gallery__item:nth-child(5n) { margin-top: -10px; }

@media (max-width: 900px) {
  .gallery__strip { grid-template-columns: repeat(4, 1fr); }

}

/* =================== NEWSLETTER =================== */

.newsletter {
  background: linear-gradient(160deg, var(--blush) 0%, #FFE4D7 70%, var(--cream) 100%);
  position: relative;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(var(--burgundy-rgb),.08), transparent 50%);
}
.newsletter__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.newsletter__art svg {
  width: 200px;
  height: 200px;
  animation: bloomSpin 60s linear infinite;
}
@keyframes bloomSpin {
  to { transform: rotate(360deg); }

}
.newsletter h2 { color: var(--burgundy-deep); }
.newsletter h2 em { color: var(--green); }
.newsletter .lede { color: var(--burgundy-deep); max-width: 50ch; }
.newsletter__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}
.newsletter__cta small {
  font-family: var(--serif);
  font-style: italic;
  color: var(--burgundy);
  font-size: 1rem;
}
@media (max-width: 700px) {
  .newsletter__inner { grid-template-columns: 1fr; }
  .newsletter__art svg { width: 140px; height: 140px; }

}

/* =================== FOOTER =================== */

.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(var(--cream-rgb),.12);
}
.footer__brand h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  margin: .75rem 0;
}
.footer__brand p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(var(--cream-rgb),.7);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 40ch;
}
.footer__mark {
  width: 44px; height: 44px;
  color: var(--blush);
}
.footer h4 {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer ul li {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(var(--cream-rgb),.85);
  margin-bottom: .55rem;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: .85rem;
  color: rgba(var(--cream-rgb),.55);
}
.footer__sister a { color: var(--blush); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: .5rem; }

}

/* =================== REVEAL ON SCROLL =================== */
/* CSS-only reveal using scroll-driven animations where supported,
   falls back to a load-time fade-in. */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: revealIn 1.2s ease-out forwards;
  animation-delay: .15s;
}
.reveal:nth-child(2) { animation-delay: .25s; }
.reveal:nth-child(3) { animation-delay: .35s; }
.reveal:nth-child(4) { animation-delay: .45s; }
.reveal:nth-child(5) { animation-delay: .55s; }
.reveal:nth-child(6) { animation-delay: .65s; }
@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }

}

/* Scroll-driven for browsers that support it (Chrome 115+, Edge 115+) */
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    animation: revealIn 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
    animation-delay: 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero__media img,
  .hero__petal,
  .marquee__track,
  .hero__scroll span::after,
  .story__stamp,
  .newsletter__art svg {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }

}
@media (max-width: 860px) {

}
body.menu-open { overflow: hidden; }

@keyframes navMenuIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }

}

@media (prefers-reduced-motion: reduce) {

}

/* ============================================================
   HEADER TRANSPLANT — working JS-based hamburger from rebuild
   Class names use site-nav/brand/hamburger/mobile-menu namespace
   so they cannot conflict with leftover .nav__ rules.
   ============================================================ */


body.menu-open { overflow: hidden; }


/* ---------- Header / Nav ---------- */
/* Cream bar, dark contents. Always opaque — it was transparent until JS added
   --solid past 40px, which left the links on the hero photograph itself.
   The bar matches the cream sections it scrolls over, so it needs the hairline
   to stay defined; the shadow only deepens once scrolled. */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: max(env(safe-area-inset-top), 0.4rem) 0 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(var(--green-rgb),0.12);
  transition: box-shadow 0.3s ease;
}

.site-nav--solid {
  box-shadow: 0 10px 26px -14px rgba(var(--green-rgb),0.40);
}

.site-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--green-deep);
  margin-right: auto;
}

.brand__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper);
  /* the crest is a white-background raster — on a cream bar it needs a ring to
     read as a mark rather than a smudge. Was a cream ring, invisible now. */
  box-shadow: 0 0 0 1px rgba(var(--green-rgb),0.20);
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.site-nav__links { display: none; }

.site-nav__cta { display: none; }


/* ---------- Hamburger ---------- */
.hamburger {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px;
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

body.menu-open .hamburger span:nth-child(2) { opacity: 0; }

body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ---------- Mobile menu panel ----------
   display:none when closed so iOS Safari has no element to leak from a
   transformed/fixed parent — the X-boxes-at-top bug came from a transformed
   panel being kept in the render tree. */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  /* follows the bar — a dark panel under a cream header read as two headers */
  background: var(--cream);
  padding: max(env(safe-area-inset-top), 1rem) var(--gutter) 2rem;
  z-index: 40;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

body.menu-open .mobile-menu {
  display: flex;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}

.mobile-menu__link {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.mobile-menu__cta {
  align-self: center;
  margin-top: 1rem;
}

/* ---------- Desktop ---------- */
@media (min-width: 960px) {
  .site-nav__links {
    display: flex;
    gap: 1.8rem;
    margin: 0 1.4rem;
  }
  .site-nav__links a {
    color: var(--green-deep);
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    opacity: 0.95;
  }
  /* burgundy, not blush — blush is a pale pink that vanishes on a cream bar */
  .site-nav__links a:hover { opacity: 1; color: var(--burgundy); }
  /* The label changes per page (Order Now / Request a Quote / …), so an
     auto-width pill made the nav links beside it jump sideways on every
     navigation. Pinned to the widest label, "Inquire on a Piece" (~226px). */
  .site-nav__cta {
    display: inline-flex;
    min-width: 228px;
    justify-content: center;
  }
  .hamburger { display: none; }
}

/* =================== CURRENT-PAGE NAV HIGHLIGHT =================== */
.site-nav__links a.is-current {
  color: var(--burgundy);
  opacity: 1;
  position: relative;
}
.site-nav__links a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--burgundy);
}
.mobile-menu__link.is-current { color: var(--burgundy); }

/* =================== INLINE UNDERLINE LINK =================== */
.underline {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* =================== SERVICE HERO (subpages) =================== */
.service-hero {
  position: relative;
  min-height: 55vh;
  min-height: 55svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.service-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
.service-hero__veil {
  position: absolute; inset: 0;
  /* was a .45→.85 radial *plus* a .6→.5 linear over a dimmed image — three
     dimming layers, which is what made these banners read almost black */
  /* wider, flatter scrim than the homepage — this banner is short (55vh) and
     its type sits in a single centred band */
  background:
    radial-gradient(ellipse 46% 62% at 50% 50%,
      rgba(38,18,28,.70) 0%, rgba(38,18,28,.48) 52%, rgba(38,18,28,0) 100%),
    radial-gradient(ellipse at center, rgba(58,30,42,.10), rgba(45,26,36,.40) 95%),
    linear-gradient(180deg, rgba(var(--blush-rgb),.10) 0%, rgba(var(--burgundy-rgb),.18) 100%);
}
.service-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 var(--gutter);
  /* the veil is deliberately light now, so the type carries its own scrim.
     Keeps the photograph bright while cream text still holds over pale petals,
     which a uniform veil could only do by darkening the whole image again. */
  text-shadow: 0 1px 3px rgba(42,20,30,.55), 0 2px 20px rgba(42,20,30,.7);
}
.service-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: .75rem 0 1.25rem;
}
.service-hero__title em {
  font-style: italic;
  color: var(--blush);
}
.service-hero__tag {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .9;
}

/* =================== SERVICES GRID (landing tiles) =================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2rem;
}
.services-grid .service-tile:nth-child(4),
.services-grid .service-tile:nth-child(5) {
  grid-column: span 1;
}
.service-tile {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(var(--burgundy-rgb),.06);
  box-shadow: 0 1px 0 rgba(var(--burgundy-rgb),.04), 0 25px 45px -35px rgba(var(--green-rgb),.45);
  color: inherit;
  transition: transform .45s ease, box-shadow .45s ease;
}
.service-tile:hover {
  transform: translateY(-6px);
  opacity: 1;
  box-shadow: 0 1px 0 rgba(var(--burgundy-rgb),.04), 0 35px 55px -32px rgba(var(--green-rgb),.55);
}
.service-tile__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-tile__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.service-tile:hover .service-tile__img img { transform: scale(1.06); }
.service-tile__body {
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.service-tile__body h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.1;
}
.service-tile__body p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.5;
}
.service-tile__cta {
  margin-top: auto;
  padding-top: .9rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  border-top: 1px dashed rgba(var(--burgundy-rgb),.18);
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =================== SERVICE INTRO (copy + image trio) =================== */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.service-intro__copy h2 { margin-bottom: 1.25rem; }
.service-intro__copy p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.6; color: var(--ink-soft); }
.service-intro__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: .9rem;
}
.service-intro__images img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: sepia(.05) saturate(1.05);
  box-shadow: 0 25px 40px -30px rgba(var(--green-rgb),.45);
}
.service-intro__images img:first-child {
  grid-row: span 2;
  aspect-ratio: 3/5;
}
.service-intro__images img:not(:first-child) {
  aspect-ratio: 4/3;
}
@media (max-width: 900px) {
  .service-intro { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =================== PRICING (orders.html) =================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--paper);
  border: 1px solid rgba(var(--green-rgb),.08);
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pricing-card:hover {
  opacity: 1;
  transform: translateY(-6px);
  border-color: var(--burgundy);
  box-shadow: 0 30px 50px -28px rgba(var(--burgundy-rgb),.45);
}
.pricing-card__art {
  width: 80px; height: 100px;
  margin: 0 auto .5rem;
  color: var(--green);
}
.pricing-card__art svg { width: 100%; height: 100%; }
.pricing-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--green-deep);
}
.pricing-card__price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1;
}
.pricing-card__desc {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
}
.pricing-card__cta {
  margin-top: 1rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}
/* Group label above each pricing grid — the order menu splits into everyday
   bouquets and the prom/homecoming pieces, which are shopped for differently. */
.pricing-group {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--burgundy);
  text-align: center;
  margin-top: 3rem;
}
.pricing-group::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin: .85rem auto 0;
  background: var(--pink);
}
.pricing-group--spaced { margin-top: 4.5rem; }
.pricing-group + .pricing-grid { margin-top: 1.75rem; }

@media (max-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* =================== EXPERIENCE TILES (flower-bar.html) =================== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.experience-tile {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(var(--burgundy-rgb),.06);
  border-radius: 12px;
  overflow: hidden;
  color: inherit;
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0 1px 0 rgba(var(--burgundy-rgb),.04), 0 22px 40px -32px rgba(var(--green-rgb),.4);
}
.experience-tile:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 1px 0 rgba(var(--burgundy-rgb),.04), 0 32px 50px -28px rgba(var(--green-rgb),.55);
}
.experience-tile__img { aspect-ratio: 4/3; overflow: hidden; }
.experience-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.experience-tile:hover .experience-tile__img img { transform: scale(1.06); }
.experience-tile__body {
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.experience-tile__body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-deep);
}
.experience-tile__body p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}
.experience-tile__cta {
  margin-top: .5rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}
@media (max-width: 900px) { .experience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .experience-grid { grid-template-columns: 1fr; } }

/* =================== TRUCK SECTION (flower-bar.html) =================== */
.truck__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.truck__copy .lede { margin-bottom: 2rem; }
.truck__image img {
  width: 100%; height: auto;
  border-radius: 10px;
  box-shadow: 0 40px 60px -30px rgba(0,0,0,.5);
  transform: rotate(-1deg);
}
@media (max-width: 900px) {
  .truck__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .truck__image img { transform: none; }
}

/* =================== DECOR GRID (vintage-decor.html) =================== */
.decor-placeholder-note {
  text-align: center;
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--burgundy);
  background: var(--paper);
  padding: .9rem 1.5rem;
  border-radius: 999px;
  max-width: 720px;
  margin: 0 auto 3rem;
  border: 1px dashed rgba(var(--burgundy-rgb),.25);
}
.decor-placeholder-note em { font-style: italic; color: var(--ink-soft); }
.decor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.decor-item {
  background: var(--paper);
  border: 1px solid rgba(var(--burgundy-rgb),.06);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0 1px 0 rgba(var(--burgundy-rgb),.04), 0 22px 40px -32px rgba(var(--green-rgb),.4);
}
.decor-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(var(--burgundy-rgb),.04), 0 30px 48px -28px rgba(var(--green-rgb),.55);
}
.decor-item__img { aspect-ratio: 4/3; overflow: hidden; }
.decor-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(.1) saturate(.95);
  transition: transform 1s ease;
}
.decor-item:hover .decor-item__img img { transform: scale(1.05); }
.decor-item__body {
  padding: 1.3rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.decor-item__body h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-deep);
}
.decor-item__desc {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
}
.decor-item__foot {
  margin-top: .5rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px dashed rgba(var(--burgundy-rgb),.2);
}
.decor-item__foot .link-underline { margin: 0; font-size: .92rem; }
@media (max-width: 900px) { .decor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .decor-grid { grid-template-columns: 1fr; } }

/* =================== FORM =================== */
.form-section { padding-top: calc(var(--section-pad) - 1rem); }
.form-container { max-width: 760px; }
.form {
  background: var(--paper);
  border: 1px solid rgba(var(--burgundy-rgb),.08);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 30px 60px -40px rgba(var(--green-rgb),.4);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form__group {
  margin-bottom: 1.25rem;
  display: block;
}
.form__row .form__group { margin-bottom: 1.25rem; }
.form__label {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .55rem;
  font-weight: 500;
}
.form__req {
  color: var(--burgundy);
  letter-spacing: 0;
}
.form__input {
  width: 100%;
  display: block;
  border: 1px solid rgba(var(--green-rgb),.18);
  background: var(--paper);
  border-radius: 8px;
  padding: .8rem 1rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form__input:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(var(--burgundy-rgb),.12);
}
.form__textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
select.form__input {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--burgundy) 50%),
    linear-gradient(135deg, var(--burgundy) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.form__fieldset { border: 0; padding: 0; }
.form__radios,
.form__checks {
  display: grid;
  gap: .55rem;
  margin-top: .25rem;
}
.form__radio,
.form__check {
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  padding: .65rem .9rem;
  border: 1px solid rgba(var(--green-rgb),.15);
  border-radius: 8px;
  transition: border-color .15s ease, background .15s ease;
}
.form__radio:hover,
.form__check:hover {
  border-color: var(--burgundy);
}
.form__radio input,
.form__check input {
  width: 18px;
  height: 18px;
  accent-color: var(--burgundy);
  margin: 0;
}
.form__radio input:checked + span,
.form__check input:checked + span {
  color: var(--burgundy);
  font-weight: 500;
}

.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form__submit-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.form__submit { font-size: .82rem; }
.form__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--ink-soft);
  flex: 1;
  min-width: 0;
}
.form__status {
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}
.form__status--success {
  background: var(--green);
  color: var(--cream);
  padding: 1.4rem 1.6rem;
  border-radius: 10px;
  text-align: center;
}
.form__status--success strong { color: var(--blush); font-weight: 500; }
.form__status--error {
  background: rgba(var(--burgundy-rgb),.08);
  color: var(--burgundy);
  border: 1px solid rgba(var(--burgundy-rgb),.25);
  padding: 1rem 1.2rem;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; gap: 0; }
}

/* =================== SERVICES SECTION SPACING TWEAKS =================== */
.services .section__head { margin-bottom: 3rem; }

/* =================== PRACTICES LANDSCAPE TONE =================== */
/* Slightly different practice card treatment when used on landscaping page,
   if extra emphasis is needed. Currently visually identical — placeholder. */
.practices__grid--landscape .practice svg { color: var(--green); }

