/* ==========================================================================
   HARPY MEDIA — styles.css
   Complete design system (rebuilt — original file was missing).
   Dark theme · #0E0F13 · Orange #E8622A · Fonts: Inter + Krona One
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
  --bg: #080810;
  --bg-2: #0B0B14;
  --bg-3: #101018;
  --card: #101018;
  --card-2: #14141E;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .17);
  --orange: #E8622A;
  --orange-soft: rgba(232, 98, 42, .12);
  --orange-line: rgba(232, 98, 42, .4);
  --t-90: #F5F6F8;
  --t-80: #E8EAEF;
  --t-60: rgba(232, 234, 239, .68);
  --t-50: rgba(232, 234, 239, .55);
  --t-40: rgba(232, 234, 239, .42);
  --t-30: rgba(232, 234, 239, .30);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Krona One', 'Inter', sans-serif;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .38);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--t-80);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

[id] { scroll-margin-top: 104px; }

::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   2. BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  color: var(--t-90);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
}

h1 {
  font-size: clamp(36px, 4.7vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.015em;
}

h2 { font-size: clamp(28px, 3.7vw, 48px); line-height: 1.15; }
h3 { font-size: clamp(22px, 2.6vw, 29px); }
h4 { font-size: 19px; }
h5 { font-size: 14px; }

p a { color: var(--orange); }
p a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.shell { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section { padding: 104px 0; }
.section--alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--flush { padding: 104px 0; }

.measure { max-width: 760px; }
.measure-wide { max-width: 820px; }

.stack span { display: block; }
.accent { color: var(--orange); }
.dim { color: var(--t-40); }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow--muted { color: var(--t-30); margin-bottom: 8px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--orange-line);
  background: var(--orange-soft);
  color: #F49B78;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead { font-size: clamp(17px, 1.6vw, 19px); line-height: 1.65; color: var(--t-60); }
.body { font-size: 16px; line-height: 1.75; color: var(--t-50); }
.body--bright { color: var(--t-80); }

.callout {
  position: relative;
  padding: 20px 24px;
  border-left: 3px solid var(--orange);
  background: var(--orange-soft);
  border-radius: 0 12px 12px 0;
  color: var(--t-80);
  font-size: 16px;
  line-height: 1.7;
}

.callout--titled {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 14px;
  padding: 24px 26px;
}
.callout--titled b {
  color: var(--t-90);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.callout--titled span { color: var(--t-60); font-size: 15.5px; line-height: 1.7; }

.keyline { margin-top: 8px; font-size: 17px; font-weight: 600; color: var(--t-90); }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 36px;
  transition: gap .2s;
}
.tlink:hover { gap: 14px; }

.pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--orange-line);
  color: #F49B78;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.rule { border: 0; border-top: 1px solid var(--line); margin: 72px 0 0; }

.subhead {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.outcome-line { font-size: 17px; font-weight: 600; color: var(--t-90); }

.related { margin-top: 26px; padding-top: 18px; border-top: 1px dashed var(--line-strong); }
.related p { font-size: 13px; line-height: 1.8; color: var(--t-30); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s, color .18s;
}
.btn .arw { width: 14px; height: 14px; flex: none; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px rgba(232, 98, 42, .25);
}
.btn--primary:hover {
  background: #F06F3B;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232, 98, 42, .35);
}

.btn--ghost { border: 1px solid var(--line-strong); color: var(--t-80); }
.btn--ghost:hover { border-color: rgba(255, 255, 255, .4); color: #fff; transform: translateY(-2px); }

.btn--sm { padding: 10px 18px; font-size: 13.5px; border-radius: 8px; }

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 16, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header .shell {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
  position: relative;
}

.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { display: block; height: 34px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav a { font-size: 15px; font-weight: 500; color: var(--t-60); transition: color .15s; }
.nav a:hover { color: #fff; }

.site-header .btn { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #fff;
}

/* --------------------------------------------------------------------------
   6. HERO (all variants)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 130px 0 104px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 42, .16), transparent 65%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}

.hero__col { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.hero__col h1 { margin-top: 6px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 4px; }

.hero__note, .proof { font-size: 14px; color: var(--t-40); line-height: 1.6; }
.hero__note b, .proof b { color: var(--t-80); font-weight: 700; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 760px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: var(--shadow);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Collage (Creative page) */
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.collage__sq, .collage__wide {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.collage__sq { aspect-ratio: 1 / 1; }
.collage__wide { grid-column: 1 / -1; aspect-ratio: 8 / 5; }
.collage img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   7. SPLIT / PROBLEM / SYMPTOMS / LADDER
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.split__head h2 { margin-top: 6px; }

.problem__copy { display: flex; flex-direction: column; gap: 22px; padding-top: 12px; }

.symptoms li {
  padding: 20px 4px 20px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--t-60);
  font-size: 17px;
  position: relative;
}
.symptoms li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 27px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  transform: rotate(45deg);
  border-radius: 2px;
}
.symptoms li.is-key { color: var(--orange); font-weight: 700; border-bottom: 0; }

