/* ============================================================
   WINGCAMP DAKHLA 2026 — v3 · Premium · Poppins
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;1,300;1,400&display=swap');

:root {
  --bg:    #f8f5f1;
  --bg2:   #f0ece5;
  --bg3:   #e8e3da;
  --ink:   #221d17;
  --mid:   #7a7068;
  --coral: #bf4f37;
  --c2:    #983e2c;
  --rule:  #ddd8cf;
  --white: #ffffff;
  --f: 'Poppins', system-ui, sans-serif;
  --ph: 22mm;   /* horizontal padding */
  --pv: 18mm;   /* vertical padding */
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #c8c3bc; font-family: var(--f); color: var(--ink); -webkit-font-smoothing: antialiased; }

/* ── PAGE ──────────────────────────────────────── */
.page {
  position: relative; width: 210mm; min-height: 297mm;
  background: var(--bg); margin: 18px auto;
  box-shadow: 0 6px 36px rgba(0,0,0,.22);
  display: flex; flex-direction: column; overflow: hidden;
}
.body { flex: 1; padding: var(--pv) var(--ph); display: flex; flex-direction: column; }
.grow { flex: 1; }

/* ── FOOTER ────────────────────────────────────── */
.ft {
  flex: 0 0 auto; height: 10mm; background: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--ph); font-size: 7pt; font-weight: 300;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(248,245,241,.5);
}
.ft strong { color: rgba(248,245,241,.95); font-weight: 600; letter-spacing: .1em; }
.ft .n { opacity: .35; }

/* ── TYPE ──────────────────────────────────────── */
p { font-size: 12pt; font-weight: 300; line-height: 1.78; color: var(--ink); }
p.lead { font-size: 14pt; line-height: 1.65; }
p + p { margin-top: 5mm; }
strong { font-weight: 600; }
em { font-style: italic; font-weight: 300; }

.eyebrow {
  display: flex; align-items: center; gap: 4mm;
  font-size: 8pt; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 5mm;
}
.eyebrow::before {
  content: ''; display: block; width: 7mm; height: 1px;
  background: var(--coral); flex: 0 0 auto;
}

.big-title {
  font-size: 52pt; font-weight: 200; line-height: .9;
  letter-spacing: -.02em;
}
.big-title strong { font-weight: 800; display: block; }

.sec-title { font-size: 26pt; font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
.sub-title  { font-size: 14pt; font-weight: 700; letter-spacing: -.01em; margin-bottom: 4mm; }
.label-sm {
  font-size: 8pt; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--mid);
}

/* ── SPACING HELPERS ───────────────────────────── */
.sp2  { height: 2mm;  flex: 0 0 auto; }
.sp4  { height: 4mm;  flex: 0 0 auto; }
.sp6  { height: 6mm;  flex: 0 0 auto; }
.sp8  { height: 8mm;  flex: 0 0 auto; }
.sp10 { height: 10mm; flex: 0 0 auto; }
.sp12 { height: 12mm; flex: 0 0 auto; }
.rule { height: 1px; background: var(--rule); flex: 0 0 auto; }

/* ── PHOTO ─────────────────────────────────────── */
.ph {
  background: var(--bg2); border: 1px solid var(--rule);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.ph::after {
  content: attr(data-label);
  font-size: 7pt; font-weight: 400; letter-spacing: .04em;
  color: rgba(248,245,241,.9);
  background: rgba(34,29,23,.62);
  padding: 1.8mm 3mm; margin: 3mm;
  border-radius: 1mm; line-height: 1.4; max-width: 82%;
}
.ph-full {
  width: calc(100% + 2 * var(--ph));
  margin-left: calc(-1 * var(--ph));
  flex: 0 0 auto;
}

/* ── LOGO ──────────────────────────────────────── */
.logo {
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--coral); color: #fff; border-radius: 22%;
  width: 17mm; height: 17mm; text-align: center; line-height: 1; flex: 0 0 auto;
}
.logo .la { font-size: 6.5pt; font-weight: 700; letter-spacing: .05em; }
.logo .lb { font-size: 9pt;   font-weight: 200; margin: .4mm 0; }
.logo .lc { font-size: 3.8pt; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; opacity: .9; }

