/* =====================================================
   Coral's Cottage
   small batch baking + everyday life
   ===================================================== */

:root {
  --cream:        #f6efe2;
  --cream-deep:   #ede2cc;
  --cream-dark:   #e3d4b6;
  --ink:          #3d2e22;
  --ink-soft:     #5b4837;
  --sage:         #7d8b5f;
  --sage-light:   #a8b884;
  --sage-deep:    #5a6845;
  --rose:         #d49a8a;
  --rose-deep:    #b87a6a;
  --terracotta:   #c87f5a;
  --gold:         #c9a062;
  --paper-shadow: rgba(61, 46, 34, 0.08);

  --font-script:  'Italianno', cursive;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-caps:    'Cormorant SC', Georgia, serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ===== GRAIN ===== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.24 0 0 0 0 0.18 0 0 0 0 0.13 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 226, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(61, 46, 34, 0.08);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.nav-brand-text {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--ink);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-family: var(--font-caps);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a:hover { color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow,
.section-eyebrow {
  font-family: var(--font-caps);
  font-size: 0.88rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.section-lede {
  font-size: 1.25rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
}

.amp {
  font-family: var(--font-script);
  font-size: 1.4em;
  color: var(--rose-deep);
  vertical-align: -0.05em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 4px 16px var(--paper-shadow);
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(61, 46, 34, 0.18);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-large { padding: 1.3rem 3.25rem; font-size: 1.05rem; }

.btn-card {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  margin-top: 1.25rem;
  cursor: pointer;
}
.btn-card:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 1.5rem;
  background:
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(212, 154, 138, 0.12) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title { margin: 0.5rem 0 1rem; line-height: 0.85; }
.hero-title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(5rem, 14vw, 11rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 0.95;
}
.hero-title-script-2 { margin-top: -0.15em; margin-left: 0.3em; }

.hero-tag {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--sage-deep);
  margin: 0.5rem 0 2rem;
}
.hero-tag .amp { margin: 0 0.15em; }

.hero-sub {
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-sprig { position: absolute; width: 240px; height: auto; opacity: 0.55; bottom: -20px; }
.hero-sprig-left { left: -40px; transform: rotate(-15deg); }
.hero-sprig-right { right: -40px; transform: rotate(15deg) scaleX(-1); }

/* ===== DIVIDER ===== */
.divider { display: flex; justify-content: center; padding: 2rem 0; }
.divider svg { width: 200px; height: auto; }

/* ===== ABOUT ===== */
.about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap { position: relative; padding: 1.25rem; }
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(61, 46, 34, 0.18);
}
.about-image-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--sage);
  transform: translate(20px, 20px);
  border-radius: 4px;
  z-index: 1;
}

.about-text p {
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.7;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--font-script);
  font-size: 4rem;
  float: left;
  line-height: 0.85;
  margin-right: 0.5rem;
  margin-top: 0.4rem;
  color: var(--rose-deep);
}
.about-text p.signature,
.signature {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--ink);
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  line-height: 1;
}