.ladder { display: flex; flex-direction: column; }
.ladder__row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.ladder__row:last-child { border-bottom: 1px solid var(--line); }
.ladder__num { font-family: var(--display); font-size: 13px; color: var(--orange); letter-spacing: .12em; padding-top: 4px; }
.ladder h4 { margin-bottom: 8px; }
.ladder p { font-size: 15px; color: var(--t-40); }

/* --------------------------------------------------------------------------
   8. METRICS / STATS / OUTCOMES
   -------------------------------------------------------------------------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.metrics--three { grid-template-columns: repeat(3, 1fr); }

.metrics__cell, .stat, .outcome {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s, transform .2s;
}
.metrics__cell:hover, .stat:hover, .outcome:hover { border-color: var(--orange-line); transform: translateY(-3px); }

.metrics__num, .stat__num, .outcome__num {
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 36px);
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.metrics__label, .stat__label, .outcome__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-60);
  margin-bottom: 12px;
}

.metrics__note, .stat__note, .outcome__note { font-size: 13.5px; color: var(--t-40); line-height: 1.6; }

.stats, .outcomes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* --------------------------------------------------------------------------
   9. GROWTH PILLARS
   -------------------------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }

.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color .2s, transform .2s, background .2s;
}
.pillar:hover { border-color: var(--orange-line); background: var(--card-2); transform: translateY(-4px); }

.pillar__icon { color: var(--orange); }
.pillar h3 { font-size: 19px; line-height: 1.3; }
.pillar p { font-size: 14.5px; color: var(--t-40); line-height: 1.65; flex: 1; }

.pillar__chev {
  position: absolute;
  top: 26px;
  right: 24px;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}
.pillar:hover .pillar__chev { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   10. QUOTES / TESTIMONIALS
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quotes--two { grid-template-columns: repeat(2, 1fr); }

.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote p { font-size: 16.5px; line-height: 1.65; color: var(--t-80); }
.quote cite { font-style: normal; display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.quote cite b { font-size: 14px; color: var(--t-90); }
.quote cite span { font-size: 13px; color: var(--t-40); }

.minis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.mini {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mini svg { color: var(--orange); }
.mini p { font-size: 16px; color: var(--t-80); line-height: 1.6; }
.mini cite { font-style: normal; font-size: 13px; color: var(--t-40); }

.pullquote { max-width: 880px; margin: 0 auto; text-align: center; padding: 0 20px; }
.pullquote p { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.5; color: var(--t-90); font-weight: 600; }
.pullquote p::before {
  content: "\201C";
  display: block;
  font-size: 64px;
  line-height: .6;
  color: var(--orange);
  margin-bottom: 18px;
}
.pullquote cite { display: block; margin-top: 24px; font-style: normal; }
.pullquote cite b { display: block; font-size: 15px; color: var(--t-80); }
.pullquote cite span { display: block; font-size: 13px; color: var(--t-40); margin-top: 4px; }

/* --------------------------------------------------------------------------
   11. PROCESS / PROTOCOL / STEPS
   -------------------------------------------------------------------------- */
.process, .protocol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.process__step, .protocol__step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.process__num, .protocol__num {
  display: inline-block;
  font-family: var(--display);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.process__step h4, .protocol__step h4 { margin-bottom: 10px; }
.process__step p, .protocol__step p { font-size: 14px; color: var(--t-40); line-height: 1.6; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.step__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--orange-line);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 13.5px; color: var(--t-40); line-height: 1.6; }

/* --------------------------------------------------------------------------
   12. DEEP PANELS / CONTENT BLOCKS
   -------------------------------------------------------------------------- */
.panel {
  position: relative;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
}

.panel__jump {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s;
}
.panel__jump:hover { background: var(--orange-soft); }

.panel__body { padding: clamp(30px, 5vw, 72px); }

