/* ============================================================
   ZAD FOOD STORE — "The last friendly face before the desert"
   Palette from logo: Zad Purple + Zad Orange · desert sand · palm
   Type: Poppins (display+body) · Caveat (script) · Cairo (Arabic)
   ============================================================ */

:root {
  --sand: #F7F0E4;
  --sand-deep: #EFE4D0;
  --night: #221733;
  --night-deep: #170F24;
  --purple: #7B2E8E;
  --purple-soft: #9C4DB0;
  --orange: #F7941D;
  --orange-soft: #FFB45A;
  --palm: #1F7A3D;
  --ink: #2B2333;
  --ink-soft: rgba(43, 35, 51, 0.72);
  --cream: #FFF9EE;
  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-script: "Caveat", cursive;
  --font-arabic: "Cairo", sans-serif;
  --maxw: 1180px;
  --radius: 20px;
  --shadow: 0 22px 55px rgba(34, 23, 51, 0.16);
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--orange); }

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

::selection { background: var(--orange); color: #fff; }

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--font-script);
  color: var(--orange);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}

.title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--ink);
}

.title .grad {
  background: linear-gradient(100deg, var(--purple) 15%, var(--orange) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dark .title { color: var(--cream); }

.lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  font-weight: 400;
  max-width: 700px;
}

.dark .lead { color: rgba(255, 249, 238, 0.78); }

.section { padding: clamp(76px, 10vw, 130px) 0; position: relative; }
.section-head { margin-bottom: clamp(38px, 5.5vw, 64px); }
.section-head.center { text-align: center; }
.section-head.center .lead { margin: 16px auto 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 34px;
  border-radius: 60px;
  background: linear-gradient(120deg, var(--orange), #f8a93f);
  color: #2b1a05;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(247, 148, 29, 0.4);
  color: #1d1203;
}

.btn.purple { background: linear-gradient(120deg, var(--purple), var(--purple-soft)); color: #fff; }
.btn.purple:hover { box-shadow: 0 16px 38px rgba(123, 46, 142, 0.4); color: #fff; }

.btn.ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 249, 238, 0.6);
}

.btn.ghost:hover { border-color: var(--orange); color: var(--orange-soft); box-shadow: none; }

.btn.ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(43, 35, 51, 0.3);
}

.btn.ghost-dark:hover { border-color: var(--purple); color: var(--purple); }

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

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

/* Glass layer lives on ::before — backdrop-filter on .nav itself would
   trap the fixed-position mobile menu inside the 70px navbar */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 240, 228, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 36px rgba(34, 23, 51, 0.12);
}

.nav.scrolled::before { opacity: 1; }

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo img { height: 44px; width: auto; }

.nav-logo .logo-light { display: block; }
.nav.scrolled .logo-light { display: none; }
.nav-logo .logo-dark { display: none; }
.nav.scrolled .logo-dark { display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.25s ease;
}

.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--orange) !important; }

.nav-cta {
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 50px;
  background: var(--orange);
  color: #2b1a05 !important;
}

.nav-cta:hover { background: var(--orange-soft); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.nav-burger span {
  display: block;
  width: 24px; height: 2.5px;
  border-radius: 2px;
  background: var(--cream);
  margin: 5px auto;
  transition: 0.3s;
}

.nav.scrolled .nav-burger span { background: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
  animation: kenburns 24s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(23, 15, 36, 0.5) 0%, rgba(23, 15, 36, 0.15) 40%, rgba(23, 15, 36, 0.93) 90%),
    radial-gradient(75% 55% at 18% 85%, rgba(123, 46, 142, 0.45), transparent 70%);
}

.hero-content {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px 24px clamp(64px, 9vh, 110px);
  width: 100%;
  color: var(--cream);
}

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247, 148, 29, 0.16);
  border: 1.5px solid var(--orange);
  color: var(--orange-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-247 .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #3ddc6a;
  box-shadow: 0 0 0 0 rgba(61, 220, 106, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 106, 0.55); }
  70% { box-shadow: 0 0 0 11px rgba(61, 220, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 106, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.6vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 950px;
  color: #fff;
}

.hero h1 .grad {
  background: linear-gradient(100deg, var(--orange) 20%, #ffd9a0 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .ar {
  font-family: var(--font-arabic);
  font-weight: 700;
  color: var(--orange-soft);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  display: block;
  margin-bottom: 14px;
}

.hero .lead { margin: 24px 0 36px; max-width: 620px; color: rgba(255, 249, 238, 0.85); }

.hero-stats-mini { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }

.hero-stats-mini div { border-left: 3px solid var(--orange); padding-left: 16px; }

.hero-stats-mini b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.hero-stats-mini span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 249, 238, 0.7);
}

