/* ═══════════════════════════════════════════════════════════
   SAMYOS.FIT BRAND GUIDELINES — MASTER STYLESHEET
   Version 1.0 · 2026
═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #0E7C66;
  --teal-dark:   #0F766E;
  --forest:      #134E4A;
  --navy:        #0F172A;
  --gold:        #BFA14A;
  --charcoal:    #1C1C1C;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --grey-light:  #E2E8F0;
  --grey-mid:    #94A3B8;
  --flame-orange:#E07B39;
  --font-display:'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
}

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background: #CBD5E1;
  color: var(--charcoal);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

/* ── PAGE SYSTEM ── */
.page {
  width: 297mm;
  min-height: 210mm;
  background: var(--white);
  margin: 0 auto 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.18);
  padding: 14mm 16mm 14mm 16mm;
}

/* ── PAGE HEADER ── */
.page-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
  gap: 12px;
}
.header-line {
  flex: 1;
  height: 2px;
  background: var(--teal);
}
.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  white-space: nowrap;
}
.page-num {
  position: absolute;
  bottom: 10mm;
  right: 16mm;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 01 — COVER
═══════════════════════════════════════════════════════════ */
.cover-page {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 210mm;
}
.cover-top {
  background: var(--white);
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cover-logo {
  max-height: 90px;
  max-width: 280px;
  object-fit: contain;
}
.cover-bottom {
  background: var(--navy);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 48px;
  position: relative;
  overflow: hidden;
}
.cover-bottom::before {
  content: '';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(14,124,102,0.2);
}
.cover-bottom::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(14,124,102,0.35);
}
.cover-bottom-content { position: relative; z-index: 2; }
.cover-tagline-block { margin-bottom: 12px; }
.cover-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
.cover-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
}
.cover-title-light {
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}
.cover-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  letter-spacing: 1px;
}
.cover-version {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 02 — TABLE OF CONTENTS
═══════════════════════════════════════════════════════════ */
.toc-page { padding-bottom: 24mm; }
.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 8px;
}
.toc-item {
  display: flex;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(14,124,102,0.08);
}
.toc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-right: 10px;
  margin-bottom: 1px;
}
.toc-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
  flex-shrink: 0;
}
.toc-dots {
  flex: 1;
  border-bottom: 1.5px dotted rgba(14,124,102,0.35);
  margin: 0 8px 3px;
}
.toc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 03 — BRAND PHILOSOPHY
═══════════════════════════════════════════════════════════ */
.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: start;
}
.brand-name-display {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}
.brand-sam { color: var(--navy); }
.brand-yos { color: var(--teal); }
.brand-fit { color: var(--gold); font-weight: 300; }

.etymology-block { margin-bottom: 16px; }
.etym-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
}
.etym-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 3px;
  min-width: 40px;
}
.etym-meaning {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--charcoal);
  font-weight: 400;
}
.etym-divider {
  height: 1px;
  background: var(--grey-light);
}
.etym-note {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--grey-mid);
  font-style: italic;
  margin-top: 8px;
}

.manifesto-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
  border-left: 3px solid var(--teal);
  padding-left: 12px;
}
.manifesto-body {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 8px;
}
.manifesto-block { margin-bottom: 20px; }

.pos-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.pos-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--charcoal);
}
.pos-icon { color: var(--teal); font-size: 12px; }

