*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #1c1a17;
  --ink-2: #3d3a35;
  --ink-3: #7a756e;
  --ink-4: #b8b3ab;
  --bg: #faf9f6;
  --bg-2: #f3f0eb;
  --bg-3: #ebe7e0;
  --amber: #c8821a;
  --amber-light: #f5e3c0;
  --amber-pale: #fdf7ed;
  --green: #2d6a4f;
  --green-light: #d8f0e5;
  --blue: #1d4e89;
  --blue-light: #dce8f7;
  --rule: 1px solid #e4dfd7;
  --radius: 10px;
  --radius-sm: 6px;
}
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
#top, #consultant, #clients, #areas-of-work, #how-to-start { scroll-margin-top: 80px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,249,246,0.97);
  backdrop-filter: blur(10px);
  border-bottom: var(--rule);
  padding: 0 9%;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo {
 width: 145%;
    max-width: 239px;
    min-width: 88px;
    height: auto;
    display: block;
}
.nav-logo-box {
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid #e4dfd7;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nav-logo-box img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-brand-text {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 500;
  color: var(--ink); letter-spacing: 0.01em;
}
.nav-brand-text small {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 400; color: var(--ink-3);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-style: normal; margin-top: -2px;
}
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 17px; font-weight: 500; color: var(--ink-2);
  text-decoration: none; padding: 4px 0;
}
.nav-links a.active { color: var(--amber); border-bottom: 2px solid var(--amber); padding-bottom: 2px; }
.nav-cta-btn {
  background: var(--amber); color: #fff !important;
  padding: 8px 20px !important; border-radius: 100px;
  font-weight: 600 !important; font-size: 13px !important;
  border: none; cursor: pointer; text-decoration: none !important;
  white-space: nowrap;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 380px;
  min-height: 512px;
  border-bottom: var(--rule);
}
.hero-left {
  padding: 30px 55px 48px 9%;
  display: flex; flex-direction: column; justify-content: center;
  border-right: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-pale); border: 1px solid var(--amber-light);
  color: var(--amber); font-size: 15px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
  width: fit-content;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--amber);
  border-radius: 50%; flex-shrink: 0;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 46px; font-weight: 500; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--amber); font-style: italic; }
.hero h1 .light { color: var(--ink-2); }
.hero-sub {
  font-size: 17px; line-height: 1.8; color: var(--ink-2);
  font-weight: 400; margin-bottom: 14px;  
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: var(--amber); color: #fff;
  padding: 12px 28px; border-radius: 100px;
  font-size: 17px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary::after { content: '→'; }
.trust-row {
    display: flex;
    align-items: revert;
    gap: 20px;
    flex-wrap: nowrap;
    padding-top: 28px;
    border-top: var(--rule);
    align-content: center;
    flex-direction: row;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px; border-right: var(--rule);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 600; color: var(--ink); line-height: 1;
}
.trust-label {
  font-size: 11px; color: var(--ink-3); font-weight: 400;
  margin-top: 3px; text-align: center; line-height: 1.3;
}

/* ── PHOTO ── */
.hero-right {
  position: relative; overflow: hidden;
  background: #0d0d0d;
}
.hero-right picture {     position: absolute;
    inset: 0;
    display: block;
    margin-top: -51px;
    margin-bottom: 57px; }
.hero-right .hero-img {
      position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 49%;
    display: block;
}
.photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,8,5,0.88));
  padding: 48px 28px 24px;
}
.photo-name {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
}
.photo-role {
 font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}

/* ── PAIN SECTION — "You've probably…" ── */
.pain-section {
  background: var(--ink);
  padding: 64px 9%;
  border-bottom: var(--rule);
}
.pain-inner { max-width: 900px; margin: 0 auto; }
.pain-eyebrow {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber-light); font-weight: 600; margin-bottom: 20px;
  opacity: 0.8;
}
.pain-headline {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 500; line-height: 1.25;
  color: #fff; margin-bottom: 36px;
}
.pain-headline em { font-style: italic; color: var(--amber-light); }
.pain-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.pain-card {
  background: rgba(255,255,255,0.05);
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.pain-card:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.pain-card:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.pain-icon {
  width: 32px; height: 32px;
  background: rgba(200,130,26,0.15); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: 15px;
}
.pain-title {
  font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 6px; line-height: 1.3;
}
.pain-text {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.7);
  font-weight: 300;
}