/* ---------- Marquee ---------- */

.marquee {
  background: linear-gradient(90deg, var(--purple), #93389f 50%, var(--purple));
  overflow: hidden;
  padding: 13px 0;
}

.marquee-track { display: inline-flex; white-space: nowrap; animation: marquee 38s linear infinite; }

.marquee span {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: #ffe9cd;
  padding: 0 26px;
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */

.stats { background: var(--sand); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 24px;
  text-align: center;
}

.stat b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--purple), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.stat small {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--ink-soft);
}

/* ---------- Offer cards ---------- */

.offer { background: var(--sand-deep); }

.offer-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.ocard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(34, 23, 51, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.ocard:hover { transform: translateY(-9px); box-shadow: var(--shadow); }

.ocard-img { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }

.ocard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.ocard:hover .ocard-img img { transform: scale(1.09); }

.ocard-img .chip {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: #2b1a05;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
}

.ocard-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }

.ocard-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.ocard-body p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 14px; }

.ocard-body ul { list-style: none; margin-top: auto; }

.ocard-body li {
  display: inline-block;
  background: var(--sand);
  border: 1px solid rgba(123, 46, 142, 0.18);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 30px;
  padding: 5px 13px;
  margin: 0 6px 8px 0;
}

/* ---------- Track band (dark) ---------- */

.track {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 65%;
  isolation: isolate;
  color: var(--cream);
}

.track::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(23, 15, 36, 0.88) 20%, rgba(23, 15, 36, 0.42) 60%, rgba(23, 15, 36, 0.15));
}

.track .title { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); max-width: 620px; }
.track .lead { margin: 22px 0 34px; color: rgba(255, 249, 238, 0.85); }

.track-times { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 40px; }

.ttime {
  background: rgba(255, 249, 238, 0.08);
  border: 1px solid rgba(255, 249, 238, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 18px 24px;
  max-width: 250px;
}

.ttime b {
  font-family: var(--font-display);
  color: var(--orange-soft);
  font-size: 1.05rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.ttime span { font-size: 0.86rem; color: rgba(255, 249, 238, 0.8); }

/* ---------- Story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.story-emblem { text-align: center; }

.story-emblem img { max-width: 380px; margin: 0 auto; filter: drop-shadow(0 24px 40px rgba(34, 23, 51, 0.18)); }

.story-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.story-copy p b { color: var(--ink); font-weight: 600; }

.creed {
  background: linear-gradient(120deg, var(--purple), #93389f);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 34px;
  margin: 26px 0;
  box-shadow: var(--shadow);
}

.creed .q {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.35;
  font-weight: 700;
}

.creed .who {
  margin-top: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 233, 205, 0.85);
}

/* ---------- Serve strip ---------- */

.serve { background: var(--sand-deep); }

.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.scard {
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 8px 26px rgba(34, 23, 51, 0.08);
  transition: transform 0.35s ease;
}

.scard:hover { transform: translateY(-6px); }

.scard .ico { font-size: 2rem; display: block; margin-bottom: 14px; }

.scard h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }

.scard p { color: var(--ink-soft); font-size: 0.87rem; }

.scard .when {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---------- Gallery ---------- */

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.gallery .g { border-radius: 16px; overflow: hidden; aspect-ratio: 1; box-shadow: 0 10px 26px rgba(34, 23, 51, 0.1); }

.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gallery .g:hover img { transform: scale(1.08); }

/* ---------- Visit band ---------- */

.visit {
  background:
    radial-gradient(90% 130% at 85% -10%, rgba(123, 46, 142, 0.5), transparent 60%),
    linear-gradient(160deg, var(--night), var(--night-deep));
  color: var(--cream);
}

.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

.visit h2 { color: #fff; }

.visit-list { list-style: none; margin: 28px 0 36px; }

.visit-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 249, 238, 0.12);
  font-size: 0.98rem;
  color: rgba(255, 249, 238, 0.88);
}

.visit-list li .ic { font-size: 1.25rem; line-height: 1.4; }
.visit-list li b { color: #fff; }

.visit-card {
  background: rgba(255, 249, 238, 0.06);
  border: 1px solid rgba(255, 249, 238, 0.16);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.visit-card .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(120deg, var(--orange), #ffd9a0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.visit-card p { color: rgba(255, 249, 238, 0.75); font-size: 0.9rem; margin: 8px 0 24px; }

/* ---------- Footer ---------- */

footer { background: var(--night-deep); padding: 70px 0 0; color: rgba(255, 249, 238, 0.75); }

.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr; gap: 44px; padding-bottom: 56px; }

.foot-grid img.foot-logo { height: 52px; width: auto; margin-bottom: 18px; }

.foot-grid p { font-size: 0.9rem; }

.foot-grid h5 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--orange-soft);
  margin-bottom: 18px;
}

.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid li a, .foot-grid li span { color: rgba(255, 249, 238, 0.75); font-size: 0.92rem; }
.foot-grid li a:hover { color: var(--orange-soft); }

.foot-social { display: flex; gap: 12px; margin-top: 20px; }

.foot-social a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid rgba(255, 249, 238, 0.25);
  padding: 8px 16px;
  border-radius: 40px;
  color: rgba(255, 249, 238, 0.85);
}

