/* =========================================================
   Wildflower & Fern — Bath florist (demo)
   Soft editorial botanical. Cream/oat + sage + dusty-rose + terracotta.
   ========================================================= */

:root {
  /* Palette */
  --oat: #f6f1e7;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --ink: #2e2a24;
  --ink-soft: #574f44;
  --sage: #8a9a7b;
  --sage-deep: #5f6f52;
  --sage-tint: #e6ece0;
  --rose: #cd9a8e;
  --rose-deep: #b97c70;
  --rose-tint: #f3e4df;
  --terra: #c1684a;
  --terra-deep: #a9543a;
  --line: #e3dccd;

  --shadow-sm: 0 4px 14px rgba(46, 42, 36, .06);
  --shadow-md: 0 14px 40px rgba(46, 42, 36, .10);
  --shadow-lg: 0 28px 70px rgba(46, 42, 36, .16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 30px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: .2px;
  margin: 0 0 .4em;
}

h1 { font-size: clamp(2.8rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }

p { margin: 0 0 1rem; color: var(--ink-soft); }

a { color: var(--terra-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.4rem);
}

section { position: relative; }

.section-pad { padding-block: clamp(3.5rem, 9vw, 7rem); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--ink);
  color: var(--cream);
  padding: .7rem 1.1rem;
  border-radius: 10px;
  z-index: 2000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; text-decoration: none; }

/* ---------- Focus visibility ---------- */
:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 12px 26px rgba(193, 104, 74, .28);
}
.btn-primary:hover { background: var(--terra-deep); box-shadow: 0 18px 34px rgba(193, 104, 74, .34); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--sage);
}
.btn-ghost:hover { background: var(--sage-tint); border-color: var(--sage-deep); }

.btn-sage {
  background: var(--sage-deep);
  color: #fff;
}
.btn-sage:hover { background: var(--sage); }

.btn-block { width: 100%; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 248, 241, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .3px;
}
.brand:hover { text-decoration: none; }
.brand svg { flex: none; }
.brand .brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 2px;
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--terra);
  transition: width .3s var(--ease);
}
.nav-links a:hover { text-decoration: none; color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: .6rem; }

.cart-btn {
  position: relative;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: .55rem .8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--ink);
  font-weight: 600;
  font-size: .9rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.cart-btn:hover { border-color: var(--sage); background: var(--sage-tint); }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  background: var(--terra);
  color: #fff;
  border-radius: 100px;
  font-size: .72rem;
  line-height: 1;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer menu */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  background: var(--paper);
  z-index: 1100;
  transform: translateX(105%);
  transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg);
  padding: 5.5rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  border-left: 1px solid var(--line);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { text-decoration: none; color: var(--terra-deep); }
.mobile-menu .btn { margin-top: 1.4rem; }

.mobile-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: none;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 42, 36, .42);
  backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.overlay.show { opacity: 1; visibility: visible; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 78% 18%, var(--rose-tint) 0%, transparent 60%),
    radial-gradient(55% 55% at 12% 85%, var(--sage-tint) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream), var(--oat));
  z-index: -2;
}
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

.hero-copy h1 .accent { color: var(--terra); font-style: italic; }
.hero-copy p.lead {
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  font-size: .85rem;
  color: var(--ink-soft);
}
.hero-trust .stars { color: var(--terra); letter-spacing: 2px; }

/* Hero image — organic blob frame */
.hero-media {
  position: relative;
}
.blob-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 56% 44% 53% 47% / 47% 50% 50% 53%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper);
  animation: blobMorph 16s ease-in-out infinite;
}
.blob-frame img { width: 100%; height: 100%; object-fit: cover; }
@keyframes blobMorph {
  0%, 100% { border-radius: 56% 44% 53% 47% / 47% 50% 50% 53%; }
  50% { border-radius: 44% 56% 47% 53% / 53% 47% 53% 47%; }
}
@media (prefers-reduced-motion: reduce) {
  .blob-frame { animation: none; }
}

.hero-badge {
  position: absolute;
  bottom: -18px; left: -10px;
  background: var(--paper);
  border-radius: 16px;
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
}
.hero-badge .dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sage-tint);
  display: grid; place-items: center;
}