/* ── TAG ───────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center;
  font-size: 8pt; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 1.5mm 4mm; border-radius: 50px; white-space: nowrap;
}
.tag--coral  { background: var(--coral);  color: #fff; }
.tag--ink    { background: var(--ink);    color: var(--bg); }
.tag--line   { border: 1px solid var(--rule); color: var(--ink); }

/* ── FEATURE ROW (expanded) ────────────────────── */
.feat-row {
  display: grid;
  grid-template-columns: 5mm 1fr;
  gap: 5mm;
  align-items: start;
  padding: 4.5mm 0;
  border-bottom: 1px solid var(--rule);
}
.feat-row:first-of-type { border-top: 1px solid var(--rule); }
.feat-row .dash {
  width: 5mm; height: 1px; background: var(--coral);
  margin-top: 7.5pt; flex: 0 0 auto;
  display: block;
}
.feat-row .ftitle { font-size: 11.5pt; font-weight: 600; margin-bottom: 1.5mm; }
.feat-row .fdesc  { font-size: 10pt;   font-weight: 300; color: var(--mid); line-height: 1.5; }

/* ── INFO BLOCK ────────────────────────────────── */
.info {
  border-left: 2px solid var(--coral);
  background: var(--bg2); padding: 5mm 6mm; border-radius: 0 2.5mm 2.5mm 0;
}
.info p { font-size: 11pt; margin: 0; line-height: 1.65; }
.info p + p { margin-top: 3mm; }
.info--ink { border-left-color: var(--ink); }

/* ── FORMULE STRIP ─────────────────────────────── */
.formule {
  background: var(--bg2);
  border-radius: 2.5mm; padding: 5mm 6mm;
  display: flex; flex-wrap: wrap; gap: 2mm 0; align-items: center;
}
.formule span {
  font-size: 10pt; font-weight: 300; color: var(--mid);
  padding: 0 4mm;
}
.formule span:first-child { padding-left: 0; }
.formule span + span { border-left: 1px solid var(--rule); }

/* ── STAT CARDS ────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 5mm; }
.stat {
  background: var(--white);
  border-radius: 3mm; padding: 6mm;
}
.stat .sv { font-size: 16pt; font-weight: 700; letter-spacing: -.015em; margin-bottom: 2mm; }
.stat .sl { font-size: 9pt;  font-weight: 300; color: var(--mid); line-height: 1.45; }

/* ── CARD ──────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 3mm; padding: 6mm 7mm;
}
.card--dark { background: var(--ink); border-color: var(--ink); }
.card--tint { background: var(--bg2); }

/* ── PANEL (titled section within body) ────────── */
.panel {
  border: 1px solid var(--rule); border-radius: 3mm;
  overflow: hidden;
}
.panel__head {
  padding: 4mm 6mm; background: var(--bg2);
  border-bottom: 1px solid var(--rule);
}
.panel__body { padding: 5mm 6mm; }

/* ── PRICING ───────────────────────────────────── */
.price-big { font-size: 32pt; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.price-note { font-size: 9.5pt; font-weight: 300; color: var(--mid); margin-top: 1.5mm; }

/* ── TABLE ─────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; }
th {
  font-size: 7.5pt; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid); padding: 3mm 4mm; border-bottom: 1px solid var(--rule); text-align: left;
}
td {
  font-size: 11pt; font-weight: 300; padding: 3.5mm 4mm;
  border-bottom: 1px solid var(--rule); vertical-align: top;
}
td:last-child { text-align: right; }
th:last-child { text-align: right; }
td.bold { font-weight: 600; }
td.accent { font-weight: 700; color: var(--c2); font-size: 12pt; }
.old { text-decoration: line-through; color: var(--mid); font-size: 9pt; font-weight: 300; }
tr:last-child td { border-bottom: 0; }
.tbl { border-radius: 3mm; overflow: hidden; background: var(--white); }

/* ── TESTI ─────────────────────────────────────── */
.testi {
  background: var(--white);
  border-radius: 3mm; padding: 6mm;
}
.testi blockquote {
  font-style: italic; font-size: 11pt; font-weight: 300;
  line-height: 1.7; color: var(--ink); margin-bottom: 4mm;
}
.testi cite {
  font-size: 8pt; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--coral); font-style: normal;
}

/* ── STEP ──────────────────────────────────────── */
.step { display: flex; gap: 6mm; align-items: flex-start; }
.step-num {
  flex: 0 0 12mm; width: 12mm; height: 12mm; border-radius: 50%;
  background: var(--coral); color: #fff;
  font-size: 14pt; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-body { flex: 1; padding-top: 1mm; }

/* ── BIO ───────────────────────────────────────── */
.bio { display: flex; gap: 7mm; align-items: flex-start; }
.bio .ph { flex: 0 0 44mm; height: 56mm; border-radius: 3mm; }
.bio .role { font-size: 8pt; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--coral); margin-bottom: 1mm; }
.bio h3 { font-size: 18pt; font-weight: 700; margin-bottom: 1mm; }
.bio .cred { font-size: 9pt; font-weight: 300; color: var(--mid); margin-bottom: 4mm; }

