/* ============================================================
   SIENNE'S TABLE — v4 · Daise-inspired (cream + peach arches)
   ============================================================ */

:root {
  --cream: #F6EEE4;
  --cream-soft: #FAF4EB;
  --peach: #F5CFB8;
  --peach-soft: #FCE0CF;
  --peach-deep: #EDB193;
  --brown: #3C2E26;
  --brown-deep: #2A1F18;
  --ink: #2A2120;
  --ink-soft: #6B5F58;
  --hairline: rgba(42, 33, 32, 0.14);
  --orange: #D97859;

  --font-display: 'Fraunces', 'Bodoni 72', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1220px;
  --wrap-narrow: 680px;
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; }
blockquote { margin: 0; }
ul { list-style: none; padding: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Version toggle ---------- */
.version-toggle {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--brown-deep);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.version-toggle__label {
  opacity: 0.55; margin-right: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.68rem;
}
.version-toggle__btn {
  display: inline-block;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  color: var(--cream);
  border: 1px solid rgba(246, 238, 228, 0.3);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.version-toggle__btn:hover { border-color: rgba(246, 238, 228, 0.65); }
.version-toggle__btn.is-active {
  background: var(--cream); color: var(--brown-deep);
  border-color: var(--cream); font-weight: 600;
}
@media (max-width: 720px) {
  .version-toggle { flex-wrap: wrap; padding: 0.35rem 0.5rem; gap: 0.3rem; }
  .version-toggle__label { display: none; }
  .version-toggle__btn { font-size: 0.68rem; padding: 0.25rem 0.65rem; }
}

/* ---------- Type utilities ---------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h-display em {
  font-style: italic; font-weight: 500;
  color: var(--ink);
}
.h-display--sm {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
}
.h-kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95em;
  font-style: normal;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--pill { padding: 0.7rem 1.4rem; }
.btn--dark { background: var(--brown-deep); color: var(--cream); border-color: var(--brown-deep); }
.btn--dark:hover { background: var(--ink); border-color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--wide { width: 100%; justify-content: center; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s var(--ease);
}
.icon-btn:hover { background: var(--peach-soft); }
.icon-btn--dark { background: var(--brown-deep); color: var(--cream); width: 38px; height: 38px; }
.icon-btn--dark:hover { background: var(--ink); color: var(--cream); }

/* ---------- Brand ---------- */
.brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.brand em { font-style: normal; color: var(--orange); }
.brand__rule { display: none; }
.brand--light { color: var(--cream); }
.brand--light em { color: var(--peach-deep); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 34px;
  z-index: 60;
  background: rgba(246, 238, 228, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--hairline); }
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
}
.nav__left, .nav__right {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.nav__left { justify-self: start; }
.nav__right { justify-self: end; }
.nav__left a, .nav__right a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav__left a::after, .nav__right a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: -2px;
  height: 1.5px;
  background: var(--orange);
  transition: left 0.25s var(--ease), right 0.25s var(--ease);
}
.nav__left a:hover::after, .nav__right a:hover::after { left: 0; right: 0; }
.nav__brand { justify-self: center; text-align: center; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span { display: block; width: 22px; height: 1.8px; background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__peach {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 40vw, 560px);
  background: var(--peach-soft);
  border-radius: 0 0 999px 999px;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.hero__left, .hero__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
}
.hero__right { align-items: flex-end; text-align: right; }
.hero__right .feat-card { flex-direction: row-reverse; text-align: left; }

.hero__headline { margin-bottom: 1rem; }
.hero__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink);
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}
.hero__display {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.hero__display em {
  font-style: normal;
  color: var(--orange);
}
.hero__lede {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 22ch;
  margin-bottom: 0.5rem;
}
.hero__side-copy {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 22ch;
  margin-bottom: 0.5rem;
}

.hero__center {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero__photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  clip-path: ellipse(48% 50% at 50% 50%);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__dash {
  position: absolute;
  width: 120px; height: 120px;
  z-index: 3;
  pointer-events: none;
}
.hero__dash--tr { top: 26%; right: -10%; }
.hero__dash--br { bottom: 22%; left: -10%; }

/* Feature cards floating around hero */
.feat-card {
  background: var(--cream-soft);
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--hairline);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  max-width: 280px;
  box-shadow: 0 12px 32px -22px rgba(42, 33, 32, 0.25);
  transition: transform 0.3s var(--ease);
}
.feat-card:hover { transform: translateY(-2px); }
.feat-card--offset { transform: translateX(-6px); }
.hero__right .feat-card--offset { transform: translateX(6px); }
.feat-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--brown-deep);
  color: var(--cream);
  border-radius: 12px;
  flex-shrink: 0;
}
.feat-card__ico svg { width: 18px; height: 18px; }
.feat-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
  letter-spacing: -0.005em;
}
.feat-card p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.hero__cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: -4rem;
}
.hero__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hero__arrow:hover { background: var(--peach-soft); border-color: var(--peach); }