/* Floating petals */
.petals { position: absolute; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.petal {
  position: absolute;
  width: 26px; height: 26px;
  opacity: .55;
  animation: floatPetal 14s linear infinite;
}
.petal:nth-child(1) { left: 8%; top: 12%; animation-duration: 17s; }
.petal:nth-child(2) { left: 30%; top: 70%; animation-duration: 21s; animation-delay: -4s; }
.petal:nth-child(3) { left: 62%; top: 30%; animation-duration: 19s; animation-delay: -8s; }
.petal:nth-child(4) { left: 85%; top: 64%; animation-duration: 23s; animation-delay: -2s; }
.petal:nth-child(5) { left: 48%; top: 18%; animation-duration: 16s; animation-delay: -6s; }
@keyframes floatPetal {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .petal { animation: none; }
}

/* Marquee strip */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding-block: .9rem;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scrollX 28s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sage-deep);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee-track span::after { content: "❀"; color: var(--rose); font-style: normal; }
@keyframes scrollX { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =========================================================
   Section heading block
   ========================================================= */
.sec-head { max-width: 620px; margin-bottom: 2.6rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { font-size: 1.08rem; }

/* =========================================================
   Story / About
   ========================================================= */
.story-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 860px) {
  .story-grid { grid-template-columns: .9fr 1.1fr; }
}
.story-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.story-stats .num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--terra);
  line-height: 1;
}
.story-stats .lbl { font-size: .82rem; color: var(--ink-soft); }

/* =========================================================
   Collections / Gallery
   ========================================================= */
.collections { background: linear-gradient(180deg, var(--oat), var(--cream)); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.4rem;
}
.filter-btn {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--sage); color: var(--ink); }
.filter-btn.active {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: #fff;
}

