/* =========================================================
   Delicious Designss — dark & luxe
   Palette: black + warm white + champagne gold + berry
   ========================================================= */

:root {
  --bg:         #0C0A09;   /* page black */
  --bg-2:       #131010;   /* alternating section */
  --panel:      #1A1512;   /* cards */
  --panel-2:    #221C18;   /* inputs / lifted */
  --white:      #FFFFFF;
  --text:       #F6F1E8;   /* warm white */
  --muted:      #ABA093;   /* soft warm gray */
  --gold:       #CBA85B;
  --gold-light: #E6D2A0;
  --berry:      #D75C72;
  --berry-hi:   #E2708A;   /* hover (lighter on dark) */
  --sage:       #8FA06A;
  --line:       rgba(255, 255, 255, 0.12);
  --line-soft:  rgba(255, 255, 255, 0.07);
  --shadow-md:  0 18px 50px rgba(0, 0, 0, 0.55);

  --serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:   "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --script: "Parisienne", "Brush Script MT", cursive;

  --maxw: 1140px;
  --radius: 14px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  /* watermelon-slice cursor */
  cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSczMicgaGVpZ2h0PSczMicgdmlld0JveD0nMCAwIDMyIDMyJz48cGF0aCBkPSdNMCAwIEwzMCAwIEEzMCAzMCAwIDAgMSAwIDMwIFonIGZpbGw9JyMzYTdkMmMnLz48cGF0aCBkPSdNMCAwIEwyNyAwIEEyNyAyNyAwIDAgMSAwIDI3IFonIGZpbGw9JyNmNGYxZTYnLz48cGF0aCBkPSdNMCAwIEwyNCAwIEEyNCAyNCAwIDAgMSAwIDI0IFonIGZpbGw9JyNlMjNiNGUnLz48ZyBmaWxsPScjMjQxZjFjJz48ZWxsaXBzZSBjeD0nMTUnIGN5PSc2JyByeD0nMS4xJyByeT0nMS45Jy8+PGVsbGlwc2UgY3g9JzYnIGN5PScxNScgcng9JzEuMScgcnk9JzEuOScvPjxlbGxpcHNlIGN4PScxMy41JyBjeT0nMTMuNScgcng9JzEuMScgcnk9JzEuOScvPjxlbGxpcHNlIGN4PScxOS41JyBjeT0nOS41JyByeD0nMS4xJyByeT0nMS45Jy8+PGVsbGlwc2UgY3g9JzkuNScgY3k9JzE5LjUnIHJ4PScxLjEnIHJ5PScxLjknLz48L2c+PC9zdmc+Cg==") 2 2, auto;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.4em;
  letter-spacing: 0.2px;
  color: var(--text);
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #1a1206;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--berry);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(215, 92, 114, 0.30);
}
.btn-primary:hover { background: var(--berry-hi); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: var(--white); color: var(--bg); border-color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.7), rgba(12, 10, 9, 0));
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 132px;
}
/* black logo art -> render white on dark bg */
.brand { display: flex; align-items: center; }
.brand picture { display: flex; align-items: center; }
.brand-logo { display: block; height: 104px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-logo { object-fit: contain; }

.nav { display: flex; align-items: center; }
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
  position: relative;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--berry);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--gold); color: #1a1206 !important; }

