/* =============================================
   CANDID STRATEGY - SHARED STYLESHEET
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Mono:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --ink:   #0D0F14;
  --navy:  #1B2233;
  --slate: #2E3A50;
  --steel: #4A5568;
  --mist:  #8A96A8;
  --gold:  #C9A84C;
  --cream: #E8E4DC;
  --white: #F5F3EF;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: var(--ink);
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav__wordmark .bold  { font-weight: 800; color: var(--cream); }
.nav__wordmark .light { font-weight: 300; color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link:hover { color: var(--cream); }

.nav__cta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(201,168,76,0.35);
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: var(--ink);
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  padding: 32px 24px;
  flex-direction: column;
  gap: 28px;
  z-index: 999;
}

.nav__mobile-menu.open { display: flex; }

.nav__mobile-menu .nav__link {
  font-size: 11px;
}

.nav__mobile-menu .nav__cta {
  align-self: flex-start;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  line-height: 1;
}

.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--cream); }

/* =============================================
   SECTION LABELS
   ============================================= */

.label {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 24px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: #0A0C10;
  padding: 28px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}

.footer__text {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--slate);
}

/* =============================================
   PAGE WRAPPER
   ============================================= */

.page { padding-top: 63px; }

/* =============================================
   HERO (HOMEPAGE)
   ============================================= */

.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 60fr 40fr;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.hero__left {
  position: relative;
  z-index: 1;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__overline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 28px;
}

.hero__headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 36px;
}

.hero__headline .line-bold  { display: block; font-weight: 800; }
.hero__headline .line-light { display: block; font-weight: 300; }

.hero__body {
  font-size: 16px;
  font-weight: 400;
  color: var(--mist);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.hero__body p + p { margin-top: 16px; }

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__right {
  position: relative;
  z-index: 1;
  background: var(--navy);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-left: 0.5px solid rgba(255,255,255,0.07);
}

.hero__stat {
  padding: 40px 0;
  border-bottom: 0.5px solid rgba(201,168,76,0.25);
}

.hero__stat:first-child { padding-top: 0; }
.hero__stat:last-child  { border-bottom: none; padding-bottom: 0; }

.hero__stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 53px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.hero__stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}

/* =============================================
   APPROACH SECTION (HOMEPAGE)
   ============================================= */

.approach {
  background: var(--ink);
  padding: 96px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}

.approach__left { display: flex; flex-direction: column; justify-content: flex-start; }

.approach__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 32px;
}

.approach__heading .line-bold  { display: block; font-weight: 800; color: var(--white); }
.approach__heading .line-light { display: block; font-weight: 300; color: var(--cream); }

.approach__body {
  font-size: 15px;
  font-weight: 400;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 40px;
}

.approach__body p + p { margin-top: 14px; }

.approach__link {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.2s;
}

.approach__link:hover { color: var(--cream); }

.approach__right { display: flex; flex-direction: column; justify-content: flex-start; }

.service-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.service-row:first-child { border-top: 0.5px solid rgba(255,255,255,0.07); }

.service-row__num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--steel);
  padding-top: 2px;
}

.service-row__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.service-row__desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--steel);
  line-height: 1.5;
}

/* =============================================
   TESTIMONIALS SECTION (HOMEPAGE)
   ============================================= */

.testimonials {
  background: var(--navy);
  padding: 80px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tcard {
  background: var(--navy);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  padding: 32px 28px;
}

.tcard__bar {
  width: 20px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.tcard__quote {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 28px;
}

.tcard__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.tcard__title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--steel);
}

/* =============================================
   CTA BAND (HOMEPAGE)
   ============================================= */

.cta-band {
  background: var(--ink);
  padding: 96px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}

.cta-band__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band__sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--steel);
}

/* =============================================
   CANDID APPROACH SECTION (SERVICES PAGE)
   ============================================= */

.candid-approach {
  background: var(--ink);
  padding: 96px 80px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}

.candid-approach__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 640px;
}

.candid-approach__intro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 32px;
}

.candid-approach__divider-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.candid-approach__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}

.candid-approach__col {
  padding: 32px 40px 32px 0;
}

.candid-approach__col + .candid-approach__col {
  padding: 32px 0 32px 40px;
  border-left: 0.5px solid rgba(255,255,255,0.07);
}

.candid-approach__col-num {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
}

.candid-approach__col-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 20px;
}

.candid-approach__col-summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.5;
}

.candid-approach__closing {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  max-width: 720px;
}

/* =============================================
   ABOUT PAGE - HEADSHOT
   ============================================= */

.about-headshot {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin-bottom: 32px;
  border-radius: 2px;
}

/* =============================================
   SERVICES PAGE - IMAGE HERO
   ============================================= */

.services-hero.services-hero--split {
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.services-hero--split .services-hero__inner {
  flex: 0 0 50%;
  padding: 120px 80px 0;
  max-width: none;
}

.services-hero__image-col {
  flex: 0 0 50%;
  max-width: 50%;
}

.services-hero__photo {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center center;
}

/* =============================================
   SERVICES PAGE
   ============================================= */

.services-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 120px 80px 80px;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.services-hero__inner { position: relative; z-index: 1; max-width: 700px; }

.services-hero__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.services-hero__sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--mist);
  line-height: 1.75;
}

.services-list {
  background: var(--ink);
  padding: 0 80px 96px;
}

.service-block {
  padding: 72px 0;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
}

.service-block__meta {}

.service-block__num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-block__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.service-block__content {}

.service-block__purpose {
  font-size: 15px;
  font-weight: 400;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.service-block__steps-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}

.service-block__steps {
  list-style: none;
  margin-bottom: 36px;
}

.service-block__steps li {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  padding-left: 20px;
  position: relative;
}

