/* =========================================================
   DeHoff & DeHoff, PC — V2 (Opus)
   Editorial / Refined / Typography-forward
   ========================================================= */

:root {
  /* Color — warmer, more sophisticated palette */
  --ink:          #0D1F14;   /* near-black with green undertone */
  --forest:       #143426;   /* deep forest green */
  --forest-soft:  #1E4935;
  --brass:        #A8743C;   /* warmer brass, not yellow gold */
  --brass-deep:   #8B5E2E;
  --brass-tint:   #EFDCB4;
  --paper:        #F9F6EF;   /* warm paper white */
  --paper-alt:    #F1EBDC;   /* deeper paper */
  --rule:         #D7CFBC;   /* warm taupe rule line */
  --rule-soft:    #E8E2D1;
  --text:         #2A2A2A;
  --text-muted:   #6E6963;
  --white:        #FFFFFF;

  /* Type */
  --serif:  Georgia, 'Times New Roman', 'Hoefler Text', serif;
  --sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono:   ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Layout */
  --container: 1180px;
  --gap:       28px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Typography --------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.display {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* uppercase editorial label */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

/* chapter number like "01" */
.chapter-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--brass);
  letter-spacing: 0.08em;
}

.lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 58ch;
}

/* Container --------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.container--narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* Rule lines --------------------------- */
.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}
.rule-soft {
  border: 0;
  border-top: 1px solid var(--rule-soft);
}

/* Buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  background: none;
}
.btn:hover { transform: translateY(-1px); }

.btn--solid {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}
.btn--solid:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn--brass {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}
.btn--brass:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--ghost:hover {
  background: var(--forest);
  color: var(--paper);
}

.btn--link {
  padding: 0;
  color: var(--forest);
  border-bottom: 1px solid var(--brass);
  border-radius: 0;
  letter-spacing: 0.02em;
  padding-bottom: 3px;
}
.btn--link:hover {
  color: var(--brass);
  transform: none;
}

/* ================================================
   TOP UTILITY BAR
================================================ */
.utility {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 0;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.utility a { color: inherit; transition: color 0.2s; }
.utility a:hover { color: var(--brass-tint); }
.utility-left, .utility-right {
  display: flex;
  gap: 22px;
  align-items: center;
}
.utility-sep {
  width: 1px; height: 12px;
  background: rgba(255,255,255,0.2);
}

/* ================================================
   MAIN NAV
================================================ */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  height: 82px;
}
.nav-brand {
  justify-self: start;
}
.nav-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-brand-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-center {
  justify-self: center;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links > li > a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  padding: 30px 0;
  position: relative;
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.is-active { color: var(--forest); }
.nav-links > li > a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  height: 2px;
  background: var(--brass);
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Dropdown */
.nav-item { position: relative; }
.caret {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.25s;
  font-size: 0.55rem;
  vertical-align: middle;
  color: var(--brass);
}
.nav-item:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  box-shadow: 0 20px 50px rgba(13, 31, 20, 0.12);
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 0.86rem;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
  border-left: 2px solid transparent;
}
.dropdown a:hover {
  background: var(--paper-alt);
  color: var(--forest);
  border-left-color: var(--brass);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

/* ================================================
   HERO — editorial
================================================ */
.hero {
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  max-width: 52%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--brass);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  flex-direction: row;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero-meta-item .label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.hero-meta-item .value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.35;
}
.hero-meta-item .value a {
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.hero-meta-item .value a:hover {
  color: var(--brass-deep);
  border-bottom-color: var(--brass);
}

/* watermark year */
.hero-watermark {
  position: absolute;
  left: -20px;
  bottom: -60px;
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 1;
  font-weight: 700;
  color: var(--paper-alt);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  clip-path: inset(0 58% 0 0);
}
.hero-grid { position: relative; z-index: 1; }

/* Hero photo — editorial */
.hero-graphic {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  filter: saturate(0.9) brightness(1.0);
  -webkit-mask-image: linear-gradient(to left, black 55%, transparent 90%);
          mask-image: linear-gradient(to left, black 55%, transparent 90%);
}
@media (max-width: 1024px) {
  .hero-graphic { opacity: 0.12; width: 100%; filter: saturate(0.5); }
}

/* Subtle dot pattern background */
.dot-pattern {
  background-image: radial-gradient(circle, var(--rule) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
}

/* Ornament divider */
.ornament {
  display: block;
  margin: 48px auto;
  text-align: center;
}
.ornament svg { width: 200px; height: 24px; margin: 0 auto; }

/* Brand monogram */
.brand-mark {
  width: 56px;
  height: 56px;
  display: inline-block;
  flex-shrink: 0;
}

/* Service icons */
.svc-icon {
  width: 44px;
  height: 44px;
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-item:hover .svc-icon { color: var(--forest); }

/* Resource card icon */
.resource-icon {
  width: 36px; height: 36px;
  color: var(--brass);
  margin-bottom: 22px;
}
.resource-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1; }

/* ================================================
   CREDIBILITY STRIP
================================================ */
.credibility {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 0;
}
.credibility-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}
.cred-item {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 20px;
}
.cred-item:first-child { border-left: 0; padding-left: 0; }
.cred-item .num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--brass-tint);
  line-height: 1;
  margin-bottom: 6px;
}
.cred-item .desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ================================================
   SECTION FRAMEWORK