.tagline-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--navy);
  border-radius: 4px;
}
.tagline-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--white);
}
.tagline-dot { color: var(--gold); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════
   PAGE 04 — THE LOGO
═══════════════════════════════════════════════════════════ */
.logo-showcase { display: flex; flex-direction: column; gap: 20px; }
.logo-primary-block {}
.logo-label, .variant-label-light, .variant-label-dark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.logo-label { color: var(--teal); }
.variant-label-light { color: rgba(255,255,255,0.7); }
.variant-label-dark { color: var(--teal); }

.logo-display-white {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img-large { max-height: 70px; object-fit: contain; }
.logo-img-medium { max-height: 50px; object-fit: contain; }
.logo-img-small { max-height: 36px; object-fit: contain; }
.logo-invert { filter: invert(1) brightness(2); }
.logo-white { filter: brightness(0) invert(1); }
.logo-mono { filter: grayscale(1) brightness(0); }

.logo-variants-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.logo-variant-block {
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 90px;
}
.bg-dark { background: var(--navy); }
.bg-teal { background: linear-gradient(135deg, var(--teal), var(--forest)); }
.bg-white-border { background: var(--white); border: 1px solid var(--grey-light); }

.logo-symbol-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.symbol-block {}
.symbol-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.symbol-display {
  background: var(--navy);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  min-height: 80px;
}
.symbol-desc {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* Bindu Orbit Symbol */
.bindu-orbit {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bindu-center {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  z-index: 3;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
}
.orbit-1 { width: 30px; height: 30px; opacity: 0.8; }
.orbit-2 { width: 54px; height: 54px; opacity: 0.4; }

/* Clear Space */
.clearspace-display { margin-bottom: 8px; }
.clearspace-outer {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1.5px dashed rgba(14,124,102,0.4);
  border-radius: 4px;
}
.clearspace-inner {
  border: 1px solid var(--grey-light);
  padding: 8px;
  border-radius: 3px;
}
.cs-label {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  color: var(--teal);
}
.cs-top { top: 4px; left: 50%; transform: translateX(-50%); }
.cs-bottom { bottom: 4px; left: 50%; transform: translateX(-50%); }
.cs-left { left: 4px; top: 50%; transform: translateY(-50%); }
.cs-right { right: 4px; top: 50%; transform: translateY(-50%); }

/* Min Size */
.minsize-display { margin-bottom: 8px; }
.minsize-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.logo-min-print { height: 25px; object-fit: contain; }
.logo-min-digital { height: 18px; object-fit: contain; }
.minsize-tag {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--grey-mid);
}

/* ═══════════════════════════════════════════════════════════
   PAGE 05 — LOGO CONSTRUCTION
═══════════════════════════════════════════════════════════ */
.construction-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}
.construction-diagram {
  position: relative;
  margin-bottom: 20px;
}
.diagram-box {
  position: relative;
  border: 1.5px dashed rgba(14,124,102,0.35);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 4px;
}
.logo-construction-img { max-height: 80px; object-fit: contain; }
.grid-line {
  position: absolute;
  background: rgba(14,124,102,0.2);
}
.grid-h1 { height: 1px; width: 100%; top: 33%; left: 0; }
.grid-h2 { height: 1px; width: 100%; top: 66%; left: 0; }
.grid-v1 { width: 1px; height: 100%; left: 33%; top: 0; }
.grid-v2 { width: 1px; height: 100%; left: 66%; top: 0; }
.dim-label {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--teal);
  margin-top: 6px;
  text-align: center;
}

.anatomy-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.anatomy-item {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-light);
  align-items: flex-start;
}
.anatomy-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  color: var(--teal);
  min-width: 22px;
}
.anatomy-desc {
  font-family: var(--font-body);
  font-size: 9.5px;
  color: var(--charcoal);
  line-height: 1.5;
}

.logo-versions-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.logo-versions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.lv-item { display: flex; flex-direction: column; gap: 6px; }
.lv-bg {
  border-radius: 5px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}
.lv-white { background: var(--off-white); border: 1px solid var(--grey-light); }
.lv-dark { background: var(--navy); }
.lv-teal-bg { background: linear-gradient(135deg, var(--teal), var(--forest)); }
.lv-horizontal { min-height: 50px; }
.lv-img { max-height: 40px; object-fit: contain; }
.lv-invert { filter: invert(1) brightness(2); }
.lv-horizontal-img { max-height: 30px; }
.lv-name {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--grey-mid);
  text-align: center;
}

/* Bindu small */
.bindu-small {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bs-center {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
}
.bs-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.8);
}
.bs-r1 { width: 22px; height: 22px; }
.bs-r2 { width: 40px; height: 40px; opacity: 0.5; }

