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

:root {
  --cream: #F6F1E7;
  --cream-soft: #EFE7D5;
  --ivory: #FBF7EE;
  --green: #2F4A2E;
  --green-deep: #243C24;
  --blush: #F4CFC3;
  --blush-soft: #FBE3D9;
  --burgundy: #6E1F35;
  --burgundy-deep: #5A1729;
  --gold: #BC974B;
  --gold-soft: #D9C273;
  --ink: #2A2622;
  --ink-soft: #5C544C;
  --paper: #FFFDF8;

  --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-pad: clamp(4rem, 9vw, 7.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(110,31,53,.025) 1px, transparent 1px),
                    radial-gradient(rgba(47,74,46,.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(246,241,231,.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(47,74,46,.6);
}
.btn:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  opacity: 1;
  box-shadow: 0 12px 24px -14px rgba(47,74,46,.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(246,241,231,.55);
  color: var(--cream);
}
.btn--ghost:hover { background: rgba(246,241,231,.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); }

/* =================== NAV =================== */

.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 1.5rem 0;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--cream);
}
.nav__mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  box-shadow: 0 0 0 1px rgba(246,241,231,.6), 0 8px 18px -10px rgba(0,0,0,.5);
}
.nav__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1;
}
.nav__sub {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 2rem;
  color: var(--cream);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav__links a { position: relative; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--cream);
  transition: width .3s ease;
}
.nav__links a:hover::after { width: 100%; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__sub { display: none; }
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  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;
  background:
    radial-gradient(ellipse at center, rgba(20,32,20,.55), rgba(15,24,15,.88) 90%),
    linear-gradient(180deg, rgba(15,24,15,.7) 0%, rgba(60,18,30,.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 var(--gutter);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  line-height: 1.02;
  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(244,207,195,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: var(--burgundy);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid rgba(246,241,231,.15);
  border-bottom: 1px solid rgba(246,241,231,.15);
  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(--blush);
}
.marquee__track span:nth-child(even) {
  color: var(--gold-soft);
  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); }

/* 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(110,31,53,.04), 0 30px 50px -40px rgba(47,74,46,.35);
  transition: transform .5s ease, box-shadow .5s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(110,31,53,.05);
}
.card-bouquet:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(110,31,53,.04), 0 40px 60px -38px rgba(47,74,46,.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(110,31,53,.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(246,241,231,.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(246,241,231,.15);
  font-family: var(--serif);
}
.blooming__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(246,241,231,.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(47,74,46,.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;
  transform: rotate(-12deg);
  box-shadow: 0 18px 30px -16px rgba(110,31,53,.55);
  animation: stampSpin 30s linear infinite;
}
@keyframes stampSpin {
  from { transform: rotate(-12deg); }
  to   { transform: rotate(348deg); }
}

.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(47,74,46,.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(110,31,53,.2), transparent);
}
.forecast__col {
  background: var(--paper);
  border: 1px solid rgba(47,74,46,.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(110,31,53,.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(244,207,195,.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(246,241,231,.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(110,31,53,.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(110,31,53,.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(47,74,46,.08);
  border-radius: 12px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.event:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 40px -25px rgba(47,74,46,.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(110,31,53,.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(110,31,53,.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(246,241,231,.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(246,241,231,.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(246,241,231,.85);
  margin-bottom: .55rem;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: .85rem;
  color: rgba(246,241,231,.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; }
}