.block { padding: 56px 0; border-top: 1px solid var(--line); }
.block--first { border-top: 0; padding-top: 0; }

.block__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  margin-top: 32px;
}

.block__copy { display: flex; flex-direction: column; gap: 22px; }
.block__copy .related { margin-top: 4px; }

.block__media {
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-3);
}
.block__media img { width: 100%; height: 100%; object-fit: cover; }

.founder {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  margin-top: 32px;
}
.founder__name { font-family: var(--display); font-size: 22px; color: var(--orange); }
.founder__media {
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  max-height: 600px;
}
.founder__media img { width: 100%; height: 100%; object-fit: cover; }

.wideshot { margin-top: 40px; border-radius: 18px; border: 1px solid var(--line); overflow: hidden; }
.wideshot img { width: 100%; height: auto; }

.imgpair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.imgpair figure { border-radius: 16px; border: 1px solid var(--line); overflow: hidden; }
.imgpair img { width: 100%; height: auto; }

.csblock__head { padding-bottom: 26px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.csblock__head .eyebrow { margin-bottom: 12px; }
.csblock__head h3 { font-size: clamp(24px, 2.8vw, 32px); }
.csblock__head p { margin-top: 8px; color: var(--t-40); font-size: 15px; }

.cso { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cso__col { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.cso__col h4 { color: var(--orange); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
.cso__col p { font-size: 15px; color: var(--t-60); line-height: 1.7; }

.centred {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.panel__cta {
  padding-top: 56px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* --------------------------------------------------------------------------
   13. SERVICE LIST / BIG CTA / BANNERS
   -------------------------------------------------------------------------- */
.svc-list { max-width: 860px; margin-top: 40px; }
.svc-list li {
  display: flex;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600;
  color: var(--t-80);
}
.svc-list li:first-child { border-top: 1px solid var(--line); }
.svc-list li::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  align-self: center;
  background: var(--orange);
  transform: rotate(45deg);
  border-radius: 2px;
}

.bigcta {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.bigcta h2 { margin: 6px 0 14px; }

.banner, .close { position: relative; overflow: hidden; }
.banner { padding: 120px 0; }
.close { padding: 130px 0; background: linear-gradient(180deg, var(--bg), var(--bg-2)); }

.banner__glow, .chero__glow { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.banner__glow span, .chero__glow span { position: absolute; border-radius: 50%; filter: blur(70px); }
.banner__glow span:first-child, .chero__glow span:first-child {
  top: -160px; right: -120px;
  width: 460px; height: 460px;
  background: rgba(232, 98, 42, .22);
}
.banner__glow span:last-child, .chero__glow span:last-child {
  bottom: -180px; left: -140px;
  width: 520px; height: 520px;
  background: rgba(232, 98, 42, .14);
}

.banner__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.banner__inner h3 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; }

.close__inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.close__sub { font-size: 18px; color: var(--t-50); }

/* --------------------------------------------------------------------------
   14. SERVICES PAGE (catalogue)
   -------------------------------------------------------------------------- */
.shero { position: relative; padding: 140px 0 100px; overflow: hidden; }
.shero::before {
  content: "";
  position: absolute;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 42, .14), transparent 65%);
  pointer-events: none;
}
.shero__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.svcstack { display: flex; flex-direction: column; gap: 80px; }

.svcgroup__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
  color: var(--orange);
}
.svcgroup__head svg { flex: none; }
.svcgroup__head h2 { font-size: clamp(26px, 3vw, 37px); }

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

.svccard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: border-color .2s, transform .2s;
}
.svccard:hover { border-color: var(--orange-line); transform: translateY(-3px); }

.svccard__ico { color: var(--orange); margin-bottom: 20px; width: 30px; height: 30px; flex: none; }
.svccard h3 { font-size: 18px; line-height: 1.4; margin-bottom: 12px; }
.svccard p { font-size: 14px; color: var(--t-40); line-height: 1.68; }

.scope {
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 72px 40px;
}
.scope::before {
  content: "";
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 480px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 42, .15), transparent 65%);
}

/* --------------------------------------------------------------------------
   15. CONTACT PAGE
   -------------------------------------------------------------------------- */
.chero { position: relative; padding: 150px 0 40px; overflow: hidden; }
.chero__inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.chero__fine { font-size: 14.5px; color: var(--t-40); line-height: 1.75; max-width: 720px; }