.specs-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.specs-grid { display: flex; flex-direction: column; gap: 6px; }
.spec-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 6px 10px;
  background: var(--off-white);
  border-radius: 4px;
  border-left: 3px solid var(--teal);
}
.spec-format {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  color: var(--teal);
  min-width: 100px;
}
.spec-use {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════
   PAGE 06 — LOGO USAGE
═══════════════════════════════════════════════════════════ */
.usage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}
.usage-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 3px;
}
.correct { color: var(--teal); background: rgba(14,124,102,0.08); }
.incorrect { color: #DC2626; background: rgba(220,38,38,0.08); }
.usage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.usage-item { display: flex; flex-direction: column; gap: 5px; }
.usage-demo {
  border-radius: 5px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.ub-white { background: var(--white); border: 1px solid var(--grey-light); }
.ub-dark { background: var(--navy); }
.ub-teal { background: linear-gradient(135deg, var(--teal), var(--forest)); }
.ub-busy { background: linear-gradient(45deg, #6B7280, #9CA3AF, #6B7280); }
.ub-yellow { background: #FCD34D; }
.ud-img { max-height: 32px; object-fit: contain; }
.ud-invert { filter: invert(1) brightness(2); }
.ud-white { filter: brightness(0) invert(1); }
.ud-mono { filter: grayscale(1) brightness(0); }
.ud-stretch { transform: scaleX(1.5); }
.ud-opacity { opacity: 0.4; }
.ud-rotate { transform: rotate(25deg); }
.usage-caption {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--grey-mid);
  line-height: 1.4;
}
.correct-item .usage-caption { color: var(--charcoal); }
.incorrect-item .usage-caption { color: #DC2626; }

.donts-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 12px;
  background: rgba(220,38,38,0.04);
  border-radius: 5px;
  border: 1px solid rgba(220,38,38,0.12);
}
.dont-item {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dont-x { color: #DC2626; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   PAGE 07 — COLOUR PALETTE
═══════════════════════════════════════════════════════════ */
.colour-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.colour-primary-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.colour-swatch-large {
  border-radius: 8px;
  padding: 20px 16px 16px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.swatch-info-light .swatch-name,
.swatch-info-light .swatch-role,
.swatch-info-light .swatch-codes { color: rgba(255,255,255,0.9); }
.swatch-info-dark .swatch-name,
.swatch-info-dark .swatch-role,
.swatch-info-dark .swatch-codes { color: rgba(15,23,42,0.85); }
.swatch-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.swatch-role {
  font-family: var(--font-body);
  font-size: 9px;
  margin-bottom: 8px;
  opacity: 0.8;
}
.swatch-codes {
  font-family: var(--font-body);
  font-size: 8.5px;
  line-height: 1.7;
  opacity: 0.85;
}

.colour-secondary-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.colour-swatch-med {
  border-radius: 6px;
  padding: 14px 10px 10px;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.swatch-name-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.swatch-hex {
  font-family: var(--font-body);
  font-size: 8px;
  opacity: 0.8;
}

.gradient-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}
.gradient-swatch {
  border-radius: 6px;
  padding: 14px 10px 10px;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
}
.grad-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
}
.grad-use {
  font-family: var(--font-body);
  font-size: 7.5px;
  color: rgba(255,255,255,0.7);
}
.colour-note {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--grey-mid);
  font-style: italic;
  padding: 8px 12px;
  background: var(--off-white);
  border-radius: 4px;
  border-left: 3px solid var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   PAGE 08 — TYPOGRAPHY
═══════════════════════════════════════════════════════════ */
.type-intro {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--teal);
  margin-bottom: 16px;
  font-weight: 500;
}
.type-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 16px;
}
.type-weight-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.type-alpha {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.8;
  letter-spacing: 0.5px;
}
.type-hierarchy { display: flex; flex-direction: column; gap: 10px; }
.th-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-light);
}
.th-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7.5px;
  letter-spacing: 2px;
  color: var(--grey-mid);
  text-transform: uppercase;
}
.th-sample { line-height: 1.3; }
.th-spec {
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--grey-mid);
}
.type-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 12px;
  background: var(--off-white);
  border-radius: 5px;
}
.type-rule-item {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.tr-icon { color: var(--teal); font-size: 11px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   PAGE 09 — BRAND VOICE
═══════════════════════════════════════════════════════════ */
.voice-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}
.voice-intro {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--off-white);
  border-radius: 5px;
  border-left: 3px solid var(--teal);
}
.voice-pillars { display: flex; flex-direction: column; gap: 10px; }
.vp-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.vp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  flex-shrink: 0;
}
.vp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.vp-desc {
  font-family: var(--font-body);
  font-size: 9.5px;
  color: var(--charcoal);
  line-height: 1.5;
}

.voice-do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.vdd-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.vdd-do { color: var(--teal); background: rgba(14,124,102,0.08); }
.vdd-dont { color: #DC2626; background: rgba(220,38,38,0.08); }
.vdd-item {
  font-family: var(--font-body);
  font-size: 9.5px;
  color: var(--charcoal);
  padding: 5px 0;
  border-bottom: 1px solid var(--grey-light);
  font-style: italic;
}
.vdd-no { color: #DC2626; text-decoration: line-through; }

.brand-quote {
  background: var(--navy);
  border-radius: 6px;
  padding: 16px 20px;
  position: relative;
}
.bq-mark {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--teal);
  line-height: 0.8;
  margin-bottom: 4px;
  opacity: 0.6;
}
.bq-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 8px;
}
.bq-attr {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 10 — STATIONERY
═══════════════════════════════════════════════════════════ */
.stationery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
  align-items: start;
}
.stat-item {}
.stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stat-spec {
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--grey-mid);
  margin-top: 6px;
  line-height: 1.5;
}

/* Business Card */
.biz-card {
  width: 100%;
  aspect-ratio: 90/55;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.biz-front {
  background: var(--white);
  border: 1px solid var(--grey-light);
}
.bc-logo { height: 28px; object-fit: contain; margin-bottom: 4px; }
.bc-info {}
.bc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  color: var(--navy);
}
.bc-title {
  font-family: var(--font-body);
  font-size: 7px;
  color: var(--grey-mid);
  margin-bottom: 4px;
}
.bc-contact {
  font-family: var(--font-body);
  font-size: 7px;
  color: var(--charcoal);
  line-height: 1.6;
}
.bc-web { color: var(--teal); }