/* Instagram + TikTok logos in the nav */
.nav-social { display: flex; align-items: center; gap: 10px; justify-content: center; }
.nav-menu .nav-social a {
  width: 32px; height: 32px; padding: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  transition: transform .2s ease;
}
.nav-menu .nav-social a::after { content: none; }
.nav-menu .nav-social a:hover { transform: translateY(-2px); color: #fff; }
.nav-social .ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.nav-social .tt { background: #000; border: 1px solid rgba(255, 255, 255, 0.2); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Section shells ---------- */
.section { padding: 92px 0; }
.section-head.center { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 14px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin: 0 0 0.3em;
}
.section-title.light { color: var(--text); }
.section-lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  min-height: 90vh;
  margin-top: -132px;        /* slide up behind the sticky header */
  padding: 150px 0 70px;     /* clear the header */
  overflow: hidden;
  background: var(--bg);
}
.hero-inner { position: static; }
.hero-text { position: relative; z-index: 2; max-width: 600px; }

/* Hero background video */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.9) 0%, rgba(12, 10, 9, 0.62) 42%, rgba(12, 10, 9, 0.3) 100%),
    linear-gradient(180deg, rgba(12, 10, 9, 0.25), rgba(12, 10, 9, 0.55));
}
.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  display: block;
}
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.7rem, 7vw, 5.3rem);
  line-height: 1.05;
  margin-bottom: 0.35em;
}
.hero-title .script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--berry);
  font-size: 1.1em;
  display: inline-block;
  line-height: 1.2;
  padding-bottom: 0.08em;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  list-style: none;
  display: flex;
  gap: 14px 34px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0; padding: 0;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-trust li { position: relative; padding-left: 22px; }
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

/* ---------- About ---------- */
.about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

/* About photo */
.about-photo { margin: 0; }
.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 38%, var(--panel-2), var(--bg));
  display: grid;
  place-items: center;
}
.photo-frame .about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-frame figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 20px 16px;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}
.ph-mark {
  width: 56%;
  max-width: 200px;
  opacity: 0.16;
  filter: brightness(0) invert(1);
}

.about-perfect {
  margin: 26px 0 28px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
}
.about-perfect span {
  display: block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.about-copy p { color: var(--muted); font-size: 1.08rem; }
.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.about-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.98rem;
  color: var(--text);
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 12px; height: 12px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}
.about-card {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: center;
}
.about-card h3 {
  font-size: 1.6rem;
  color: var(--gold);
}
.about-card-list {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 26px;
  line-height: 1.9;
}

/* ---------- Menu / Pricing ---------- */
.menu { background: var(--bg); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.menu-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255,255,255,0.18); }
.menu-card.featured {
  border-color: var(--gold);
  box-shadow: 0 16px 50px rgba(203, 168, 91, 0.18);
}
.menu-card.wide { grid-column: 1 / -1; }
.menu-badge {
  position: absolute;
  top: -13px;
  left: 34px;
  background: var(--gold);
  color: #1a1206;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}
.menu-card-title { font-size: 1.7rem; margin-bottom: 0.15em; }
.menu-card-sub { color: var(--muted); font-size: 0.98rem; margin-bottom: 22px; }

.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
}
.price-list .pl-name { color: var(--text); }
.price-list .pl-name em { color: var(--muted); font-style: italic; font-size: 0.9em; }
.price-list .pl-dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.price-list .pl-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.price-list.small .pl-price { font-size: 1.05rem; color: var(--text); }

.menu-addons {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.addons-label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.menu-note {
  margin-top: 16px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.08rem;
}
.menu-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 36px;
}
.menu-disclaimer a { color: var(--gold-light); border-bottom: 1px solid currentColor; }

/* ---------- Seasonal ---------- */
.seasonal { background: var(--bg-2); }
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.season-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: linear-gradient(170deg, var(--panel), var(--bg));
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.season-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.season-card h3 {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5em;
  color: var(--gold);
}
.season-card h3 span {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--berry);
  margin-top: 6px;
}
.season-fruit { color: var(--muted); font-size: 0.96rem; margin: 0; }
.season-note {
  text-align: center;
  margin-top: 34px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  aspect-ratio: 1 / 1;
  gap: 14px;
  margin-bottom: 48px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 40%, var(--panel-2), var(--bg));
  display: grid;
  place-items: center;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img:not(.ph-mark) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img:not(.ph-mark) { transform: scale(1.05); }
.gallery-item .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.gallery-item .ph-mark { width: 50%; max-width: 130px; }
.gallery-item:first-child .ph-mark { max-width: 220px; }

