:root {
  --bg: #f4f0eb;
  --panel: #fffdf9;
  --card: rgba(255, 253, 249, 0.88);
  --text: #171216;
  --muted: #645864;
  --line: rgba(69, 50, 64, 0.12);
  --accent: #7d2f5f;
  --accent-2: #b7608f;
  --accent-3: #d7c2cf;
  --shadow: 0 20px 60px rgba(55, 32, 47, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(183, 96, 143, 0.14), transparent 30%),
    linear-gradient(180deg, #fcfaf8 0%, var(--bg) 100%);
  color: var(--text);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: var(--shadow);
}

.zahawat-mark {
  background: linear-gradient(135deg, #612546, #b7608f);
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 900;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.section,
.section-small {
  margin-top: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.35rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  margin-bottom: 12px;
}

.hero-text,
.section-head p,
.value-card p,
.flavor-card p,
.process-card p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.hero-actions,
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-notes span,
.proof-strip div,
.audience-card {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--muted);
}

.btn,
.mini-cta {
  appearance: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-family: inherit;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover,
.mini-cta:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-primary,
.mini-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(125, 47, 95, 0.22);
}

.btn-block {
  width: 100%;
}

.hero-media img {
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.section-head {
  margin-bottom: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: end;
}

.value-grid,
.flavor-grid,
.process-grid,
.audience-grid,
.gallery-grid-v3 {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.flavor-grid {
  grid-template-columns: repeat(4, 1fr);
}

.large-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-card,
.flavor-card,
.process-card,
.cta-panel,
.audience-card,
.gallery-card-v3 {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.value-card,
.flavor-card,
.process-card {
  padding: 24px;
}

.flavor-card.featured {
  background: linear-gradient(180deg, rgba(125, 47, 95, 0.08), rgba(255, 253, 249, 0.92));
}

.step {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  padding: 30px;
}

.gallery-grid-v3 {
  grid-template-columns: repeat(12, 1fr);
}

.gallery-card-v3 {
  overflow: hidden;
}

.gallery-card-v3.large {
  grid-column: span 7;
}

.gallery-card-v3.wide {
  grid-column: span 8;
}

.gallery-card-v3:not(.large):not(.wide) {
  grid-column: span 5;
}

.gallery-card-v3 img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-card-v3.large img,
.gallery-card-v3.wide img {
  height: 380px;
}

.gallery-card-v3 figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  line-height: 1.8;
}

.preorder-form {
  display: grid;
  gap: 14px;
}

.preorder-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.preorder-form input,
.preorder-form select {
  width: 100%;
  border: 1px solid rgba(125, 47, 95, 0.18);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .cta-panel,
  .value-grid,
  .flavor-grid,
  .large-grid,
  .process-grid,
  .audience-grid,
  .proof-strip,
  .gallery-grid-v3 {
    grid-template-columns: 1fr;
  }

  .gallery-card-v3.large,
  .gallery-card-v3.wide,
  .gallery-card-v3:not(.large):not(.wide) {
    grid-column: span 1;
  }

  .gallery-card-v3 img,
  .gallery-card-v3.large img,
  .gallery-card-v3.wide img {
    height: 260px;
  }

  .hero-media img {
    min-height: 300px;
  }
}