.dots { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; }
.dots li { position: relative; padding-left: 20px; font-size: 14px; color: var(--t-60); font-weight: 500; }
.dots li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: start; }
.contact__intro h2 { margin-bottom: 18px; }
.contact__intro > p { color: var(--t-50); line-height: 1.7; margin-bottom: 34px; }

.assure { display: flex; flex-direction: column; gap: 18px; }
.assure li { display: flex; align-items: center; gap: 16px; font-size: 15px; color: var(--t-60); }
.assure__ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--orange-line);
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
}

.formcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 42px);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-40);
  margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: #05050C;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--t-90);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--t-30); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E8622A' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field select option { background: #13151C; color: var(--t-90); }
.field textarea { min-height: 130px; resize: vertical; }

.formcard .btn { width: 100%; }
.formnote { margin-top: 16px; text-align: center; font-size: 13px; color: var(--t-30); }

.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.route {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s, transform .2s;
}
.route:hover { border-color: var(--orange-line); transform: translateY(-3px); }
.route__ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--orange-line);
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.route h3 { font-size: 19px; }
.route p { font-size: 14px; color: var(--t-40); line-height: 1.6; flex: 1; }
.route__link { color: var(--orange); font-size: 14px; font-weight: 600; }

.fit {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 104px 0;
}
.fit__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.fit__grid h3 { font-size: clamp(26px, 3vw, 36px); }
.fit__grid p { color: var(--t-50); line-height: 1.75; }

/* --------------------------------------------------------------------------
   16. LOGOFOLIO
   -------------------------------------------------------------------------- */
.folio-hero { padding: 150px 0 56px; position: relative; overflow: hidden; }
.folio-hero .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  max-width: 840px;
}
.folio-hero h1 { font-size: clamp(40px, 5.6vw, 64px); }

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

.mark-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.mark-card:hover { border-color: var(--orange-line); transform: translateY(-3px); }

.mark-card__tile {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #101116;
}
.mark-card__tile > svg { width: 78%; height: auto; }

.mark-card__plate {
  width: 100%;
  height: 100%;
  background: #F4F1EA;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.mark-card__plate svg { width: 78%; height: auto; }

.mark-card--invert .mark-card__tile { background: #05050C; }

.mark-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}
.mark-card__name { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--t-90); }
.mark-card__cat { font-size: 12px; color: var(--t-40); text-align: right; }

.folio-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 64px 36px;
}

/* Marks grid (Creative page, service 04) */
.marks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; width: 100%; }
.mark {
  aspect-ratio: 4 / 3;
  background: #F4F1EA;
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 24px;
}
.mark svg { width: 72%; height: auto; }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: #05050B; border-top: 1px solid var(--line); padding: 72px 0 36px; }

.footer__tag {
  text-align: center;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  color: var(--t-80);
  max-width: 720px;
  margin: 0 auto 64px;
  line-height: 1.5;
}

.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 48px; }

.footer__brand p { margin-top: 16px; font-size: 14px; color: var(--t-40); line-height: 1.7; max-width: 240px; }

.footer__logo { font-family: var(--display); font-size: 18px; display: inline-flex; gap: 8px; }
.footer__logo b { color: #fff; }
.footer__logo span { color: var(--t-40); }

.footer__col h5 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--t-40); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14px; color: var(--t-60); transition: color .15s; }
.footer__col a:hover { color: var(--orange); }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--t-30);
}
.footer__bar a { color: var(--t-40); transition: color .15s; }
.footer__bar a:hover { color: var(--orange); }

/* --------------------------------------------------------------------------
   18. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 920px) {
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #090910;
    border-bottom: 1px solid var(--line);
    padding: 14px 28px 22px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .logo img { height: 26px; }
  .site-header .btn { display: none; }
}

@media (max-width: 1020px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { max-width: 640px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .metrics, .stats, .outcomes { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .process, .protocol { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .svcgrid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 56px; }
  .routes { grid-template-columns: 1fr; }
  .fit__grid { grid-template-columns: 1fr; gap: 32px; }
  .folio { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .block__grid { grid-template-columns: 1fr; gap: 36px; }
  .founder { grid-template-columns: 1fr; gap: 36px; }
  .cso { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .shell { padding: 0 20px; }
  .hero__media { max-height: 560px; }
  .hero__media img, .block__media img, .founder__media img, .collage img { object-fit: cover; object-position: center; }
  .block__media img { width: 100%; height: 100%; }
  .founder__media img { width: 100%; height: 100%; }
  .section { padding: 76px 0; }
  .section--flush { padding: 76px 0; }
  .hero { padding: 104px 0 72px; }
  .shero { padding: 120px 0 80px; }
  .chero { padding: 120px 0 32px; }
  .folio-hero { padding: 120px 0 40px; }
  .banner { padding: 88px 0; }
  .close { padding: 96px 0; }

  .metrics, .metrics--three, .stats, .outcomes,
  .pillars, .quotes, .quotes--two, .process, .protocol,
  .svcgrid, .steps, .minis, .folio, .imgpair { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cta-row .btn { width: 100%; }
  .panel__body { padding: 26px 22px; }
  .block { padding: 40px 0; }
  .svcstack { gap: 64px; }
}

/* ==========================================================================
   v2 — COLLAPSIBLE PANELS, BOOKING POPUP, FORM STATUS MESSAGES
   ========================================================================== */