.gallery-item img:not(.ph-mark) { cursor: pointer; }
.gallery-more { text-align: center; margin: 0 0 52px; }

.gallery-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 22px;
  justify-content: center;
}

/* ---------- Gallery page (gallery.html) ---------- */
.page-hero {
  text-align: center;
  padding: 72px 0 8px;
  background:
    radial-gradient(70% 70% at 50% -10%, rgba(203, 168, 91, 0.16), transparent 62%),
    var(--bg);
}
.page-gallery { padding-top: 48px; }
.masonry {
  column-count: 3;
  column-gap: 16px;
}
.masonry figure {
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.masonry img {
  width: 100%;
  display: block;
  cursor: pointer;
  transition: transform .5s ease, opacity .3s ease;
}
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption {
  padding: 13px 16px 15px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
}
.back-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.back-link:hover { color: var(--gold-light); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  background: rgba(6, 5, 4, 0.92);
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}
.lightbox-cap {
  position: absolute;
  bottom: 22px;
  left: 0; right: 0;
  text-align: center;
  padding: 0 24px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream, #f6f1e8);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--text);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.18); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav.prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 16px; top: 50%; transform: translateY(-50%); }
.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.social-icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--berry), var(--gold));
  color: var(--white);
}
/* Official Instagram gradient + TikTok black */
.social-icon.ig,
.contact-method .ci.ci-ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icon.tt,
.contact-method .ci.ci-tt { background: #000; }
.social-text { display: flex; flex-direction: column; }
.social-text strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.social-text span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- How it works ---------- */
.how { background: var(--bg-2); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 0 50px;
  padding: 0;
}
.steps li { text-align: center; padding: 0 12px; }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.steps h3 { font-size: 1.4rem; }
.steps p { color: var(--muted); font-size: 1rem; margin: 0; }

.how-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 34px 0 8px;
  border-top: 1px solid var(--line);
}
.how-detail h4 {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.how-detail p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.how-note {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
  max-width: 940px;
  margin: 0 auto;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 24px;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(255,255,255,0.2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text);
  padding: 16px 30px 16px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  color: var(--muted);
  font-size: 0.98rem;
  padding-bottom: 18px;
  margin: 0;
}

/* ---------- Order / Contact ---------- */
.order {
  background:
    radial-gradient(70% 80% at 85% 10%, rgba(215, 92, 114, 0.12), transparent 60%),
    radial-gradient(60% 70% at 0% 100%, rgba(203, 168, 91, 0.10), transparent 60%),
    #0A0807;
  color: var(--text);
  border-top: 1px solid var(--line-soft);
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.order-lead { color: var(--muted); font-size: 1.08rem; max-width: 440px; }
.contact-buttons {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  max-width: 440px;
}
.contact-btn {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 210, 160, 0.22);
  border-radius: 12px;
  padding: 14px 20px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.contact-btn:hover { background: rgba(255, 255, 255, 0.09); border-color: var(--gold-light); transform: translateX(3px); }
.contact-btn span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2px;
}

/* Form */
.order-form {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label,
.field .field-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 7px;
}
.field label em { text-transform: none; letter-spacing: 0; font-style: italic; font-size: 0.92em; }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field select option { color: #1a1206; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(215, 92, 114, 0.18);
}
.field textarea { resize: vertical; }

/* Pickup / delivery toggle */
.toggle-group { display: flex; gap: 10px; }
.toggle-opt {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel-2);
  cursor: pointer;
  font-size: 0.96rem;
  color: var(--muted);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.toggle-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-opt:has(input:checked) {
  border-color: var(--berry);
  background: rgba(215, 92, 114, 0.16);
  color: var(--text);
}
.toggle-opt:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(215, 92, 114, 0.18); }

/* Privacy note */
.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 4px 0 0;
}
.form-privacy svg { flex: 0 0 auto; color: var(--gold); }