================================================ */
.section {
  padding: 112px 0;
}
.section--alt { background: var(--paper-alt); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--forest { background: var(--forest); color: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.section-head .head-left .eyebrow { margin-bottom: 14px; display: block; }
.section-head .chapter-num { display: block; margin-bottom: 20px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  max-width: 16ch;
}
.section--dark h2, .section--forest h2 { color: var(--paper); }
.section-head .head-right p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 52ch;
}
.section--dark .section-head .head-right p,
.section--forest .section-head .head-right p {
  color: rgba(255,255,255,0.72);
}

/* ================================================
   SERVICES — editorial list (NOT cards)
================================================ */
.svc-list {
  list-style: none;
}
.svc-item {
  display: grid;
  grid-template-columns: 60px 60px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--rule);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
  position: relative;
}
/* Plain variant — no icon, no arrow (e.g. About principles) */
.svc-list--plain .svc-item {
  grid-template-columns: 60px 1fr;
}
.svc-list--plain .svc-item:hover {
  padding-left: 20px;
  padding-right: 20px;
  background: var(--paper); /* override --paper-alt sections so hover is visible */
}
.svc-item:last-child { border-bottom: 1px solid var(--rule); }
.svc-item:hover {
  background: var(--paper-alt);
  padding-left: 20px;
  padding-right: 20px;
}
.svc-num {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--brass);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.svc-body h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.2;
}
.svc-item:hover h3 { color: var(--forest); }
.svc-body p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 60ch;
}
.svc-arrow {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--brass);
  padding-top: 8px;
  transition: transform 0.3s var(--ease);
}
.svc-item:hover .svc-arrow { transform: translateX(8px); }

/* ================================================
   DIFFERENCE / PULL QUOTE
================================================ */
.pull-quote {
  background: var(--paper);
  padding: 140px 0;
  text-align: center;
  position: relative;
}
.pull-quote::before,
.pull-quote::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 48px;
  background: var(--brass);
  transform: translateX(-50%);
}
.pull-quote::before { top: 48px; }
.pull-quote::after  { bottom: 48px; }
.pull-quote .quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 20px;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 30px;
}
.pull-quote cite {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* ================================================
   BY THE NUMBERS — editorial stats
================================================ */
.stats {
  background: var(--forest);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--brass-tint);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.stat-num sup {
  font-size: 0.5em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--brass);
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

/* ================================================
   TEAM PREVIEW
================================================ */
.team {
  padding: 112px 0;
  background: var(--paper);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.team-person {
  text-align: left;
}
.team-photo {
  aspect-ratio: 4 / 5;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo svg {
  width: 50%;
  height: 50%;
  color: var(--rule);
}
.team-person h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 14px;
}
.team-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================
   RESOURCES / EDITORIAL LIST
================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.resource-card {
  padding: 32px 0;
  border-top: 2px solid var(--ink);
  transition: border-color 0.3s;
}
.resource-card:hover { border-top-color: var(--brass); }
.resource-card .kind {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 18px;
}
.resource-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.resource-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.resource-card .go {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.resource-card .go:hover { color: var(--brass); }

/* ================================================
   CTA BAND — direct, no gradient
================================================ */
.cta {
  background: var(--paper);
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.7;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--paper);
}
.footer-brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-tint);
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.64);
  line-height: 1.75;
  max-width: 36ch;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-tint);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--brass-tint); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--brass-tint); }

/* ================================================
   PAGE HERO (smaller, for sub-pages)
================================================ */
.page-hero {
  padding: 80px 0 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.page-hero .eyebrow { display: block; margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-bottom: 22px;
}
.page-hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.75;
}

/* ================================================
   CONTACT
================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
}
.form-field {
  margin-bottom: 26px;
}
.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--brass);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.contact-aside h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.contact-aside address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}
.contact-aside .hours {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
  .hero-grid,
  .section-head,
  .cta-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-meta { flex-direction: column; gap: 20px; }
  .hero-grid { max-width: 100%; }
  .credibility-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .stat { border-left: 0; padding: 0 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .utility-left .hide-sm { display: none; }
  .nav-center, .nav-right { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .svc-item {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }
  .svc-icon { display: none; }
  .svc-num {
    grid-column: 1 / -1;
    padding-top: 0;
  }
  .team { padding: 72px 0; }
  .credibility-inner,
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .stat:first-child { border-top: 0; padding-top: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top,
  .footer-bottom { grid-template-columns: 1fr; gap: 28px; flex-direction: column; text-align: center; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-brand { justify-self: start; }
}