/* ============================================================
   ARCH (reusable peach backdrop for product photos)
   ============================================================ */
.arch {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80%;
  height: 88%;
  background: var(--peach-soft);
  border-radius: 999px 999px 24px 24px;
  z-index: 0;
}
.arch--deep { background: var(--peach); }

/* ============================================================
   FINEST SELECTION (product grid)
   ============================================================ */
.selection {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.selection__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.selection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: end;
}
.product {
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.product:hover { transform: translateY(-4px); }
.product:hover .product__cart { opacity: 1; transform: translate(-50%, 0); }
.product__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 999px 999px 18px 18px;
}
.product__stage--sm { aspect-ratio: 4 / 5; }
.product__stage img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  object-fit: cover;
  margin: 6% auto 0;
  border-radius: 999px 999px 14px 14px;
  box-shadow: 0 18px 40px -25px rgba(42, 33, 32, 0.4);
}
.product--feature .product__stage { aspect-ratio: 4 / 5.2; }
.product h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.product__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
}
.product__cart {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brown-deep);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 10px 24px -12px rgba(42, 33, 32, 0.6);
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  padding: var(--section-y) 0;
  background: var(--cream);
  border-top: 1px solid var(--hairline);
}
.testimonial__wrap {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 1040px;
  margin: 0 auto;
}
.testimonial__arrow { flex-shrink: 0; }
.testimonial__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 320px;
  margin: 0;
}
.testimonial__photo img {
  position: relative;
  z-index: 1;
  width: 88%; height: 88%;
  object-fit: cover;
  margin: 6% auto 0;
  border-radius: 999px 999px 18px 18px;
  box-shadow: 0 22px 48px -28px rgba(42, 33, 32, 0.4);
}
.testimonial__quote { text-align: center; }
.testimonial__quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
}
.testimonial__quote footer {
  font-family: var(--font-sans);
}
.testimonial__quote cite {
  display: block;
  font-weight: 700;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.testimonial__quote span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ============================================================
   VARIETY (menu explorer)
   ============================================================ */
.variety {
  padding: var(--section-y) 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--hairline);
}
.variety__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.variety__side .h-display { margin-bottom: 1.5rem; }
.variety__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.variety__list a {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--ink-soft);
  padding: 0.4rem 0;
  letter-spacing: -0.015em;
  position: relative;
  opacity: 0.6;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.variety__list a:hover { color: var(--ink); opacity: 0.9; }
.variety__list a.is-active {
  color: var(--ink);
  opacity: 1;
  font-weight: 600;
}
.variety__list a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 30%;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
}

.variety__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  justify-self: center;
  margin: 0;
}
.variety__photo img {
  position: relative;
  z-index: 1;
  width: 88%; height: 88%;
  object-fit: cover;
  margin: 6% auto 0;
  border-radius: 999px 999px 18px 18px;
  box-shadow: 0 22px 50px -30px rgba(42, 33, 32, 0.4);
}

.variety__from {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
}
.variety__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.variety__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  font-family: var(--font-sans);
}
.variety__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 30ch;
}
.variety__actions { display: flex; align-items: center; gap: 0.75rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.about__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 440px;
  margin: 0;
  justify-self: center;
}
.about__photo img {
  position: relative;
  z-index: 1;
  width: 88%; height: 88%;
  object-fit: cover;
  margin: 6% auto 0;
  border-radius: 999px 999px 20px 20px;
  box-shadow: 0 22px 50px -30px rgba(42, 33, 32, 0.4);
}
.about__text .h-display { margin-bottom: 1.5rem; }
.about__text p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 52ch;
}
.about__text p:last-of-type { margin-bottom: 2rem; }