.form-actions { display: grid; gap: 12px; margin-top: 6px; }
.form-fineprint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 2px 0 0;
}

/* ---------- Thank-you page ---------- */
.thanks { text-align: center; padding-top: 180px; }
.thanks-badge {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(150deg, var(--berry), var(--gold));
  box-shadow: 0 12px 30px rgba(181, 67, 90, 0.3);
}
.thanks-lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 18px;
}
.thanks-offer { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-light); margin: 0 auto 30px; }
.thanks-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.thanks-follow { color: var(--muted); font-size: 0.95rem; }
.thanks-follow a { color: var(--gold-light); border-bottom: 1px solid currentColor; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); }
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.contact-method {
  flex: 1 1 250px;
  max-width: 290px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-method:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.contact-method .ci {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--berry), var(--gold));
  color: var(--white);
}
.contact-method .ct { display: flex; flex-direction: column; min-width: 0; }
.contact-method .ct strong { font-family: var(--serif); font-size: 1.1rem; color: var(--text); }
.contact-method .ct span {
  font-size: 0.82rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-area {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer { background: #060504; color: var(--muted); padding: 64px 0 28px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-logo {
  height: 112px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p { font-size: 0.95rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color .2s ease;
  width: fit-content;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-social { display: flex; gap: 20px; margin-top: 6px; }
.footer-social a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--gold-light);
}
.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 24px 0 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { text-align: center; }
  .hero-text { max-width: 620px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-title { text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55); }
  .hero-sub { color: rgba(246, 241, 232, 0.92); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { max-width: 420px; margin: 0 auto; width: 100%; }
  .order-grid { grid-template-columns: 1fr; gap: 36px; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .masonry { column-count: 2; }
}

@media (max-width: 760px) {
  /* Mobile nav bar: matches the page background (with a subtle frost) */
  .site-header,
  .site-header.scrolled {
    background: rgba(12, 10, 9, 0.9);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line-soft);
  }
  .header-inner { min-height: 92px; }
  .brand-logo { height: 76px; transform: translateY(6px); }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 92px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px 0 16px;
    transform: translateY(-130%);
    transition: transform .3s ease;
    z-index: 90;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { padding: 0 24px; }
  .nav-menu a { display: block; padding: 14px 0; font-size: 0.95rem; }
  .nav-menu a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin: 8px 24px 0; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .how-details { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .gallery-cta { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .order-form { grid-template-columns: 1fr; padding: 28px 22px; }
  .hero-trust { gap: 10px 22px; }
  /* Gallery: simple, even tiles on phones */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 1fr;
    aspect-ratio: auto;
  }
  .gallery-item { aspect-ratio: 1; }
  .gallery-item:first-child { grid-column: auto; grid-row: auto; aspect-ratio: 1; }
  .masonry { column-count: 1; }
  .lightbox-nav { width: 44px; height: 44px; }
}

@media (max-width: 420px) {
  .season-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* Mobile only: full-screen hero video behind the header + content */
/* Mobile: shorter header offset + vertical scrim for centered text */
@media (max-width: 600px) {
  .hero {
    margin-top: -92px;           /* mobile header height */
    min-height: 92vh;
    padding: 108px 0 56px;
  }
  .hero-visual::after {
    background: linear-gradient(180deg, rgba(12, 10, 9, 0.45) 0%, rgba(12, 10, 9, 0.5) 40%, rgba(12, 10, 9, 0.85) 100%);
  }
}

/* ---------- Exit-intent popup ---------- */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: rgba(6, 5, 4, 0.82);
  backdrop-filter: blur(5px);
}
.exit-modal.open { display: flex; animation: exitFade .25s ease; }
@keyframes exitFade { from { opacity: 0; } to { opacity: 1; } }
/* "double slam" entrance: flies in huge, slams, rebounds, slams again, settles */
.exit-modal.open .exit-card { animation: slamIn .9s cubic-bezier(.2, .8, .25, 1) both; }
@keyframes slamIn {
  0%   { transform: scale(3.4); opacity: 0; }
  20%  { transform: scale(0.7); opacity: 1; }      /* SLAM 1 */
  40%  { transform: scale(1.3); }                  /* rebound big */
  58%  { transform: scale(0.8); }                  /* SLAM 2 */
  74%  { transform: scale(1.1) rotate(-1.5deg); }  /* up + shake */
  88%  { transform: scale(0.98) rotate(1.2deg); }  /* shake back */
  100% { transform: scale(1) rotate(0); }
}
.exit-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--panel);
  border: 1px solid var(--gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}
.exit-img { width: 100%; height: 250px; object-fit: cover; object-position: center 22%; display: block; }
.exit-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background .2s ease;
}
.exit-close:hover { background: rgba(0, 0, 0, 0.8); }
.exit-body { padding: 24px 28px 30px; text-align: center; }
.exit-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 8px;
}
.exit-title { font-size: 2rem; margin: 0 0 0.3em; }
.exit-text { color: var(--muted); font-size: 1rem; margin: 0 0 4px; }
.exit-cta { margin-top: 20px; }