.panel__jump { width: 100%; text-align: center; }
.panel__jump svg { transition: transform .25s ease; }
/* smooth collapse handled in animations.css */
.panel--collapsed .panel__jump svg { transform: rotate(180deg); }
.panel__jump:hover { background: var(--orange-soft); }

/* ---------- Booking popup ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(5, 6, 9, .84); }
.modal__dialog {
  position: relative; z-index: 1;
  width: min(560px, calc(100vw - 32px));
  max-height: 90vh; overflow-y: auto;
  margin: 5vh auto 0;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 40px 36px 32px;
  box-shadow: var(--shadow);
}
body.modal-open { overflow: hidden; }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong); color: var(--t-60);
  display: grid; place-items: center;
  transition: color .15s, border-color .15s;
}
.modal__close:hover { color: #fff; border-color: var(--orange); }
.modal__dialog h3 { font-size: 24px; margin-bottom: 10px; }
.modal__sub { font-size: 14px; color: var(--t-40); margin-bottom: 28px; line-height: 1.6; }

/* ---------- Form success / error ---------- */
.form-success, .form-error { text-align: center; padding: 34px 8px 8px; }
.form-success h4, .form-error h4 { font-size: 19px; margin-bottom: 10px; }
.form-success h4 { color: #7DDB8A; }
.form-error h4 { color: #F49B78; }
.form-success p, .form-error p { font-size: 15px; color: var(--t-60); line-height: 1.7; }

@media (max-width: 640px) {
  .modal__dialog {
    margin: 0; width: 100%; height: 100vh; max-height: 100vh;
    border-radius: 0; padding: 56px 24px 28px;
  }
}


/* ==========================================================================
   LOGOFOLIO — real logo grid (5 columns, dark tiles, per Figma design)
   ========================================================================== */
.folio { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.mark-card__tile { background: #1A1B20; aspect-ratio: 1 / 1; padding: 0; }
.mark-card__tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mark-card__meta { flex-direction: column; align-items: flex-start; gap: 5px; padding: 16px 20px; }
.mark-card__cat { text-align: left; }
@media (max-width: 1020px) { .folio { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .folio { grid-template-columns: repeat(2, 1fr); } }


/* Form first-submission activation notice */
.form-activating { text-align: center; padding: 34px 8px 8px; }
.form-activating h4 { font-size: 19px; margin-bottom: 10px; color: #F49B78; }
.form-activating p { font-size: 15px; color: var(--t-60); line-height: 1.7; }


/* Preview-environment fallback box (email blocked in protected previews) */
.form-preview { text-align: left; padding: 30px 26px; border: 1px dashed var(--line-strong); border-radius: 14px; }
.form-preview h4 { font-size: 19px; margin-bottom: 12px; color: #F49B78; }
.form-preview p { font-size: 14.5px; color: var(--t-60); line-height: 1.7; margin-bottom: 10px; }
.form-preview__hint { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--t-40); }
.form-preview__details {
  font-family: inherit; font-size: 14px; color: var(--t-80); line-height: 1.8;
  background: rgba(0,0,0,.3); border-radius: 10px; padding: 16px 18px;
  white-space: pre-wrap; margin: 6px 0 18px;
}
.form-preview__mail { display: inline-flex; }


/* Contact page — Calendly CTA (form removed) */
.calendly-cta { text-align: center; padding: 26px 8px 6px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.calendly-cta h3 { font-size: clamp(24px, 3vw, 30px); }
.calendly-cta__sub { font-size: 15.5px; color: var(--t-60); line-height: 1.7; max-width: 460px; }
.calendly-cta .btn { padding: 18px 32px; font-size: 16px; }