.biz-back {
  background: linear-gradient(160deg, var(--teal), var(--navy));
}
.bc-back-content { display: flex; flex-direction: column; gap: 4px; height: 100%; justify-content: space-between; }
.bc-back-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 6px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.bc-services {}
.bc-service-item {
  font-family: var(--font-body);
  font-size: 6.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.bc-back-web {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 7px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}

/* Letterhead */
.letterhead-mock {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.lh-header {
  background: var(--navy);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lh-logo { height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
.lh-header-bar {
  flex: 1;
  height: 2px;
  background: var(--teal);
}
.lh-body { padding: 14px; }
.lh-line {
  height: 6px;
  background: var(--grey-light);
  border-radius: 3px;
  margin-bottom: 6px;
}
.lh-line-long { width: 100%; }
.lh-line-med { width: 65%; }
.lh-line-short { width: 40%; }
.lh-footer {
  border-top: 2px solid var(--teal);
  padding: 6px 14px;
  background: var(--off-white);
}
.lh-footer-text {
  font-family: var(--font-body);
  font-size: 7px;
  color: var(--grey-mid);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 11 — DIGITAL & APP
═══════════════════════════════════════════════════════════ */
.digital-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.app-section {}
.app-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.app-icons-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 10px;
}
.app-icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.app-icon {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-1024 { width: 52px; height: 52px; }
.ai-512  { width: 42px; height: 42px; }
.ai-192  { width: 34px; height: 34px; }
.ai-64   { width: 26px; height: 26px; }
.ai-32   { width: 20px; height: 20px; }
.ai-size {
  font-family: var(--font-body);
  font-size: 7px;
  color: var(--grey-mid);
  text-align: center;
  line-height: 1.4;
}
.ai-bindu { position: relative; display: flex; align-items: center; justify-content: center; }
.ai-center { background: var(--white); border-radius: 50%; position: absolute; }
.ai-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.7); }
.ai-1024 .ai-center { width: 8px; height: 8px; }
.ai-1024 .ai-r1 { width: 20px; height: 20px; }
.ai-1024 .ai-r2 { width: 36px; height: 36px; opacity: 0.5; }
.ai-512 .ai-center { width: 6px; height: 6px; }
.ai-512 .ai-r1 { width: 16px; height: 16px; }
.ai-512 .ai-r2 { width: 28px; height: 28px; opacity: 0.5; }
.ai-192 .ai-center { width: 5px; height: 5px; }
.ai-192 .ai-r1 { width: 13px; height: 13px; }
.ai-192 .ai-r2 { width: 22px; height: 22px; opacity: 0.5; }
.ai-64 .ai-center { width: 4px; height: 4px; }
.ai-64 .ai-r1 { width: 10px; height: 10px; }
.ai-64 .ai-r2 { width: 17px; height: 17px; opacity: 0.5; }
.ai-32 .ai-center { width: 3px; height: 3px; }
.ai-32 .ai-r1 { width: 8px; height: 8px; }
.ai-32 .ai-r2 { width: 13px; height: 13px; opacity: 0.5; }

.app-icon-note {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--grey-mid);
  line-height: 1.5;
}

.splash-mock {
  background: var(--navy);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.splash-logo { height: 36px; object-fit: contain; filter: brightness(0) invert(1); }
.splash-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 7px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.ui-colours { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.ui-col-item { display: flex; align-items: center; gap: 10px; }
.ui-swatch { width: 28px; height: 28px; border-radius: 5px; flex-shrink: 0; border: 1px solid rgba(0,0,0,0.08); }
.ui-col-name {
  font-family: var(--font-body);
  font-size: 9.5px;
  color: var(--charcoal);
  flex: 1;
}
.ui-col-hex {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--grey-mid);
  font-weight: 500;
}

.email-sig-mock {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 5px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.esm-left {}
.esm-logo { height: 32px; object-fit: contain; }
.esm-divider { width: 1px; background: var(--teal); align-self: stretch; }
.esm-right {}
.esm-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  color: var(--navy);
}
.esm-title {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--teal);
  margin-bottom: 4px;
}
.esm-contact, .esm-web {
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--charcoal);
  line-height: 1.6;
}
.esm-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 7px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 12 — SOCIAL MEDIA
═══════════════════════════════════════════════════════════ */
.social-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.social-formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sf-item { display: flex; flex-direction: column; gap: 6px; }
.sf-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7.5px;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
}
.sf-spec {
  font-family: var(--font-body);
  font-size: 7.5px;
  color: var(--grey-mid);
}
.sf-mock { border-radius: 6px; overflow: hidden; }
.sf-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
}
.sf-circle-inner { display: flex; align-items: center; justify-content: center; }
.ig-bindu { position: relative; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.ig-center { width: 6px; height: 6px; border-radius: 50%; background: var(--white); position: absolute; }
.ig-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.8); }
.ig-r1 { width: 16px; height: 16px; }
.ig-r2 { width: 30px; height: 30px; opacity: 0.5; }

