/* ============================================================
   OPEN SANS TYPOGRAPHY SYSTEM — Complete Override
   All Poppins → Open Sans 700/800
   All Lora    → Open Sans 400/300i
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,600;1,700&display=swap');

/* ── Global reset ── */
*,
body,
html,
p,
li,
td,
th,
span,
div,
a,
blockquote {
  font-family: 'Open Sans', sans-serif !important;
}

body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #cccccc;
  letter-spacing: 0.01em;
}

/* ── Headings ── */
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: 52px; }
h2 { font-size: 40px; }
h3 { font-size: 30px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

/* ── Section heading titles ── */
.heading .heading--title {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ── Bio pull-quote (intro paragraph) ── */
.pull-quote {
  max-width: 820px;
  margin: 48px auto 56px;
  padding: 36px 48px;
  border-left: 4px solid #f5af00;
  background: rgba(245,175,0,0.05);
  border-radius: 0 4px 4px 0;
}

.pull-quote p {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  color: #cccccc;
  margin: 0;
  white-space: pre-line;
}

/* ── Body copy blocks under each section ── */
.cat-body-copy {
  max-width: 820px;
  margin: 40px auto 56px;
  padding: 0 16px;
}

.cat-body-copy p {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #cccccc;
  margin-bottom: 20px;
}

.cat-body-copy p strong {
  font-weight: 700;
  color: #ffffff;
}

.cat-body-copy p em,
.cat-body-copy p strong em {
  font-style: italic;
  color: #f5af00;
  font-weight: 600;
}

/* ── Deliverables list ── */
.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 14px;
  color: #bbbbbb;
  line-height: 1.6;
}

.deliverables-list li .arrow {
  color: #f5af00;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Wall Section ── */
.wall-section {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 16px;
}

.wall-label {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5af00;
  margin-bottom: 28px;
}

.wall {
  display: flex;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  min-height: 320px;
}

.panel {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 28px 22px;
  overflow: hidden;
  transition: flex 0.3s ease;
}

.panel:hover { flex: 1.4; }

.panel-color {
  position: absolute;
  inset: 0;
  opacity: 0.82;
}

.p1 .panel-color { background: #c0392b; }
.p2 .panel-color { background: #1abc9c; }
.p3 .panel-color { background: #e67e22; }
.p4 .panel-color { background: #2c3e50; }

.panel-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-anchor {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.panel-tag {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.panel-name {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.panel-sub {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  max-width: 180px;
}

/* QR dot grid */
.qr-box {
  display: grid;
  grid-template-columns: repeat(5, 10px);
  gap: 3px;
  margin-top: 10px;
}

.qr-box span {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.9);
  border-radius: 1px;
}

.qr-box span.e {
  background: transparent;
}

/* ── Section Divider ── */
.section-divider {
  max-width: 960px;
  margin: 48px auto;
  padding: 0 16px;
}

.section-divider hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── Question Section ── */
.question-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 16px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.question-eyebrow {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5af00;
  margin-bottom: 14px;
}

.question-headline {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 440px;
}

.question-headline em {
  font-style: italic;
  color: #f5af00;
}

.question-body {
  flex: 1;
  min-width: 240px;
}

.question-body > p {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.7;
  margin-bottom: 28px;
}

.three-answers {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.answer-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.answer-num {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 42px;
  font-weight: 800;
  color: rgba(245,175,0,0.2);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.answer-text {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

/* ── Colour Section ── */
.colour-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 16px;
}

.colour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .colour-grid { grid-template-columns: repeat(2, 1fr); }
}

.colour-tile {
  padding: 24px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ct-red   { background: rgba(192,57,43,0.15);  border-left: 3px solid #c0392b; }
.ct-teal  { background: rgba(26,188,156,0.12); border-left: 3px solid #1abc9c; }
.ct-amber { background: rgba(230,126,34,0.12); border-left: 3px solid #e67e22; }
.ct-grey  { background: rgba(44,62,80,0.3);    border-left: 3px solid #7f8c8d; }

.ct-service {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ct-signal {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.6;
}

.ct-swatch {
  height: 3px;
  border-radius: 2px;
  margin-top: 4px;
}

.ct-red   .ct-swatch { background: #c0392b; }
.ct-teal  .ct-swatch { background: #1abc9c; }
.ct-amber .ct-swatch { background: #e67e22; }
.ct-grey  .ct-swatch { background: #7f8c8d; }

/* ── Execution Section ── */
.execution-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 16px;
}

.exec-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.exec-title {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5af00;
  white-space: nowrap;
}

.exec-rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.exec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

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

.exec-card {
  padding: 28px 24px;
  border-radius: 4px;
  border-top: 3px solid;
  background: rgba(255,255,255,0.04);
}

.ec-red   { border-color: #c0392b; }
.ec-teal  { border-color: #1abc9c; }
.ec-amber { border-color: #e67e22; }
.ec-grey  { border-color: #7f8c8d; }
.ec-dark  { border-color: #f5af00; }

.ec-num {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 44px;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -8px;
}

.ec-label {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5af00;
  margin-bottom: 8px;
}

.ec-heading {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ec-body {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  color: #999999;
  line-height: 1.7;
}

/* ── Typography Section ── */
.typo-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 16px;
}

.typo-label {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5af00;
  margin-bottom: 36px;
}

.typo-levels {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.typo-level {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tl-tag {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,175,0,0.6);
  padding-top: 6px;
  flex-shrink: 0;
  width: 60px;
}

.tl-l1 {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tl-l2 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.tl-l2 span {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: rgba(255,255,255,0.07);
  padding: 6px 14px;
  border-radius: 3px;
}

.tl-l3 {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 10px;
}

.tl-desc {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 12px;
  color: #777777;
  font-style: italic;
}

/* ── Closing Section ── */
.closing-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 16px;
}

.closing-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

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

.closing-eyebrow {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5af00;
  margin-bottom: 16px;
}

.closing-headline {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pillar {
  min-width: 120px;
}

.pillar-name {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f5af00;
  margin-bottom: 4px;
}

.pillar-value {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  color: #888888;
}

.closing-brand {
  text-align: right;
  min-width: 200px;
}

.closing-brand-name {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.closing-brand-name span {
  color: #f5af00;
}

.closing-client {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 12px;
}

.closing-tagline {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: #888888;
  line-height: 1.6;
}

/* ── Website / Publication links ── */
.cat-body-copy a,
.col-sm-4 a,
.col-sm-6 a {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #f5af00;
  word-break: break-all;
}

/* ── Responsive tweaks ── */
@media (max-width: 768px) {
  .pull-quote { padding: 24px 24px; margin: 32px 16px 40px; }
  .question-section { gap: 32px; }
  .question-headline { font-size: 22px; }
  .wall { flex-direction: column; }
  .panel-name { font-size: 22px; }
  .tl-l1 { font-size: 34px; }
}
