/* =========================================================================
   DOC'S PLASTIC AND GENERAL — STYLESHEET
   -------------------------------------------------------------------------
   HOW THIS FILE IS ORGANISED (look for these section titles):
     1. FONTS & COLOURS   <-- change brand colours here
     2. BASE / RESET
     3. LAYOUT HELPERS
     4. BUTTONS
     5. HEADER & NAVIGATION
     6. HERO
     7. WELCOME STRIP
     8. PRODUCTS & SERVICES
     9. ABOUT
    10. GALLERY
    11. REVIEWS
    12. VISIT US (hours / map / contact)
    13. FOOTER
    14. SCALLOP DIVIDERS (the wavy icing-style lines between sections)
    15. FLOATING WHATSAPP BUTTON
    16. LEGAL PAGES (privacy policy / refund policy)
    17. RESPONSIVE / MOBILE RULES
   You do not need to understand CSS to update text — text lives in the
   .html files. This file only controls colours, spacing and layout.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. FONTS & COLOURS
   To change the brand colours for the whole site, edit the values below.
   ------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --color-red: #c6362a;        /* primary red — buttons, headings, accents */
  --color-red-dark: #9c2b21;   /* darker red — hover states */
  --color-cream: #fbf3e7;      /* main warm background (like flour/dough) */
  --color-cream-alt: #f6e2d3;  /* secondary panel background */
  --color-white: #ffffff;
  --color-text: #3a2a20;       /* warm dark brown-black — body text */
  --color-text-soft: #6b5a4d;  /* muted brown for secondary text */
  --color-gold: #e8a63b;       /* icing-gold accent */
  --color-border: rgba(58, 42, 32, 0.12);

  /* Typography */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Figtree", "Segoe UI", Arial, sans-serif;

  /* Spacing / shape */
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 40px -20px rgba(58, 42, 32, 0.35);
  --max-width: 1180px;
}

/* -------------------------------------------------------------------------
   2. BASE / RESET
   ------------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-red);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.5rem); }

p { margin: 0 0 1em; }

a { color: var(--color-red); text-decoration: none; }
a:hover { color: var(--color-red-dark); }

/* Keyboard focus visibility — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* -------------------------------------------------------------------------
   3. LAYOUT HELPERS
   ------------------------------------------------------------------------- */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

/* Keeps anchored sections from hiding behind the sticky header when
   someone taps a menu link or gets a direct link to a section. */
section[id] { scroll-margin-top: 88px; }

.section--alt { background: var(--color-cream-alt); }
.section--red {
  background: var(--color-red);
  color: var(--color-white);
}
.section--red h2, .section--red h3 { color: var(--color-white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.section-head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p { color: var(--color-text-soft); font-size: 1.08rem; }

/* -------------------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background: var(--color-red-dark); color: var(--color-white); }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--color-white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); color: var(--color-white); }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-text);
}
.btn--gold:hover { background: #d6942f; color: var(--color-text); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* -------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-red);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  color: var(--color-red);
  font-size: 1.15rem;
}

.brand-text span {
  font-size: 0.78rem;
  color: var(--color-text-soft);
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.98rem;
}
.main-nav a:hover { color: var(--color-red); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--color-red);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* -------------------------------------------------------------------------
   6. HERO
   EDIT (photo): the hero photo is images/hero-photo.jpg. To swap it,
   replace that file (keep the same file name) or change the src on the
   <img> inside .hero-photo-bg in index.html.
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.hero-photo-bg {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.hero-photo-bg img {
  width: 100%;
  display: block;
  height: 62vh;
  min-height: 460px;
  max-height: 760px;
  object-fit: cover;
  object-position: center 72%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(45,16,12,0.05) 0%, rgba(45,16,12,0.5) 40%, rgba(28,9,7,0.94) 100%),
    linear-gradient(90deg, rgba(35,12,9,0.55) 0%, rgba(35,12,9,0.05) 55%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding-bottom: 56px;
}

.hero-eyebrow {
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 16px;
  display: inline-block;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}

.hero h1 { color: var(--color-white); margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.35); }

.hero .tagline {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 800;
  color: var(--color-gold);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  -webkit-text-stroke: 0.6px #2a1e17;
  text-stroke: 0.6px #2a1e17;
  text-shadow:
    -1px -1px 0 #2a1e17,
    1px -1px 0 #2a1e17,
    -1px 1px 0 #2a1e17,
    1px 1px 0 #2a1e17,
    0 3px 8px rgba(0,0,0,0.45);
}

.hero p.lead {
  font-size: 1.1rem;
  max-width: 54ch;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
}

/* -------------------------------------------------------------------------
   7. WELCOME STRIP
   ------------------------------------------------------------------------- */
.welcome {
  text-align: center;
  padding: 80px 0 40px;
}

.welcome .wrap { max-width: 780px; }

.welcome p.lead {
  font-size: 1.2rem;
  color: var(--color-text-soft);
}

/* -------------------------------------------------------------------------
   8. PRODUCTS & SERVICES
   NOTE: card widths are calculated as an exact fraction of the row
   (not "shrink to fit"), so the browser can't squeeze in an extra card
   per row. 4 per row on desktop, 2 on tablet, 1 on phones — see the
   matching override in the RESPONSIVE section near the bottom of this
   file if you ever want to change the column count.
   ------------------------------------------------------------------------- */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.product-grid .product-card {
  flex: 0 1 calc((100% - 78px) / 4); /* exactly 4 per row */
  max-width: 300px;
}

/* Short italic line used under a heading, e.g. "More Than Just
   Kitchenware" — a lighter-weight companion to a section's <h2>. */
.section-subheading {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-red);
  font-size: 1.15rem;
  margin: -8px 0 18px;
}

/* Indoor / Outdoor Catering shown as their own smaller, centered pair
   rather than inside the main category grid. */
.catering-split {
  margin-top: 72px;
}

/* The Catering section has catering-split as its first element, so the
   section's own top padding already provides spacing — no extra margin
   needed on top of that. */
#catering .catering-split {
  margin-top: 0;
}