/* ── BODY LAYOUT ── */
.page-wrap {
  display: grid; grid-template-columns: 1fr 300px;
  align-items: start;
}
.main { border-right: var(--rule); }

/* ── SECTION BASE ── */
.section { padding: 56px 72px 56px 9%; border-bottom: var(--rule); }
.sec-tag {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.sec-tag::before { content: ''; width: 14px; height: 2px; background: var(--amber); border-radius: 2px; }
h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 500; line-height: 1.18;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 16px;
}
.section p {
  font-size: 16px; line-height: 1.8; color: var(--ink-2);
  font-weight: 400; margin-bottom: 16px;
}
.section p:last-child { margin-bottom: 0; }
.section p strong { color: var(--ink); font-weight: 600; }

/* ── WHAT MAKES ME DIFFERENT (story) ── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px;
}
.story-card {
  background: var(--bg-2); border: var(--rule);
  border-radius: var(--radius); padding: 20px 22px;
}
.story-card-num {
  font-family: 'Fraunces', serif;
  font-size: 16px; font-weight: 600; color: var(--amber);
  margin-bottom: 8px;
}
.story-card-title {
  font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3;
}
.story-card-text {
  font-size: 16px; line-height: 1.8; color: var(--ink-2);
  font-weight: 400;
}

/* ── PULLQUOTE ── */
.pullquote {
  margin: 28px 0; padding: 24px 28px;
  border-left: 3px solid var(--amber);
  background: var(--amber-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pullquote p {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 400; font-style: italic;
  line-height: 1.55; color: var(--ink) !important;
  margin: 0 !important;
}

/* ── SERVICES ── */
.services-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.service-row {
  display: grid; grid-template-columns: 200px 1fr;
  border: var(--rule); border-radius: var(--radius);
  overflow: hidden; background: var(--bg);
}
.service-visual {
  height: 100%; min-height: 170px; position: relative; overflow: hidden;
}
/* Turnaround */
.sv-1 { background: #0c1a0c; }
.sv-1::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; top: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(45,106,79,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(200,130,26,0.2) 0%, transparent 45%);
}
.sv-1::after {
  content: '';
  position: absolute; bottom: 18px; left: 16px;
  width: 5px; height: 50px; background: rgba(200,130,26,0.6);
  box-shadow: 12px 15px 0 rgba(200,130,26,0.45), 24px -5px 0 rgba(200,130,26,0.7),
              36px 8px 0 rgba(200,130,26,0.35), 48px -12px 0 rgba(200,130,26,0.8);
}
/* Sales org */
.sv-2 { background: #0a1220; }
.sv-2::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; top: 0;
  background:
    radial-gradient(ellipse at 70% 60%, rgba(29,78,137,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 20%, rgba(200,130,26,0.15) 0%, transparent 40%);
}
.sv-2::after {
  content: '';
  position: absolute; top: 26px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px; background: rgba(200,130,26,0.9);
  border-radius: 50%;
  box-shadow:
    -38px 28px 0 4px rgba(255,255,255,0.2),
    38px 28px 0 4px rgba(255,255,255,0.2),
    -60px 58px 0 3px rgba(255,255,255,0.14),
    -18px 58px 0 3px rgba(255,255,255,0.14),
    18px 58px 0 3px rgba(255,255,255,0.14),
    60px 58px 0 3px rgba(255,255,255,0.14);
}
/* Distribution */
.sv-3 { background: #120e06; }
.sv-3::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; top: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(140,90,20,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(80,50,10,0.7) 0%, transparent 50%);
}
.sv-3::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(200,130,26,0.9);
  box-shadow:
    0 0 0 14px rgba(200,130,26,0.12),
    0 0 0 28px rgba(200,130,26,0.07),
    0 0 0 42px rgba(200,130,26,0.04),
    -36px -10px 0 0 rgba(255,255,255,0.2),
    36px -10px 0 0 rgba(255,255,255,0.2),
    0px 36px 0 0 rgba(255,255,255,0.15),
    -52px 22px 0 0 rgba(255,255,255,0.12),
    52px 22px 0 0 rgba(255,255,255,0.12);
}
/* Strategy */
.sv-4 { background: #0d0a14; }
.sv-4::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; top: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(80,40,130,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(200,130,26,0.12) 0%, transparent 40%);
}
.sv-4::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border: 1.5px solid rgba(200,130,26,0.4);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(200,130,26,0.08),
    0 0 0 36px rgba(200,130,26,0.04),
    inset 0 0 20px rgba(200,130,26,0.08);
}
.sv-label {
  position: absolute; bottom: 8px; left: 10px;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.service-content { padding: 20px 24px; }
.service-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-pale);
  border: 1px solid var(--amber-light);
  padding: 2px 10px; border-radius: 100px; margin-bottom: 10px;
}
.service-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.service-text { font-size: 14.5px; line-height: 1.75; color: var(--ink-2); font-weight: 400; margin-bottom: 12px; }
.service-bullets { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-bullets li {
  font-size: 13.5px; color: var(--ink-2); font-weight: 400;
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.6;
}
.service-bullets li::before {
  content: '✓'; color: var(--green); font-weight: 600;
  font-size: 13px; margin-top: 2px; flex-shrink: 0;
}

/* ── HOW IT WORKS ── */
.how-steps { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 0; border: var(--rule); border-bottom: none;
  background: var(--bg);
}
.how-step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.how-step:last-child { border-bottom: var(--rule); border-radius: 0 0 var(--radius) var(--radius); }
.how-num {
  background: var(--bg-2); border-right: var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500; color: var(--amber);
  padding: 20px 0;
}
.how-body { padding: 18px 20px; }
.how-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.how-text { font-size: 14px; line-height: 1.65; color: var(--ink-2); font-weight: 400; }

/* ── CAREER ── */
.career-blocks { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.career-block {
  border: var(--rule); border-radius: var(--radius);
  overflow: hidden; background: var(--bg);
}
.cb-header {
  display: flex; align-items: stretch; border-bottom: var(--rule);
  background: var(--bg-2);
}
.cb-stripe { width: 4px; background: var(--amber); flex-shrink: 0; }
.cb-head { padding: 14px 18px; flex: 1; }
.cb-domain {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); font-weight: 600; margin-bottom: 3px;
}
.cb-title { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.cb-body { padding: 16px 18px; }
.cb-text { font-size: 15px; line-height: 1.75; color: var(--ink-2); font-weight: 400; }
.cb-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.skill-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-2); background: var(--bg-2); border: var(--rule);
  padding: 3px 10px; border-radius: 100px;
}