/* ---------- Welcome popup (watermelon opening) ---------- */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6vw;
  background: rgba(6, 5, 4, 0.85);
  backdrop-filter: blur(5px);
}
.welcome-modal.show { display: flex; animation: exitFade .3s ease; }
.welcome-card {
  position: relative;
  width: min(92vw, 380px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}
.welcome-offer {
  position: relative;
  z-index: 1;
  padding: 46px 30px 38px;
  text-align: center;
  color: #fff;
  background: radial-gradient(ellipse at 50% 32%, #ff7088 0%, #e8384f 68%, #cf2f44 100%);
  border: 9px solid #36a14c;
  border-radius: 30px;
  box-shadow: inset 0 0 0 4px #f3f0e6;
  transition: transform .5s ease .35s, opacity .5s ease .3s;
  transform: scale(.92);
  opacity: .55;
}
.welcome-modal.open .welcome-offer { transform: scale(1); opacity: 1; }
.welcome-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
}
.welcome-card h2 {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  margin: 0 0 10px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.welcome-sub { font-size: 1rem; color: rgba(255, 255, 255, 0.96); margin: 0 auto 20px; max-width: 285px; }
.welcome-cta { background: #fff; color: #cf2f44; }
.welcome-cta:hover { background: #1a1206; color: #fff; }
.welcome-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 6;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
/* watermelon seeds on the flesh */
.seed { position: absolute; z-index: 1; width: 9px; height: 13px; background: #241f1c; opacity: .8; border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%; }
.seed.s1 { top: 20%; left: 18%; transform: rotate(-18deg); }
.seed.s2 { top: 17%; right: 20%; transform: rotate(16deg); }
.seed.s3 { top: 36%; left: 13%; transform: rotate(8deg); }
.seed.s4 { top: 32%; right: 13%; transform: rotate(-10deg); }
.seed.s5 { top: 50%; left: 50%; transform: translateX(-50%) rotate(4deg); }
/* green rind cover that splits open */
.melon-rind { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.rind-half {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  background: repeating-linear-gradient(102deg, #1f7a34 0 13px, #36a14c 13px 28px);
  transition: transform .85s cubic-bezier(.66, 0, .2, 1);
  will-change: transform;
}
.rind-half.top { top: 0; border-radius: 30px 30px 0 0; }
.rind-half.bottom { bottom: 0; border-radius: 0 0 30px 30px; }
.rind-half.top::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: linear-gradient(#f3f0e6, #ff5168); }
.rind-half.bottom::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 12px; background: linear-gradient(#ff5168, #f3f0e6); }
.welcome-modal.open .rind-half.top { transform: translateY(-101%); }
.welcome-modal.open .rind-half.bottom { transform: translateY(101%); }

/* ---------- Motion / a11y ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