.product-grid--pair {
  max-width: 720px;
  margin: 0 auto;
}

.product-grid--pair .product-card {
  flex: 0 1 calc((100% - 26px) / 2); /* exactly 2 per row */
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.product-card:hover { transform: translateY(-6px); }

.product-card .photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .body {
  padding: 18px 20px 22px;
}

.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin-bottom: 0;
}

.catering-banner {
  margin-top: 44px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 34px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.catering-banner p { margin: 0; color: var(--color-text-soft); max-width: 46ch; }
.catering-banner .btn { justify-content: center; text-align: center; }

/* -------------------------------------------------------------------------
   9. ABOUT
   ------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* The source photos are tall portrait shots straight from a phone;
   this crops them to a shorter, more balanced frame (about a third
   less tall) so they sit comfortably next to the text column. */
.about-photo img {
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Smaller variant — used for "More Than Just Kitchenware" so its photo
   matches the size of the Catering Services cards rather than the full
   half-column size used by About Us and Find Us Easily. */
.about-photo--small {
  max-width: 340px;
  margin-left: auto;
}
.about-photo--small img {
  aspect-ratio: 4 / 3;
  object-position: center;
}
@media (min-width: 901px) {
  #more-than-kitchenware .about-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}
@media (max-width: 900px) {
  .about-photo--small { max-width: 100%; margin-left: 0; }
}

.about-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--color-text);
}

.about-list li::before {
  content: "\2726";
  color: var(--color-gold);
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   10. GALLERY CAROUSEL ("From Our Shelves")
   A small auto-advancing, swipeable carousel. Photos live in
   images/carousel-1.jpg, carousel-2.jpg, carousel-3.jpg — add a 4th by
   copying a .carousel-slide block in index.html and a matching dot
   button, no CSS changes needed.
   ------------------------------------------------------------------------- */
.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 10px;
  margin: -4px -4px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 min(360px, 76%);
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.carousel-slide:hover { transform: translateY(-4px); }

.carousel-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  cursor: zoom-in;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.is-active {
  background: var(--color-red);
  transform: scale(1.25);
}

/* Legacy grid class, kept in case any page still references it */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.gallery-grid img {
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* -------------------------------------------------------------------------
   11. REVIEWS
   ------------------------------------------------------------------------- */
.review-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.stars {
  color: var(--color-gold);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 20px;
}

.review-author {
  font-weight: 700;
  color: var(--color-red);
}

/* -------------------------------------------------------------------------
   12. VISIT US (hours / map / contact)
   ------------------------------------------------------------------------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.info-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-bottom: 20px;
}

.info-card h3 {
  color: var(--color-gold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  font-size: 0.98rem;
}
.hours-table td:last-child { text-align: right; font-weight: 700; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid rgba(255,255,255,0.15);
}

.map-frame iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.directions-note {
  background: var(--color-gold);
  color: var(--color-text);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------------
   12b. CONTACT FORM
   ------------------------------------------------------------------------- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-red);
  background: var(--color-white);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  width: 100%;
  justify-content: center;
}
.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Spam-trap field: kept fully invisible and unreachable for real visitors */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 16px 0 0;
  font-weight: 600;
  min-height: 1.4em;
}
.form-status.is-success { color: #3d7a4d; }
.form-status.is-error { color: var(--color-red); }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
}

/* -------------------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: #2a1e17;
  color: rgba(255,255,255,0.82);
  padding: 60px 0 26px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--color-gold);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.footer-grid a {
  color: rgba(255,255,255,0.82);
  display: block;
  margin-bottom: 10px;
}
.footer-grid a:hover { color: var(--color-gold); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.footer-brand strong {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom nav a { color: rgba(255,255,255,0.6); margin: 0; display: inline; }
.footer-bottom nav a:hover { color: var(--color-gold); }

/* -------------------------------------------------------------------------
   14. SCALLOP DIVIDERS
   The wavy "piped icing" line used between sections — the site's signature
   decorative detail. Purely visual; no need to edit.
   ------------------------------------------------------------------------- */
.scallop {
  display: block;
  width: 100%;
  height: 26px;
  line-height: 0;
}
.scallop--cream { background: var(--color-cream); }
.scallop--alt { background: var(--color-cream-alt); }
.scallop--red { background: var(--color-red); }
.scallop--dark { background: #2a1e17; }

/* -------------------------------------------------------------------------
   15. FLOATING WHATSAPP BUTTON
   ------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.45);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-float svg { width: 28px; height: 28px; }

/* -------------------------------------------------------------------------
   16. LEGAL PAGES (privacy-policy.html / refund-returns-policy.html)
   ------------------------------------------------------------------------- */
.legal-page {
  padding: 60px 0 100px;
}
.legal-page .wrap { max-width: 800px; }
.legal-page h1 { font-size: 2.4rem; }
.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 2em;
}
.legal-page p, .legal-page li { color: var(--color-text-soft); }
.legal-page .updated {
  color: var(--color-text-soft);
  font-style: italic;
  margin-bottom: 2.5em;
}
.legal-page .back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-weight: 700;
}
.legal-note {
  background: var(--color-cream-alt);
  border-left: 4px solid var(--color-gold);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin: 24px 0;
}

/* -------------------------------------------------------------------------
   17. GENTLE SCROLL-IN ANIMATIONS
   Elements with class="reveal" fade and drift up slightly the first time
   they scroll into view (handled by js/script.js). If JavaScript doesn't
   run for any reason, everything stays fully visible by default — the
   "hidden until scrolled to" state only switches on once JS confirms it
   can animate it back in, so nothing is ever permanently invisible.
   ------------------------------------------------------------------------- */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Small stagger for grids of cards, so they don't all pop at once */
body.js-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.js-ready .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
body.js-ready .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
body.js-ready .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
body.js-ready .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
body.js-ready .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
body.js-ready .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
body.js-ready .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  body.js-ready .reveal,
  body.js-ready .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* -------------------------------------------------------------------------
   17b. LIGHTBOX (gallery + product photo click-to-enlarge)
   ------------------------------------------------------------------------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,12,8,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 60px 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox-overlay.is-open { display: flex; opacity: 1; }

.lightbox-figure {
  position: relative;
  max-width: 92vw;
  max-height: 84vh;
  text-align: center;
}
.lightbox-figure img {
  max-width: 92vw;
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
  display: block;
  margin: 0 auto;
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  margin-top: 14px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  transition: background 0.15s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,0.24); }