/* ============================================================
   BIG CTA
   ============================================================ */
.big-cta {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream-soft);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.big-cta__ghost {
  position: absolute;
  right: 4%;
  bottom: -10%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(12rem, 24vw, 22rem);
  color: var(--peach-soft);
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
}
.big-cta__ghost em { font-style: normal; color: var(--peach); }
.big-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.big-cta .h-display { margin-bottom: 1.25rem; }
.big-cta p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ============================================================
   INQUIRE
   ============================================================ */
.inquire {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.inquire__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.inquire__head .h-display { margin-bottom: 1rem; }
.inquire__head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 42ch;
  margin: 0 auto;
}

.letter {
  display: grid;
  gap: 1.25rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--cream-soft);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 24px;
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 60px -40px rgba(42, 33, 32, 0.3);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--ink);
  outline: none;
  border-radius: 12px;
  transition: border-color 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 2.25rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--orange) 50%),
    linear-gradient(135deg, var(--orange) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); }
.form__status {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange);
  min-height: 1.4em;
}
.form__status.error { color: #B0402C; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-v4 {
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
  background: var(--brown-deep);
  color: var(--cream);
}
.footer-v4__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(246, 238, 228, 0.15);
}
.footer-v4__brand p {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 26ch;
}
.footer-v4__col h4,
.footer-v4__newsletter h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer-v4__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-v4__col a {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.footer-v4__col a:hover { opacity: 1; color: var(--peach-deep); }
.footer-v4__newsletter p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 1rem;
  max-width: 28ch;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  background: rgba(246, 238, 228, 0.08);
  border: 1px solid rgba(246, 238, 228, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  align-items: center;
}
.newsletter input {
  background: transparent;
  border: 0;
  color: var(--cream);
  font-size: 0.88rem;
  outline: none;
  padding: 0.5rem 0;
}
.newsletter input::placeholder { color: rgba(246, 238, 228, 0.5); }
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--peach);
  color: var(--brown-deep);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.newsletter button:hover { background: var(--peach-deep); }

.footer-v4__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); }
  .hero__right { display: none; }
  .hero__peach { left: auto; right: -10%; transform: none; width: 480px; }
  .selection__grid { grid-template-columns: repeat(2, 1fr); }
  .variety__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .variety__side { grid-column: 1 / -1; text-align: center; }
  .variety__list { align-items: center; }
  .footer-v4__inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-v4__brand { grid-column: 1 / -1; margin-bottom: 1rem; }
  .footer-v4__newsletter { grid-column: 1 / -1; margin-top: 1rem; max-width: 420px; }
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__left { padding-top: 1rem; }
  .hero__peach { display: none; }
  .hero__display { font-size: clamp(3rem, 14vw, 5rem); }
  .hero__center { min-height: 400px; order: -1; }
  .hero__photo { max-width: 320px; }
  .hero__dash { display: none; }
  .testimonial__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial__photo { justify-self: center; max-width: 260px; }
  .testimonial__arrow:first-of-type { grid-column: 1; grid-row: 4; justify-self: start; }
  .testimonial__arrow:last-of-type { grid-column: 1; grid-row: 4; justify-self: end; }
  .about__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about__photo { max-width: 360px; }
  .variety__grid { grid-template-columns: 1fr; }
  .variety__photo { max-width: 320px; }
  .selection__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

@media (max-width: 680px) {
  .nav__left a:not(:first-child) { display: none; }
  .nav__right a { display: none; }
  .nav__toggle { display: flex; }
  .field-row { grid-template-columns: 1fr; }
  .footer-v4__inner { grid-template-columns: 1fr 1fr; }
  .selection__head { flex-direction: column; align-items: flex-start; }
  .selection__grid { grid-template-columns: 1fr 1fr; }
  .big-cta__ghost { font-size: clamp(8rem, 40vw, 14rem); right: -15%; }
}

@media (max-width: 480px) {
  .selection__grid { grid-template-columns: 1fr; }
  .hero__cta { margin-top: -2rem; }
  .footer-v4__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