.sf-square {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal), var(--forest));
}
.sf-post-inner {
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.sfp-top-bar { height: 2px; background: var(--gold); border-radius: 1px; }
.sfp-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.sfp-metric {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.sfp-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}
.sfp-sub {
  font-family: var(--font-body);
  font-size: 7px;
  color: rgba(255,255,255,0.6);
}
.sfp-logo { height: 16px; object-fit: contain; filter: brightness(0) invert(1); align-self: flex-end; }

.sf-story {
  width: 55%;
  aspect-ratio: 9/16;
  background: var(--navy);
}
.sf-story-inner {
  height: 100%;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sfs-header {}
.sfs-logo { height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.sfs-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.sfs-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
}
.sfs-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 9px;
  color: var(--teal);
}
.sfs-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.sf-linkedin {
  width: 100%;
  aspect-ratio: 4/1;
  background: linear-gradient(135deg, var(--teal), var(--navy));
}
.sf-li-inner {
  height: 100%;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sf-li-logo { height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.sf-li-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  color: var(--white);
}
.sf-li-tag {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 7px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.social-rules {
  background: var(--off-white);
  border-radius: 6px;
  padding: 14px;
}
.sr-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 8.5px;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sr-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--charcoal);
  padding: 5px 0;
  border-bottom: 1px solid var(--grey-light);
  line-height: 1.4;
}
.sr-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 13 — CLINIC ENVIRONMENT
═══════════════════════════════════════════════════════════ */
.clinic-intro {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
}
.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.clinic-item {}
.clinic-mock {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}
.clinic-item-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7.5px;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.clinic-item-spec {
  font-family: var(--font-body);
  font-size: 7.5px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* Clinic Fascia */
.clinic-fascia { background: var(--navy); min-height: 80px; }
.cf-inner {
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
}
.cf-bar { width: 100%; height: 3px; background: var(--teal); margin-bottom: 6px; }
.cf-logo { height: 24px; object-fit: contain; filter: brightness(0) invert(1); }
.cf-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 6px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* Reception Wall */
.clinic-reception { background: var(--off-white); border: 1px solid var(--grey-light); min-height: 80px; }
.cr-inner { padding: 12px; height: 100%; display: flex; align-items: center; justify-content: center; }
.cr-wall { text-align: center; }
.cr-logo-wall { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 4px; }
.cr-bindu { position: relative; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.crb-center { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); position: absolute; }
.crb-ring { position: absolute; border-radius: 50%; border: 1.5px solid var(--teal); }
.crb-r1 { width: 14px; height: 14px; opacity: 0.7; }
.crb-r2 { width: 24px; height: 24px; opacity: 0.3; }
.cr-brand-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 2px;
}
.cr-tagline-wall {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 6px;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
}

/* Clinic Banner */
.clinic-banner { background: linear-gradient(160deg, var(--teal), var(--navy)); min-height: 80px; }
.cb-inner {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
  text-align: center;
}
.cb-logo { height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.cb-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  color: var(--white);
  line-height: 1.3;
}
.cb-sub {
  font-family: var(--font-body);
  font-size: 7px;
  color: rgba(255,255,255,0.7);
}
.cb-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7px;
  color: var(--gold);
  letter-spacing: 1px;
}

/* Clinic Wall Graphic */
.clinic-wall-graphic { background: var(--white); border: 1px solid var(--grey-light); min-height: 80px; }
.cwg-inner {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  justify-content: center;
}
.cwg-metric { display: flex; flex-direction: column; }
.cwg-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 6.5px;
  letter-spacing: 1.5px;
  color: var(--grey-mid);
  text-transform: uppercase;
}
.cwg-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--teal);
  line-height: 1;
}