/* ── WHO I WORK WITH ── */
.who-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.who-card {
  background: var(--bg-2); border: var(--rule); border-radius: var(--radius); padding: 20px;
}
.who-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; overflow: hidden;
}
.who-icon img { width: 100%; height: 100%; object-fit: contain; }
.wi-amber { background: var(--amber-pale); }
.wi-green { background: var(--green-light); }
.wi-blue { background: var(--blue-light); }
.who-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.who-text { font-size: 16px; line-height: 1.8; color: var(--ink-2); font-weight: 400; }

/* ── SECTORS ── */
.sector-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.sec-pill {
  font-size: 12px; font-weight: 500; color: var(--ink-2);
  background: var(--bg-2); border: var(--rule);
  padding: 6px 14px; border-radius: 100px;
}

/* ── SIDEBAR ── */
.sidebar { padding: 44px 32px; position: sticky; top: 64px; display: flex; flex-direction: column; gap: 18px; }
.sb-card { background: var(--bg-2); border: var(--rule); border-radius: var(--radius); padding: 20px; }
.sb-block { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sb-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600; margin-bottom: 12px;
}
.sb-label-title { font-size: 13px; letter-spacing: 0.10em; }
.sb-item {
  font-size: 14px; color: var(--ink-2); font-weight: 400;
  padding: 7px 0; border-bottom: 1px solid var(--bg-3);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.sb-item:last-child { border-bottom: none; }
.sb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); margin-top: 7px; flex-shrink: 0; }

/* ── TESTIMONIAL in sidebar ── */
.testimonial {
  background: var(--bg-2); border: var(--rule);
  border-radius: var(--radius); padding: 20px;
}
.testimonial::before { content: '“'; display: block; font-size: 44px; line-height: 1; color: rgba(200,130,26,0.25); margin-bottom: 6px; }
.test-quote {
  font-family: 'Fraunces', serif;
  font-size: 16px; font-style: italic; font-weight: 400;
  color: var(--ink); line-height: 1.55; margin-bottom: 12px;
}
.test-attr { font-size: 12px; color: var(--ink-3); font-weight: 400; }
.test-attr strong { color: var(--ink-2); font-weight: 600; display: block; }