/* ── CTA ───────────────────────────────────────── */
.cta-band {
  background: var(--coral); color: #fff; border-radius: 3mm;
  padding: 8mm 10mm; text-align: center;
}
.cta-band h2 { color: #fff; font-size: 24pt; font-weight: 700; margin-bottom: 2mm; }
.cta-band .url { font-size: 12pt; font-weight: 500; letter-spacing: .04em; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 11pt; margin-top: 3mm; }

/* ── CONTACTS ──────────────────────────────────── */
.contacts {
  background: var(--bg2);
  border-radius: 2.5mm; padding: 4.5mm 6mm;
  display: flex; flex-wrap: wrap; gap: 2mm 8mm;
}
.contacts span { font-size: 10.5pt; font-weight: 300; }
.contacts span strong { font-weight: 600; color: var(--c2); }

/* ── 2-COL HELPER ──────────────────────────────── */
.cols2 { display: flex; gap: 8mm; }
.cols2 > * { flex: 1; min-width: 0; }
.cols2 > .wide { flex: 1.4; }

/* ================================================================
   COVER
   ================================================================ */
.cover-photo {
  flex: 0 0 auto; height: 186mm; position: relative; overflow: hidden;
}
.cover-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 28%; display: block;
}
.cover-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(22,16,10,.08) 0%, rgba(22,16,10,.03) 35%, rgba(22,16,10,.65) 100%);
}
.cover-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 10mm var(--ph);
}
.cover-top { display: flex; justify-content: space-between; align-items: flex-start; }
.cover-edition {
  font-size: 8pt; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.5);
  padding: 1.5mm 4.5mm; border-radius: 50px;
}
.cover-title { color: #fff; text-shadow: 0 2px 28px rgba(0,0,0,.22); }
.cover-title .thin { font-size: 62pt; font-weight: 200; line-height: .88; display: block; letter-spacing: -.01em; }
.cover-title .bold { font-size: 62pt; font-weight: 800; line-height: .88; display: block; letter-spacing: -.01em; }
.cover-info { flex: 0 0 auto; padding: 9mm var(--ph) 7mm; }
.cover-dates { font-size: 16pt; font-weight: 600; letter-spacing: -.01em; margin-bottom: 1.5mm; }
.cover-sub   { font-size: 10pt; font-weight: 300; color: var(--mid); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6mm; }
.early-band {
  border: 1px solid var(--rule); background: var(--bg2);
  border-radius: 2.5mm; padding: 4.5mm 6mm;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3mm;
}
.early-band .eb-item b { font-size: 11pt; font-weight: 600; display: block; margin-bottom: 1mm; }
.early-band .eb-item span { font-size: 9.5pt; font-weight: 300; color: var(--mid); }

/* ================================================================
   SECTION DIVIDER PAGE
   ================================================================ */
.page--div {
  background: var(--ink);
  min-height: 297mm;
}
.div-body {
  flex: 1; padding: var(--pv) var(--ph);
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
}
.div-ghost {
  position: absolute; top: 10mm; right: var(--ph);
  font-size: 140pt; font-weight: 800; line-height: 1;
  letter-spacing: -.04em; color: rgba(248,245,241,.05);
  pointer-events: none;
}
.div-label { font-size: 9pt; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--coral); margin-bottom: 4mm; }
.div-title { font-size: 56pt; font-weight: 800; line-height: .9; letter-spacing: -.02em; color: var(--bg); margin-bottom: 6mm; }
.div-sub   { font-size: 12pt; font-weight: 300; color: rgba(248,245,241,.4); letter-spacing: .06em; }
.div-line  { width: 14mm; height: 2px; background: var(--coral); margin-bottom: 7mm; }
.page--div .ft { background: rgba(255,255,255,.06); color: rgba(248,245,241,.4); }
.page--div .ft strong { color: rgba(248,245,241,.9); }

/* ================================================================
   PRINT
   ================================================================ */
@page { size: A4; margin: 0; }
@media print {
  body { background: #fff; }
  .page { width: 210mm; min-height: 297mm; margin: 0; box-shadow: none; break-after: page; break-inside: avoid; }
  .page:last-child { break-after: auto; }
  .tag--coral, .tag--ink, .ft, .cta-band, .step-num,
  .cover-photo::after, .logo, .info, .stat, .testi,
  .page--div, .page--div .div-body, .early-band {
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
}
@media screen { .page { border-radius: 2px; } }