.clinic-specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px;
  background: var(--off-white);
  border-radius: 5px;
}
.cs-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--charcoal);
  line-height: 1.4;
}
.cs-icon { color: var(--teal); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   PAGE 14 — OUTDOOR & HOARDINGS
═══════════════════════════════════════════════════════════ */
.outdoor-layout {}
.hoarding-main { margin-bottom: 16px; }
.hoarding-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hoarding-mock {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 2/1;
  max-height: 120px;
}
.hm-inner {
  height: 100%;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hm-left { display: flex; flex-direction: column; gap: 6px; }
.hm-logo { height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.hm-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  line-height: 1.1;
}
.hm-sub {
  font-family: var(--font-body);
  font-size: 9px;
  color: rgba(255,255,255,0.65);
}
.hm-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.hm-url {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 1px;
}
.hm-right { display: flex; align-items: center; justify-content: center; }
.hm-bindu-large {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hmb-center { width: 14px; height: 14px; border-radius: 50%; background: var(--teal); position: absolute; }
.hmb-ring { position: absolute; border-radius: 50%; border: 2px solid var(--teal); }
.hmb-r1 { width: 38px; height: 38px; opacity: 0.7; }
.hmb-r2 { width: 70px; height: 70px; opacity: 0.3; }

.hoarding-spec {
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--grey-mid);
  margin-top: 6px;
}

.outdoor-smaller {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.outdoor-item {}
.outdoor-item-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7.5px;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.outdoor-mock-sm {
  border-radius: 6px;
  overflow: hidden;
  min-height: 70px;
}
.outdoor-unipole { background: var(--navy); }
.ou-inner {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
  text-align: center;
}
.ou-logo { height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.ou-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  color: var(--white);
  line-height: 1.3;
}
.ou-url {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 7px;
  color: var(--teal);
}

.outdoor-transit { background: linear-gradient(135deg, var(--teal), var(--forest)); }
.ot-inner {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.ot-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  color: var(--white);
  line-height: 1.3;
}
.ot-sub {
  font-family: var(--font-body);
  font-size: 7.5px;
  color: rgba(255,255,255,0.7);
}
.ot-logo { height: 14px; object-fit: contain; filter: brightness(0) invert(1); align-self: flex-end; }

.outdoor-pillar { background: var(--navy); }
.op-inner {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
}
.op-bindu { position: relative; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.opb-center { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); position: absolute; }
.opb-ring { position: absolute; border-radius: 50%; border: 1.5px solid var(--teal); }
.opb-r1 { width: 16px; height: 16px; opacity: 0.7; }
.opb-r2 { width: 28px; height: 28px; opacity: 0.3; }
.op-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 9px;
  color: var(--white);
  letter-spacing: 2px;
}
.op-sub {
  font-family: var(--font-body);
  font-size: 7px;
  color: rgba(255,255,255,0.6);
}

.outdoor-rules {
  background: var(--off-white);
  border-radius: 6px;
  padding: 12px;
}
.or-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 8.5px;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.or-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.or-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--charcoal);
  line-height: 1.4;
}
.or-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 15 — CORPORATE ATTIRE
═══════════════════════════════════════════════════════════ */
.attire-layout {}
.attire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.attire-item {}
.attire-mock {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.attire-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7.5px;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.attire-spec {
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--charcoal);
  line-height: 1.7;
}