/* ── CTA BOX ── */
.cta-box {
  background: var(--amber);
  border-radius: var(--radius); padding: 24px;
}
.cta-box h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 8px; line-height: 1.25;
}
.cta-box p { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 400; margin-bottom: 16px; line-height: 1.55; }
.cta-box-btn {
  display: inline-block; background: #fff; color: var(--amber);
  font-size: 13px; font-weight: 700; text-decoration: none;
  padding: 10px 22px; border-radius: 100px; letter-spacing: 0.02em;
}
.cta-box-note { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 10px; font-weight: 400; }

/* ── BOTTOM CTA STRIP ── */
.cta-strip {
  background: var(--bg-2); border-top: var(--rule);
  padding: 56px 9%; text-align: center;
}
.cta-strip h2 { font-size: 34px; margin-bottom: 12px; }
.cta-strip p { font-size: 17px; color: var(--ink-2); max-width: 500px; margin: 0 auto 28px; }
.cta-strip-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── CONTACT FOOTER ── */
.contact-bar {
  background: var(--bg-2); border-top: var(--rule);
  padding: 28px 9%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.contact-bar-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.contact-bar-icon {
  width: 36px; height: 36px; background: var(--amber-pale);
  border: 1px solid var(--amber-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px;
}
.contact-bar-label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600; margin-bottom: 3px;
}
.contact-bar-value {
  font-size: 14px; color: var(--ink-2); font-weight: 400; line-height: 1.45;
}
.contact-bar-value a {
  color: var(--ink-2); text-decoration: none;
}
.contact-bar-value a:hover { color: var(--amber); }
@media (max-width: 768px) {
  .contact-bar { padding: 24px 5%; flex-direction: column; gap: 16px; }
}

/* ── FOOTER ── */
footer {
  background: var(--ink); padding: 28px 9%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85);
}
.footer-links { display: flex; gap: 18px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-right { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 9%; border-right: none; border-bottom: var(--rule); }
  .hero h1 { font-size: 38px; }
  .hero-right { min-height: 420px; }
  .hero-right .hero-img { height: 100%; object-fit: cover; object-position: 55% 20%; }
  .page-wrap { grid-template-columns: 1fr; }
  .main { border-right: none; }
  .sidebar { position: static; padding: 40px 9%; border-top: var(--rule); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
  .sb-block { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .cta-box { grid-column: 1 / -1; }
  .section { padding: 48px 9%; }
  .service-row { grid-template-columns: 1fr; }
  .service-visual { min-height: 160px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 0; z-index: 199;
    overflow-y: auto;
  }
  .nav-links.open li { border-bottom: var(--rule); }
  .nav-links.open a { display: block; padding: 18px 5%; font-size: 17px; color: var(--ink); }
  .nav-links.open .nav-cta-btn { background: transparent; color: var(--amber) !important; border-radius: 0; padding: 18px 5% !important; font-size: 17px !important; font-weight: 600 !important; }
  .hamburger { display: flex; }
  .nav-logo { width: 34%; max-width: 132px; min-width: 80px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15.5px; }
  .hero-right { min-height: 320px; }
  .hero-right .hero-img { object-position: 50% 20%; }
  .pain-cards { grid-template-columns: 1fr; gap: 2px; }
  .pain-card:first-child { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .pain-card:last-child { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
  h2 { font-size: 26px; }
  .section p { font-size: 15.5px; }
  .story-grid { grid-template-columns: 1fr; }
  .who-cards { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .trust-item { padding: 0 10px; }
  .trust-num { font-size: 22px; }
  .cta-strip h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .trust-row { gap: 12px; }
  .nav-logo { width: 48%; max-width: 124px; min-width: 72px; }
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #1c1a17;
  --ink-2: #3d3a35;
  --ink-3: #7a756e;
  --ink-4: #b8b3ab;
  --bg: #faf9f6;
  --bg-2: #f3f0eb;
  --bg-3: #ebe7e0;
  --amber: #c8821a;
  --amber-light: #f5e3c0;
  --amber-pale: #fdf7ed;
  --rule: 1px solid #e4dfd7;
  --radius: 10px;
  --radius-sm: 6px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px; line-height: 1.7;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,249,246,0.97); backdrop-filter: blur(10px);
  border-bottom: var(--rule); padding: 0 9%; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-box {
  width: 36px; height: 36px; background: #fff;
  border: 1px solid #e4dfd7;
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nav-logo-box img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-brand-text { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; color: var(--ink); }
.nav-brand-text small { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 10px; font-weight: 400; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--ink-2); text-decoration: none; }
.nav-links a.active { color: var(--amber); border-bottom: 2px solid var(--amber); padding-bottom: 2px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* PAGE HEADER */
.page-header {
  padding: 56px 9% 40px;
  border-bottom: var(--rule);
  background: var(--bg);
}
.page-eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber); font-weight: 600; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--amber); }
.page-header h1 {
  font-family: 'Fraunces', serif;
  font-size: 40px; font-weight: 500; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px;
}
.page-header p { font-size: 16px; color: var(--ink-2); font-weight: 300; max-width: 540px; }

/* FILTER TABS */
.filter-bar {
  padding: 20px 9%; border-bottom: var(--rule);
  display: flex; gap: 8px; flex-wrap: wrap; background: var(--bg);
}
.filter-btn {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; cursor: pointer;
  border: 1px solid var(--rule); background: var(--bg); color: var(--ink-3);
  transition: all 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--amber); color: #fff; border-color: var(--amber);
}

/* CONTENT GRID */
.content-wrap { padding: 40px 9% 64px; }
.grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

/* FEATURED (full width) */
.card-featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
  border: var(--rule); border-radius: var(--radius);
  overflow: hidden; background: var(--bg);
}
.card-featured .card-visual { min-height: 280px; position: relative; }
.card-featured .card-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }

/* STANDARD CARDS */
.card {
  border: var(--rule); border-radius: var(--radius);
  overflow: hidden; background: var(--bg);
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.card-visual { width: 100%; height: 180px; position: relative; overflow: hidden; }

/* VIDEO CARD */
.card-video .card-visual { cursor: pointer; }
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.6);
  transition: transform 0.2s;
}
.card-video:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.play-icon {
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--amber);
  margin-left: 4px;
}
.video-duration {
  position: absolute; bottom: 10px; right: 12px;
  font-size: 11px; font-weight: 600; color: #fff;
  background: rgba(0,0,0,0.55); padding: 2px 8px; border-radius: 4px;
  letter-spacing: 0.04em;
}

/* VISUAL BG STYLES */
.v-amber { background: linear-gradient(135deg, #2a1a06 0%, #4a2e0a 50%, #1a0c02 100%); }
.v-dark { background: linear-gradient(135deg, #0f1a0c 0%, #1e3015 50%, #0c1209 100%); }
.v-blue { background: linear-gradient(135deg, #060d1a 0%, #0d1e35 50%, #060d18 100%); }
.v-warm { background: linear-gradient(135deg, #1a1206 0%, #2e1e08 50%, #120c02 100%); }
.v-purple { background: linear-gradient(135deg, #0f0a18 0%, #1e1030 50%, #0a0810 100%); }
.v-teal { background: linear-gradient(135deg, #041414 0%, #082828 50%, #041010 100%); }

/* CARD BODY */
.card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.card-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-pale);
  border: 1px solid var(--amber-light); padding: 2px 10px; border-radius: 100px;
}
.card-tag.video { color: #1d4e89; background: #dce8f7; border-color: #b8d4f0; }
.card-date { font-size: 11px; color: var(--ink-4); font-weight: 400; }
.card-title {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 500; color: var(--ink);
  line-height: 1.3; margin-bottom: 8px;
}
.card-featured .card-title { font-size: 24px; margin-bottom: 12px; }
.card-excerpt { font-size: 14px; line-height: 1.7; color: var(--ink-2); font-weight: 300; flex: 1; }
.card-featured .card-excerpt { font-size: 15px; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 14px; border-top: var(--rule);
}
.card-author { font-size: 12px; color: var(--ink-3); font-weight: 400; }
.card-read-more {
  font-size: 12px; font-weight: 600; color: var(--amber);
  text-decoration: none; letter-spacing: 0.04em;
}

/* NEWSLETTER STRIP */
.newsletter {
  background: var(--ink); padding: 48px 9%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.newsletter-left h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500; color: #fff; margin-bottom: 6px;
}
.newsletter-left p { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 300; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-input {
  padding: 10px 18px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #fff; font-size: 14px;
  outline: none; width: 260px; font-family: inherit;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-btn {
  padding: 10px 24px; background: var(--amber); color: #fff;
  border: none; border-radius: 100px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit; white-space: nowrap;
}

/* FOOTER */
footer {
  background: var(--ink); padding: 24px 9%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85); }
.footer-links { display: flex; gap: 18px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-right { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .card-featured { grid-template-columns: 1fr; }
  .card-featured .card-visual { min-height: 220px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-header { padding: 40px 5% 28px; }
  .page-header h1 { font-size: 28px; }
  .filter-bar { padding: 16px 5%; }
  .content-wrap { padding: 28px 5% 48px; }
  .grid { grid-template-columns: 1fr; }
  .card-featured { grid-column: 1; }
  .newsletter { padding: 36px 5%; flex-direction: column; }
  .newsletter-input { width: 100%; }
  footer { padding: 20px 5%; }
}

/* SVG decorations inside card visuals */
.v-deco-lines::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 18px,
    rgba(200,130,26,0.06) 18px, rgba(200,130,26,0.06) 19px
  );
}
.card-visual-icon {
  position: absolute; bottom: 16px; left: 20px;
  font-size: 32px; opacity: 0.5;
}
.card-visual-label {
  position: absolute; top: 16px; left: 16px;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); font-family: 'Plus Jakarta Sans', sans-serif;
}

/* INSIGHT DETAIL */
.article-hero {
  padding: 54px 9% 26px;
  background:
    radial-gradient(circle at top left, rgba(200,130,26,0.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(250,249,246,1));
  border-bottom: var(--rule);
}
.article-hero-inner { max-width: 860px; }
.article-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber);
}
.article-kicker::before { content: ''; width: 24px; height: 1px; background: var(--amber); }
.article-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em; color: var(--ink);
  max-width: 900px; margin-bottom: 16px;
}
.article-hero p {
  font-size: 18px; line-height: 1.75; color: var(--ink-2);
  font-weight: 300; max-width: 760px;
}
.article-meta-row {
  display: flex; flex-wrap: wrap; gap: 14px 18px;
  margin-top: 22px; color: var(--ink-3); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.article-meta-row a { color: var(--amber); text-decoration: none; font-weight: 700; }
.article-shell {
  padding: 34px 9% 72px;
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px; align-items: start;
}
.article-main { min-width: 0; }
.article-cover {
  margin: 0 0 22px; border-radius: var(--radius); overflow: hidden;
  border: var(--rule); background: #fff;
  box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}
.article-cover img { width: 100%; height: auto; display: block; }
.article-content { padding: 34px 40px; }
.article-content-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; margin-bottom: 18px;
}
.rich-article-body {
  font-size: 17px; line-height: 1.9; color: var(--ink-2);
}
.rich-article-body h2,
.rich-article-body h3 {
  font-family: 'Fraunces', serif; color: var(--ink); line-height: 1.2; margin: 28px 0 12px;
}
.rich-article-body h2 { font-size: 28px; }
.rich-article-body h3 { font-size: 22px; }
.rich-article-body p { margin: 0 0 18px; }
.rich-article-body ul,
.rich-article-body ol { margin: 0 0 18px 20px; padding: 0; }
.rich-article-body li { margin-bottom: 10px; }
.rich-article-body a { color: var(--amber); text-decoration: none; }
.article-aside { position: sticky; top: 90px; display: grid; gap: 16px; }
.article-aside-card,
.article-back-link {
  border: var(--rule); border-radius: var(--radius);
  background: var(--bg); padding: 18px;
}
.article-aside-card h3 {
  font-family: 'Fraunces', serif; font-size: 18px; color: var(--ink); margin-bottom: 10px;
}
.article-aside-card p {
  color: var(--ink-2); font-size: 14px; line-height: 1.7; margin-bottom: 8px;
}
.article-aside-highlight { background: linear-gradient(180deg, rgba(200,130,26,0.08), rgba(255,255,255,1)); }
.article-back-link {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--ink); font-weight: 700;
}
.article-back-link:hover { border-color: var(--amber); color: var(--amber); }

@media (max-width: 1024px) {
  .article-shell { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}

@media (max-width: 768px) {
  .article-hero { padding: 38px 5% 22px; }
  .article-shell { padding: 24px 5% 56px; }
  .article-content { padding: 24px 20px; }
}