.lightbox-close { top: -56px; right: 0; }
.lightbox-nav--prev { left: -56px; top: 50%; transform: translateY(-50%); }
.lightbox-nav--next { right: -56px; top: 50%; transform: translateY(-50%); }

@media (max-width: 720px) {
  .lightbox-close { top: -50px; right: 0; width: 38px; height: 38px; }
  .lightbox-nav { top: auto; bottom: -56px; transform: none; width: 38px; height: 38px; }
  .lightbox-nav--prev { left: calc(50% - 50px); }
  .lightbox-nav--next { left: calc(50% + 12px); right: auto; }
}

/* -------------------------------------------------------------------------
   17c. FOCUS / HOVER POLISH
   ------------------------------------------------------------------------- */
.eyebrow, .hero-eyebrow { transition: none; }

.main-nav a {
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

/* -------------------------------------------------------------------------
   18. RESPONSIVE / MOBILE RULES
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid .product-card {
    flex-basis: calc((100% - 26px) / 2); /* 2 per row on tablets */
  }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero-photo-bg img { height: 86vh; min-height: 500px; object-position: center 30%; }
  .hero-content { padding-bottom: 40px; }
  .hero h1 { font-size: 2rem; }
  .hero .lead { font-size: 1rem; }
  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 10px 0; width: 100%; border-bottom: 1px dashed var(--color-border); }
  .nav-toggle { display: block; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .catering-banner { flex-direction: column; align-items: center; text-align: center; }
  .review-card { padding: 30px 22px; }
  .product-grid .product-card,
  .product-grid--pair .product-card {
    flex-basis: 100%; /* one per row on phones */
  }
}