/* ===== MENU ===== */
.menu {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem;
}
.menu-header { text-align: center; margin-bottom: 4rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.menu-card {
  background: var(--cream-deep);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(125, 139, 95, 0.25);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(61, 46, 34, 0.18);
}
.menu-card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-dark);
}
.menu-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.menu-card:hover .menu-card-image img { transform: scale(1.05); }
.menu-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card h3 {
  font-family: var(--font-script);
  font-size: 2.7rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.menu-card .price {
  font-family: var(--font-caps);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.menu-card-body > p:not(.price) {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.6;
  flex: 1;
}
.menu-card .btn-card { align-self: flex-start; }

/* ===== ORDER FORM ===== */
.order {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem;
}
.order-card {
  background: var(--cream-deep);
  text-align: center;
  padding: 4rem 2.5rem;
  border-radius: 6px;
  position: relative;
  border: 1px solid rgba(125, 139, 95, 0.25);
}
.order-card::before, .order-card::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border: 1.5px solid var(--sage);
}
.order-card::before {
  top: 12px; left: 12px;
  border-right: none; border-bottom: none;
}
.order-card::after {
  bottom: 12px; right: 12px;
  border-left: none; border-top: none;
}
.order-lede {
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin: 0 auto 2.5rem;
  max-width: 520px;
  font-style: italic;
}

.order-form { text-align: left; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 4px;
  border: 1px solid rgba(61, 46, 34, 0.25);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-fieldset {
  border: none;
  margin: 1.75rem 0;
  padding: 0;
}
.form-fieldset legend {
  font-family: var(--font-caps);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 1.1rem;
  padding: 0;
}

/* Quantity rows */
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(61, 46, 34, 0.18);
  gap: 1rem;
}
.qty-row:last-child { border-bottom: none; }
.qty-label {
  flex: 1;
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 500;
}
.qty-price {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: var(--font-caps);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(61, 46, 34, 0.3);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1;
}
.qty-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.qty-control input[type="number"] {
  width: 56px;
  text-align: center;
  padding: 0.5rem 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  border-radius: 4px;
  border: 1px solid rgba(61, 46, 34, 0.25);
  background: var(--cream);
  color: var(--ink);
  font-weight: 500;
  -moz-appearance: textfield;
}
.qty-control input[type="number"]::-webkit-outer-spin-button,
.qty-control input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.qty-text {
  width: 130px;
  text-align: center;
  padding: 0.5rem 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  border-radius: 4px;
  border: 1px solid rgba(61, 46, 34, 0.25);
  background: var(--cream);
  color: var(--ink);
}

.order-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid rgba(125, 139, 95, 0.3);
}
.order-total-label {
  font-family: var(--font-caps);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.order-total-amount {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1;
}

.radio {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
}
.radio input[type="radio"] {
  width: 20px; height: 20px;
  accent-color: var(--terracotta);
  cursor: pointer;
}
.radio em {
  font-style: normal;
  font-family: var(--font-caps);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-left: 0.5rem;
  font-weight: 600;
}

.payment-hint {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-soft);
  padding: 0.6rem 0.9rem;
  background: rgba(201, 160, 98, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.payment-hint strong {
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.order-form .btn-primary {
  margin-top: 1rem;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font-caps);
}

.form-note {
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
  min-height: 1.5em;
  font-size: 1.05rem;
}
.form-note.success { color: var(--sage-deep); }
.form-note.error   { color: var(--rose-deep); }

/* ===== DELIVERY BANNER ===== */
.delivery {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-md) 1.5rem var(--space-lg);
}
.delivery-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 3rem;
  background: var(--cream-deep);
  border-radius: 6px;
  border-left: 4px solid var(--sage);
  position: relative;
}
.delivery-icon {
  flex-shrink: 0;
  width: 80px;
  color: var(--sage-deep);
}
.delivery-icon svg { width: 100%; height: auto; }
.delivery-text { flex: 1; }
.delivery-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.delivery-text p {
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.6;
}
.delivery-text strong { color: var(--ink); font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem;
}
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  padding: 2rem;
  background: var(--cream);
  border-left: 2px solid var(--rose);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 12px;
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--rose);
  line-height: 1;
  opacity: 0.5;
}
.testimonial blockquote {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.testimonial figcaption {
  font-family: var(--font-caps);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

/* ===== EVENTS / CATERING ===== */
.events {
  background:
    linear-gradient(180deg, rgba(125, 139, 95, 0.06) 0%, rgba(125, 139, 95, 0.12) 100%),
    var(--cream);
  padding: var(--space-lg) 1.5rem;
  position: relative;
}
.events-inner {
  max-width: 760px;
  margin: 0 auto;
}
.events-header {
  text-align: center;
  margin-bottom: 3rem;
}
.events-form {
  background: var(--cream);
  padding: 3rem 2.5rem;
  border-radius: 6px;
  border: 1px solid rgba(125, 139, 95, 0.3);
  box-shadow: 0 8px 30px rgba(61, 46, 34, 0.06);
}
.events-form .btn-primary {
  margin-top: 1rem;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font-caps);
}

/* ===== WHOLESALE / VENDOR PARTNERSHIPS ===== */
.wholesale {
  background:
    linear-gradient(180deg, var(--cream-deep) 0%, var(--cream-dark) 100%);
  padding: var(--space-lg) 1.5rem;
  position: relative;
  overflow: hidden;
}
.wholesale::before {
  content: '';
  position: absolute;
  top: 0; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(125, 139, 95, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.wholesale::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212, 154, 138, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.wholesale-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.wholesale-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4.5rem;
  align-items: start;
}
.wholesale-text { padding-top: 0.5rem; overflow-wrap: break-word; word-wrap: break-word; }
.wholesale-lede {
  font-size: 1.3rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}
.wholesale-text p:not(.wholesale-lede):not(.section-eyebrow) {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.wholesale-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wholesale-list li {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  padding: 0.7rem 0 0.7rem 1.75rem;
  border-bottom: 1px dashed rgba(61, 46, 34, 0.18);
  position: relative;
}
.wholesale-list li:last-child { border-bottom: none; }
.wholesale-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
}

.wholesale-form {
  background: var(--cream);
  padding: 2.5rem 2.25rem;
  border-radius: 6px;
  border: 1px solid rgba(61, 46, 34, 0.15);
  box-shadow: 0 12px 40px rgba(61, 46, 34, 0.1);
}
.wholesale-form .btn-primary {
  margin-top: 0.5rem;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font-caps);
}

/* ===== STAY (email signup) ===== */
.stay {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-xl) 1.5rem;
  position: relative;
  overflow: hidden;
}
.stay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212, 154, 138, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.stay-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.stay .section-eyebrow { color: var(--rose); }
.stay .section-title { color: var(--cream); }
.stay-lede {
  font-size: 1.25rem;
  color: rgba(246, 239, 226, 0.82);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 460px;
  margin: 0 auto;
}
.signup-form input {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  padding: 1.1rem 1.35rem;
  border-radius: 6px;
  border: 1px solid rgba(246, 239, 226, 0.22);
  background: rgba(246, 239, 226, 0.06);
  color: var(--cream);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.signup-form input::placeholder { color: rgba(246, 239, 226, 0.45); font-style: italic; }
.signup-form input:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(246, 239, 226, 0.1);
}
.signup-form .btn-primary {
  background: var(--cream);
  color: var(--ink);
  border: none;
  cursor: pointer;
}
.signup-form .btn-primary:hover { background: var(--rose); color: var(--cream); }
.signup-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  font-style: italic;
  min-height: 1.5em;
}
.signup-note.success { color: #b8d4a0; }
.signup-note.error   { color: var(--rose); }

/* ===== FOOTER ===== */
.footer {
  background: var(--cream-deep);
  color: var(--ink-soft);
  padding: 4rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(61, 46, 34, 0.12);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.footer-brand img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.footer-tag {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--sage-deep);
  line-height: 1.1;
  max-width: 200px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-caps);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col p { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.6; }
.footer-col a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-col a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.social-list li { margin-bottom: 0.55rem; font-size: 1.05rem; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Highlight when order section is targeted from a card click */
.order-card.highlight {
  animation: pulseHighlight 1.4s ease;
}
@keyframes pulseHighlight {
  0%   { box-shadow: 0 0 0 0 rgba(212, 154, 138, 0.6); }
  100% { box-shadow: 0 0 0 24px rgba(212, 154, 138, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-tag { text-align: center; }
  .delivery-inner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .wholesale-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .nav { padding: 0.85rem 1.25rem; }
  .nav-brand img { width: 44px; height: 44px; }
  .nav-brand-text { font-size: 1.85rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(61, 46, 34, 0.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

  .hero { min-height: 80vh; padding: 3rem 1.25rem; }
  .hero-title-script { font-size: clamp(4rem, 22vw, 7rem); }
  .hero-sprig { width: 160px; opacity: 0.4; }

  .menu-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-card-body { padding: 1.5rem; }
  .menu-card h3 { font-size: 2rem; }

  .footer-cols { grid-template-columns: 1fr; gap: 2rem; text-align: center; }

  .order-card { padding: 3rem 1.25rem; }

  /* Wholesale mobile layout */
  .wholesale { padding: 3rem 1.25rem; }
  .wholesale-grid { gap: 2rem; }
  .wholesale-form { padding: 1.75rem 1.25rem; }
  .wholesale-text .section-title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .wholesale-lede { font-size: 1.15rem; }
  .wholesale-text p:not(.wholesale-lede):not(.section-eyebrow) { font-size: 1.05rem; }
  .wholesale-list li { font-size: 1.02rem; padding: 0.6rem 0 0.6rem 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .qty-row { flex-direction: row; align-items: center; }
  .qty-label { font-size: 0.95rem; }
  .qty-control input[type="number"] { width: 44px; }
  .qty-text { width: 90px; }

  .delivery-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .btn { padding: 0.9rem 1.75rem; }

  .qty-row { gap: 0.5rem; }
  .qty-btn { width: 28px; height: 28px; }
  .qty-control input[type="number"] { width: 38px; padding: 0.35rem 0.2rem; font-size: 0.95rem; }
}

@media print {
  .grain, .site-header, .hero-decor { display: none; }
  body { background: white; color: black; }
}