.foot-social a:hover { border-color: var(--orange); color: var(--orange-soft); }

.foot-bottom {
  border-top: 1px solid rgba(255, 249, 238, 0.12);
  padding: 24px 0;
  text-align: center;
  color: rgba(255, 249, 238, 0.45);
  font-size: 0.8rem;
}

/* ---------- Reveal ---------- */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .offer-cards { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 0;
    height: 100dvh;
    z-index: 105;
    background: rgba(23, 15, 36, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links a, .nav.scrolled .nav-links a { font-size: 1.15rem; color: var(--cream); }
  .nav-burger { display: block; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--cream); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--cream); }
  .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .story-emblem img { max-width: 280px; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .offer-cards, .serve-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-stats-mini { gap: 18px; }
}

/* ---------- Right-now strip ---------- */

.now-strip {
  background: linear-gradient(90deg, var(--night), #2c1f42);
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 3px solid var(--orange);
}

.now-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.now-strip .open-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 220, 106, 0.14);
  border: 1.5px solid #3ddc6a;
  color: #7df0a3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  padding: 7px 16px;
  border-radius: 40px;
  white-space: nowrap;
}

.now-strip .open-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc6a; animation: pulse 2s infinite; }

.now-strip #now-msg { font-size: 0.98rem; font-weight: 500; color: rgba(255, 249, 238, 0.92); }
.now-strip #now-msg b { color: var(--orange-soft); }

/* ---------- Action dock ---------- */

.dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(120px);
  z-index: 90;
  display: flex;
  gap: 10px;
  background: rgba(23, 15, 36, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 249, 238, 0.18);
  border-radius: 60px;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.dock.show { transform: translateX(-50%) translateY(0); }

.dock a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 50px;
  white-space: nowrap;
}

.dock a.d-dir { background: var(--orange); color: #2b1a05; }
.dock a.d-wa { background: #25D366; color: #06330f; }
.dock a.d-call { background: rgba(255, 249, 238, 0.12); color: var(--cream); border: 1px solid rgba(255, 249, 238, 0.3); }
.dock a:hover { filter: brightness(1.08); }

@media (max-width: 620px) {
  .dock { left: 12px; right: 12px; transform: translateY(120px); width: auto; justify-content: center; }
  .dock.show { transform: translateY(0); }
  .dock a { padding: 12px 14px; font-size: 0.82rem; flex: 1; justify-content: center; }
}

/* ---------- Quote / review band ---------- */

.quote-band { background: var(--sand); text-align: center; }

.quote-band blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.9vw, 2rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 860px;
  margin: 0 auto;
}

.quote-band blockquote::before { content: "\201C"; color: var(--orange); font-size: 1.6em; vertical-align: -0.25em; margin-right: 4px; }
.quote-band blockquote::after { content: "\201D"; color: var(--orange); font-size: 1.6em; vertical-align: -0.35em; margin-left: 4px; }

.quote-band .stars { color: var(--orange); font-size: 1.3rem; letter-spacing: 6px; margin-bottom: 18px; }

.quote-band .who {
  margin-top: 18px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

/* ---------- Pre-order band ---------- */

.preorder {
  background:
    radial-gradient(80% 120% at 15% -20%, rgba(247, 148, 29, 0.35), transparent 55%),
    linear-gradient(135deg, #25104a 0%, var(--night) 60%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 70px) clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  position: relative;
}

.preorder h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
}

.preorder p { color: rgba(255, 249, 238, 0.82); margin-bottom: 26px; max-width: 520px; }

.preorder .steps-mini { display: grid; gap: 12px; }

.preorder .sm {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 249, 238, 0.07);
  border: 1px solid rgba(255, 249, 238, 0.14);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.92rem;
}

.preorder .sm b { color: var(--orange-soft); font-family: var(--font-display); }

@media (max-width: 880px) { .preorder { grid-template-columns: 1fr; } }

/* ---------- Gallery v2 ---------- */

.gallery.v2 { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; }
.gallery.v2 .g { aspect-ratio: auto; }
.gallery.v2 .g.w2 { grid-column: span 2; }
.gallery.v2 .g.h2 { grid-row: span 2; }

@media (max-width: 880px) {
  .gallery.v2 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}