.service-block__steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.service-block__steps li:first-child { border-top: 0.5px solid rgba(255,255,255,0.06); }

.service-block__good-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}

.service-block__good-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--mist);
  line-height: 1.6;
  font-style: italic;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 120px 80px 80px;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.about-hero__image-col {
  /* image sits at top, aligned with right column */
}

.about-hero__right-col {
  display: flex;
  flex-direction: column;
}

.about-hero__body {
  font-size: 15px;
  font-weight: 400;
  color: var(--mist);
  line-height: 1.8;
}

.about-hero__body p + p { margin-top: 18px; }

.about-hero__nameplate {
  margin-top: 20px;
}

.about-hero__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}

.about-hero__subheading {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-values {
  background: var(--navy);
  padding: 80px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}

.value-item {
  padding: 0 40px 0 0;
  border-right: 0.5px solid rgba(255,255,255,0.07);
  margin-right: 40px;
}

.value-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.value-item__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.value-item__text {
  font-size: 13px;
  font-weight: 400;
  color: var(--mist);
  line-height: 1.7;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 120px 80px 96px;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.contact-hero__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-hero__body {
  font-size: 15px;
  font-weight: 400;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.contact-detail:first-child { border-top: 0.5px solid rgba(255,255,255,0.07); }

.contact-detail__label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  width: 60px;
  flex-shrink: 0;
}

.contact-detail__value {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.form-input,
.form-textarea {
  background: var(--navy);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--steel);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(201,168,76,0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 17px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}

.form-submit:hover { opacity: 0.88; }

/* =============================================
   PAGE HEADINGS (inner pages)
   ============================================= */

.inner-page-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

/* =============================================
   RESPONSIVE - TABLET (768-1024px)
   ============================================= */

@media (max-width: 1024px) {
  .nav { padding: 18px 48px; }
  .footer { padding: 24px 48px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 100px 48px 64px; }
  .hero__right { padding: 48px; border-left: none; border-top: 0.5px solid rgba(255,255,255,0.07); flex-direction: row; gap: 0; }
  .hero__stat { padding: 0 40px 0 0; border-bottom: none; border-right: 0.5px solid rgba(201,168,76,0.25); margin-right: 0; }
  .hero__stat:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
  .hero__stat:nth-child(2) { padding: 0 40px 0 40px; }

  /* Approach */
  .approach { grid-template-columns: 1fr; gap: 48px; padding: 72px 48px; }

  /* Testimonials */
  .testimonials { padding: 64px 48px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }

  /* CTA Band */
  .cta-band { padding: 72px 48px; flex-direction: column; align-items: flex-start; gap: 32px; }

  /* About headshot */
  .about-headshot { max-width: 260px; }

  /* Services */
  .services-hero { padding: 100px 48px 64px; }
  .services-hero--split { flex-direction: column; align-items: stretch; }
  .services-hero--split .services-hero__inner { flex: none; padding: 100px 48px 64px; }
  .services-hero__image-col { flex: none; height: 320px; overflow: hidden; }
  .services-hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .candid-approach { padding: 72px 48px; }
  .candid-approach__columns { grid-template-columns: 1fr; }
  .candid-approach__col + .candid-approach__col { padding: 32px 0 32px 0; border-left: none; border-top: 0.5px solid rgba(255,255,255,0.07); }
  .services-list { padding: 0 48px 72px; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }

  /* About */
  .about-hero { padding: 100px 48px 64px; }
  .about-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-headshot { max-width: 260px; }
  .about-values { padding: 64px 48px; }
  .about-values__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .value-item { border-right: none; margin-right: 0; padding-right: 0; }

  /* Contact */
  .contact-hero { padding: 100px 48px 72px; }
  .contact-hero__inner { grid-template-columns: 1fr; gap: 56px; }
}

/* =============================================
   RESPONSIVE - MOBILE (< 768px)
   ============================================= */

@media (max-width: 767px) {
  .nav { padding: 16px 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .footer { padding: 24px; flex-direction: column; align-items: flex-start; gap: 6px; }

  .hero { min-height: auto; }
  .hero__left { padding: 80px 20px 48px; }
  .hero__right { padding: 32px 20px; flex-direction: column; gap: 0; }
  .hero__stat { padding: 28px 0; border-right: none; border-bottom: 0.5px solid rgba(201,168,76,0.25); }
  .hero__stat:first-child { padding: 28px 0; }
  .hero__stat:nth-child(2) { padding: 28px 0; }
  .hero__stat:last-child { padding: 28px 0; border-bottom: none; }

  .approach { padding: 64px 24px; gap: 40px; }

  .testimonials { padding: 56px 24px; }

  .cta-band { padding: 64px 24px; }

  /* About headshot */
  .about-headshot { max-width: 100%; }

  .services-hero { padding: 80px 24px 48px; }
  .services-hero--split .services-hero__inner { flex: none; padding: 80px 24px 48px; }
  .services-hero__image-col { height: 260px; }
  .candid-approach { padding: 56px 24px; }
  .services-list { padding: 0 24px 64px; }
  .service-block { gap: 24px; padding: 56px 0; }

  .about-hero { padding: 80px 24px 48px; }
  .about-values { padding: 56px 24px; }
  .about-values__grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-hero { padding: 80px 24px 64px; }

  .hero__buttons { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* =============================================
   RESPONSIVE - DESKTOP (> 1024px)
   ============================================= */

@media (min-width: 1025px) {
  body { font-size: 18px; }

  .hero__headline { font-size: clamp(50px, 6.3vw, 83px); }

  .service-row { padding: 32px 0; }
  .service-row__name { font-size: 20px; }
  .service-row__desc { font-size: 16px; color: var(--mist); }
}