.gallery {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery-item:nth-child(3n+1) { aspect-ratio: 4/5; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(46,42,36,.78));
  color: #fff;
  padding: 1.6rem 1rem .9rem;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.gallery-item figcaption small {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .85;
}
.gallery-item.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(28, 25, 20, .9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 760px;
  width: 100%;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.lightbox-inner img { width: 100%; max-height: 68vh; object-fit: cover; }
.lightbox-cap { padding: 1.1rem 1.4rem 1.4rem; }
.lightbox-cap h3 { margin-bottom: .2rem; }
.lightbox-cap p { margin: 0; font-size: .95rem; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: grid; place-items: center;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.lightbox-close { top: 12px; right: 12px; z-index: 2; }
.lightbox-nav { top: 30%; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-nav:hover, .lightbox-close:hover { background: #fff; }

/* =========================================================
   Shop
   ========================================================= */
.shop-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }

.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product:hover .product-media img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: .8rem; left: .8rem;
  background: var(--rose-tint);
  color: var(--rose-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 100px;
}
.product-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.product-body h3 { font-size: 1.35rem; margin: 0; }
.product-body .desc { font-size: .88rem; margin: 0; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; gap: .6rem; }
.price { font-family: var(--serif); font-size: 1.5rem; color: var(--terra); font-weight: 600; }

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(92vw, 420px);
  background: var(--paper);
  z-index: 1300;
  transform: translateX(105%);
  transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { margin: 0; font-size: 1.5rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.cart-empty svg { margin: 0 auto 1rem; }

.cart-line {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: .8rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img { width: 60px; height: 60px; border-radius: 12px; object-fit: cover; }
.cart-line .nm { font-weight: 600; font-size: .92rem; color: var(--ink); }
.cart-line .pr { font-size: .82rem; color: var(--ink-soft); }
.qty {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  margin-top: .35rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 2px;
}
.qty button {
  width: 26px; height: 26px;
  border: none;
  background: var(--sage-tint);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--ink);
}
.qty button:hover { background: var(--sage); color: #fff; }
.qty span { min-width: 22px; text-align: center; font-weight: 600; font-size: .9rem; }
.cart-line .ln-total { font-family: var(--serif); font-size: 1.1rem; color: var(--terra); font-weight: 600; }
.cart-line .remove {
  background: none; border: none; cursor: pointer;
  color: var(--ink-soft); font-size: .76rem; text-decoration: underline;
  padding: 0; margin-top: .3rem; display: block;
}
.cart-foot {
  padding: 1.3rem 1.4rem;
  border-top: 1px solid var(--line);
  background: var(--oat);
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1rem;
}
.cart-total-row .lbl { font-size: .9rem; color: var(--ink-soft); }
.cart-total-row .val { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.cart-note { font-size: .76rem; color: var(--ink-soft); text-align: center; margin: .8rem 0 0; }

.checkout-success {
  text-align: center;
  padding: 2.4rem 1.4rem;
}
.checkout-success .tick {
  width: 70px; height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--sage-tint);
  display: grid; place-items: center;
  animation: pop .5s var(--ease);
}
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* =========================================================
   Weddings / Feature band
   ========================================================= */
.weddings { background: var(--sage-deep); color: #f4f1e8; overflow: hidden; }
.weddings .container { position: relative; z-index: 1; }
.weddings h2, .weddings h3 { color: #fff; }
.weddings p { color: #e3e8db; }
.weddings .eyebrow { color: var(--rose-tint); }
.wed-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 860px) { .wed-grid { grid-template-columns: 1.1fr .9fr; } }
.wed-list { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: grid; gap: .9rem; }
.wed-list li { display: flex; gap: .8rem; align-items: flex-start; color: #e9eddf; font-size: .98rem; }
.wed-list svg { flex: none; margin-top: 3px; }
.wed-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/6;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,.12);
}
.wed-media img { width: 100%; height: 100%; object-fit: cover; }
.leaf-deco { position: absolute; opacity: .14; z-index: 0; }
.leaf-deco.tl { top: -30px; left: -40px; width: 220px; color: #fff; }
.leaf-deco.br { bottom: -40px; right: -30px; width: 260px; color: #fff; transform: rotate(180deg); }

/* =========================================================
   Delivery checker
   ========================================================= */
.delivery-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.postcode-form {
  display: flex;
  gap: .6rem;
  margin: 1.4rem 0 .6rem;
  flex-wrap: wrap;
}
.postcode-form input {
  flex: 1;
  min-width: 160px;
  padding: .9rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-size: 1rem;
  font-family: var(--sans);
  text-transform: uppercase;
  background: var(--cream);
  color: var(--ink);
}
.postcode-form input:focus { border-color: var(--sage); outline: none; }
.postcode-result {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: .6rem;
  justify-content: center;
}
.postcode-result.show { display: flex; }
.postcode-result.yes { background: var(--sage-tint); color: var(--sage-deep); }
.postcode-result.no { background: var(--rose-tint); color: var(--rose-deep); }
.postcode-areas { font-size: .82rem; color: var(--ink-soft); margin-top: 1rem; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials { background: linear-gradient(180deg, var(--cream), var(--oat)); }
.testi-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--terra); letter-spacing: 2px; font-size: 1rem; }
.testi blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--ink);
}
.testi .who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.testi .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi .who .nm { font-weight: 600; font-size: .92rem; color: var(--ink); }
.testi .who .loc { font-size: .78rem; color: var(--ink-soft); }

/* =========================================================
   Newsletter
   ========================================================= */
.newsletter {
  background: var(--rose-tint);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter h2 { color: var(--terra-deep); }
.news-form {
  display: flex;
  gap: .6rem;
  max-width: 460px;
  margin: 1.4rem auto 0;
  flex-wrap: wrap;
}
.news-form input {
  flex: 1;
  min-width: 180px;
  padding: .9rem 1.2rem;
  border: 1.5px solid rgba(185,124,112,.4);
  border-radius: 100px;
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
}
.news-form input:focus { outline: none; border-color: var(--terra); }
.field-error { color: var(--terra-deep); font-size: .82rem; margin-top: .5rem; min-height: 1rem; }
.news-success {
  margin-top: 1.1rem;
  font-weight: 600;
  color: var(--sage-deep);
  display: none;
}
.news-success.show { display: block; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.6rem);
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--sage-tint);
  display: grid; place-items: center;
}
.contact-list a { color: var(--ink); font-weight: 600; }
.contact-list .sub { font-size: .82rem; color: var(--ink-soft); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-top: 1.4rem;
}
.map-frame iframe { width: 100%; height: 240px; border: 0; display: block; }

.form-grid { display: grid; gap: .9rem; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .35rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--sage); }
.form-row { display: grid; gap: .9rem; }
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: var(--sage-tint);
  border-radius: 12px;
  color: var(--sage-deep);
  font-weight: 600;
}
.contact-success.show { display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: #cfc8ba;
  padding-block: clamp(3rem, 7vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 1rem;
}
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand .brand-sub { color: var(--rose); }
.site-footer p, .site-footer address { color: #b6ae9f; font-style: normal; font-size: .92rem; line-height: 1.8; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-links a { color: #cfc8ba; font-size: .92rem; }
.footer-links a:hover { color: #fff; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  color: #cfc8ba;
}
.socials a:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  color: #9c9486;
}
.footer-bottom a { color: var(--rose); font-weight: 600; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--ink);
  color: #fff;
  padding: .85rem 1.4rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  z-index: 1600;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease);
  display: flex; align-items: center; gap: .5rem;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Desktop nav ---------- */
@media (min-width: 940px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* Decorative divider */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; color: var(--sage); margin: 0 auto;
}
.divider::before, .divider::after {
  content: ""; height: 1px; width: 60px; background: var(--line);
}