/* Polo */
.polo-mock { background: var(--navy); padding: 12px; }
.polo-shape {
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.polo-collar {
  width: 30px;
  height: 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 50% 50% 0 0;
  margin-bottom: -2px;
}
.polo-body {
  width: 70px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px 4px 8px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 8px;
}
.polo-logo-area { display: flex; align-items: center; justify-content: center; }
.polo-bindu { position: relative; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.pb-center { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); position: absolute; }
.pb-ring { position: absolute; border-radius: 50%; border: 1px solid var(--teal); }
.pb-r1 { width: 10px; height: 10px; opacity: 0.8; }
.pb-r2 { width: 17px; height: 17px; opacity: 0.4; }

.polo-white { background: var(--off-white); border: 1px solid var(--grey-light); }
.polo-shape-white {}
.polo-collar-white { background: rgba(0,0,0,0.08); }
.polo-body-white { background: rgba(0,0,0,0.03); }
.polo-bindu-teal {}
.pb-center-teal { background: var(--teal); }
.pb-r1-teal { border-color: var(--teal); }
.pb-r2-teal { border-color: var(--teal); }

/* Apron */
.apron-mock { background: var(--off-white); border: 1px solid var(--grey-light); padding: 10px; }
.apron-shape { width: 60px; }
.apron-body {
  width: 60px;
  height: 80px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 8px;
}
.apron-logo {}
.apron-logo-img { height: 20px; object-fit: contain; }

/* Cap */
.cap-mock { background: var(--navy); padding: 12px; }
.cap-shape { display: flex; flex-direction: column; align-items: center; }
.cap-body {
  width: 70px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cap-logo {}
.cap-bindu { position: relative; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.capb-center { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); position: absolute; }
.capb-ring { position: absolute; border-radius: 50%; border: 1px solid var(--teal); }
.capb-r1 { width: 11px; height: 11px; opacity: 0.8; }
.capb-r2 { width: 19px; height: 19px; opacity: 0.4; }
.cap-brim {
  width: 80px;
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 0 0 20px 20px;
}

.attire-rules {
  background: var(--off-white);
  border-radius: 6px;
  padding: 12px;
}
.ar-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 8.5px;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ar-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--charcoal);
  padding: 5px 0;
  border-bottom: 1px solid var(--grey-light);
  line-height: 1.4;
}
.ar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 16 — MERCHANDISE
═══════════════════════════════════════════════════════════ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.merch-item { display: flex; flex-direction: column; gap: 6px; }
.merch-mock {
  border-radius: 6px;
  overflow: hidden;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merch-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
}
.merch-spec {
  font-family: var(--font-body);
  font-size: 7.5px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* Mug */
.mug-mock { background: var(--off-white); border: 1px solid var(--grey-light); padding: 8px; }
.mug-shape { position: relative; display: flex; align-items: center; }
.mug-body {
  width: 50px;
  height: 55px;
  background: var(--navy);
  border-radius: 4px 4px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
}
.mug-logo { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mug-bindu { position: relative; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }
.mb-center { width: 3px; height: 3px; border-radius: 50%; background: var(--teal); position: absolute; }
.mb-ring { position: absolute; border-radius: 50%; border: 1px solid var(--teal); }
.mb-r1 { width: 9px; height: 9px; opacity: 0.8; }
.mb-r2 { width: 15px; height: 15px; opacity: 0.4; }
.mug-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
}
.mug-handle {
  width: 12px;
  height: 24px;
  border: 3px solid var(--navy);
  border-left: none;
  border-radius: 0 8px 8px 0;
  margin-left: -2px;
}

/* Notebook */
.notebook-mock { background: var(--off-white); border: 1px solid var(--grey-light); padding: 8px; }
.nb-shape { display: flex; }
.nb-cover {
  width: 50px;
  height: 65px;
  background: var(--navy);
  border-radius: 2px 4px 4px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
}
.nb-logo { height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.nb-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}
.nb-spine {
  width: 6px;
  height: 65px;
  background: var(--teal);
  border-radius: 0 2px 2px 0;
}

/* Bottle */
.bottle-mock { background: var(--off-white); border: 1px solid var(--grey-light); padding: 8px; }
.bottle-shape { display: flex; flex-direction: column; align-items: center; }
.bottle-cap {
  width: 22px;
  height: 10px;
  background: var(--navy);
  border-radius: 3px 3px 0 0;
}
.bottle-body {
  width: 32px;
  height: 60px;
  background: var(--teal);
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottle-logo {}
.btl-bindu { position: relative; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.btlb-center { width: 4px; height: 4px; border-radius: 50%; background: var(--white); position: absolute; }
.btlb-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.7); }
.btlb-r1 { width: 10px; height: 10px; }
.btlb-r2 { width: 17px; height: 17px; opacity: 0.5; }

/* Tote */
.tote-mock { background: var(--off-white); border: 1px solid var(--grey-light); padding: 8px; }
.tote-shape { display: flex; flex-direction: column; align-items: center; }
.tote-handles { display: flex; gap: 16px; margin-bottom: -4px; }
.th-left, .th-right {
  width: 3px;
  height: 16px;
  background: var(--charcoal);
  border-radius: 2px;
}
.tote-body {
  width: 60px;
  height: 55px;
  background: #F5F0E8;
  border: 1px solid #D4C9B0;
  border-radius: 2px 2px 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tote-logo { height: 22px; object-fit: contain; }

/* Pen */
.pen-mock { background: var(--off-white); border: 1px solid var(--grey-light); padding: 8px; }
.pen-shape { position: relative; display: flex; align-items: center; }
.pen-body {
  width: 70px;
  height: 10px;
  background: var(--navy);
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pen-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4px;
  color: var(--teal);
  letter-spacing: 1px;
}
.pen-tip {
  width: 12px;
  height: 10px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.pen-clip {
  position: absolute;
  top: -6px;
  left: 10px;
  width: 3px;
  height: 18px;
  background: var(--teal);
  border-radius: 2px;
}

/* Badge */
.badge-mock { background: var(--off-white); border: 1px solid var(--grey-light); padding: 8px; }
.badge-shape { display: flex; align-items: center; justify-content: center; }
.badge-body {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.badge-bindu { position: relative; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }
.bdgb-center { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); position: absolute; }
.bdgb-ring { position: absolute; border-radius: 50%; border: 1px solid var(--gold); }
.bdgb-r1 { width: 9px; height: 9px; opacity: 0.8; }
.bdgb-r2 { width: 15px; height: 15px; opacity: 0.4; }
.badge-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 5px;
  color: var(--gold);
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   PAGE 17 — FLAME PROGRAMME
═══════════════════════════════════════════════════════════ */
.flame-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
}
.flame-logo-block { margin-bottom: 20px; }
.flame-logo-display {
  background: var(--navy);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.flame-icon { display: flex; align-items: center; justify-content: center; }
.flame-shape {
  width: 36px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), var(--flame-orange));
  clip-path: polygon(50% 0%, 80% 30%, 100% 60%, 70% 80%, 50% 100%, 30% 80%, 0% 60%, 20% 30%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fs-inner {
  width: 16px;
  height: 22px;
  background: rgba(255,255,255,0.3);
  clip-path: polygon(50% 0%, 80% 40%, 50% 100%, 20% 40%);
}
.fw-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 4px;
}
.fw-sub {
  font-family: var(--font-body);
  font-size: 8px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}
.flame-tagline-block {
  background: linear-gradient(135deg, var(--flame-orange), var(--gold));
  border-radius: 4px;
  padding: 6px 12px;
  display: inline-block;
}
.ftb-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.fc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 8.5px;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fc-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.fc-swatch {
  border-radius: 5px;
  padding: 10px 8px 8px;
  min-height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
}
.fc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fc-hex {
  font-family: var(--font-body);
  font-size: 7px;
  color: rgba(255,255,255,0.65);
}
.fc-note {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--grey-mid);
  line-height: 1.5;
  font-style: italic;
}

.flame-pillars-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.flame-pillars { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fp-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 10px;
  background: var(--off-white);
  border-radius: 4px;
  border-left: 3px solid var(--flame-orange);
}
.fp-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  color: var(--flame-orange);
  min-width: 22px;
}
.fp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.fp-desc {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--charcoal);
  line-height: 1.4;
}

.fc2-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 8.5px;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fc2-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.fc2-item {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--charcoal);
  padding: 5px 8px;
  background: var(--off-white);
  border-radius: 3px;
  border-left: 2px solid var(--flame-orange);
}

/* ═══════════════════════════════════════════════════════════
   PAGE 18 — BRAND DON'TS & CLOSING
═══════════════════════════════════════════════════════════ */
.donts-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}
.donts-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.donts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.dg-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 6px 8px;
  background: rgba(220,38,38,0.04);
  border-radius: 4px;
  border-left: 2px solid rgba(220,38,38,0.3);
}
.dg-icon {
  color: #DC2626;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.dg-text {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: var(--charcoal);
  line-height: 1.4;
}

.brand-positioning-summary { margin-bottom: 16px; }
.bps-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bps-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bps-col {}
.bps-col-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.bps-not { color: #DC2626; background: rgba(220,38,38,0.08); }
.bps-yes-head { color: var(--teal); background: rgba(14,124,102,0.08); }
.bps-item {
  font-family: var(--font-body);
  font-size: 8.5px;
  padding: 4px 8px;
  border-radius: 3px;
  margin-bottom: 3px;
}
.bps-no { color: #DC2626; text-decoration: line-through; background: rgba(220,38,38,0.04); }
.bps-yes { color: var(--charcoal); background: rgba(14,124,102,0.06); }

.closing-vision {
  background: var(--navy);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.cv-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cv-text {
  font-family: var(--font-body);
  font-size: 9.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 12px;
}
.cv-phases { display: flex; flex-direction: column; gap: 5px; }
.cvp-item { display: flex; gap: 10px; align-items: flex-start; }
.cvp-phase {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8px;
  color: var(--teal);
  letter-spacing: 1px;
  min-width: 60px;
  flex-shrink: 0;
}
.cvp-desc {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: rgba(255,255,255,0.65);
}

.closing-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px;
  background: var(--off-white);
  border-radius: 6px;
  border: 1px solid var(--grey-light);
}
.closing-logo-img { height: 40px; object-fit: contain; }
.closing-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
.closing-copy {
  font-family: var(--font-body);
  font-size: 8px;
  color: var(--grey-mid);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   MOCKUP PHOTO STYLES
═══════════════════════════════════════════════════════════ */
.mockup-photo {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
.mockup-photo-wide {
  max-height: 120px;
  object-fit: contain;
}
.mockup-photo-full {
  max-height: 100px;
  object-fit: cover;
}
.stat-mockup-photo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.digital-mockup-row {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.clinic-photo-mockup {
  margin-top: 12px;
}
.outdoor-photo-mockup {
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════════════════════════ */
@media print {
  body { background: white; }
  .page {
    margin: 0;
    box-shadow: none;
    page-break-after: always;
    break-after: page;
  }
  .page:last-child { page-break-after: avoid; }
}

@page {
  size: A4 landscape;
  margin: 0;
}