/* Matthew's Appraisal Inc. — shared stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #2E3A47;
  --navy-mid: #4A5A6B;
  --navy-deep: #1C2730;
  --accent: #3A6B4A;
  --accent-mid: #4E8A60;
  --accent-light: #D6EAD9;
  --accent-bright: #a8c9af;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --text: #1C2730;
  --text-muted: #5A6978;
  --border: #D8DFE6;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent-mid);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--white); color: var(--navy);
  padding: 12px 20px; font-size: 14px; font-weight: 500;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- NAV ---------- */
nav {
  background: var(--navy); padding: 0 48px;
  min-height: 68px; position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  align-items: center; justify-content: space-between;
  min-height: 68px; flex-wrap: wrap;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.nav-logo-mark {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px;
  font-weight: 600; color: var(--white); letter-spacing: 0.04em; line-height: 1;
}
.nav-logo-sub {
  font-size: 10px; font-weight: 300; color: #8395A7;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a, .nav-trigger {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65);
  text-decoration: none; letter-spacing: 0.06em;
  transition: color 0.2s; font-family: inherit;
  background: none; border: none; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links a:hover, .nav-links a.active, .nav-trigger:hover, .nav-trigger[aria-expanded="true"] { color: var(--white); }
.nav-links a.active { border-bottom: 1px solid var(--accent-mid); padding-bottom: 2px; }
.nav-caret { width: 8px; height: 8px; transition: transform 0.2s; flex-shrink: 0; }
.nav-trigger[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

.nav-links a.nav-phone { color: var(--accent-bright); font-weight: 500; letter-spacing: 0.04em; }
.nav-links a.nav-phone:hover { color: var(--white); }
.nav-links a.nav-cta {
  background: var(--accent); color: var(--white);
  padding: 9px 20px; border-radius: 4px; font-weight: 500;
}
.nav-links a.nav-cta:hover { background: var(--accent-mid); }
.nav-links a.nav-cta.active { border-bottom: none; padding-bottom: 9px; }

/* Services dropdown */
.nav-menu {
  position: absolute; top: calc(100% + 14px); left: -20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; box-shadow: 0 14px 40px rgba(28,39,48,0.22);
  min-width: 316px; padding: 8px; list-style: none;
  display: none; z-index: 200;
}
.nav-menu.open { display: block; }
@media (hover: hover) and (min-width: 769px) {
  .nav-links > li:hover > .nav-menu { display: block; }
}
.nav-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-menu li { position: static; }
.nav-links .nav-menu a {
  display: block; padding: 11px 14px; border-radius: 4px;
  color: var(--navy); font-size: 14px; letter-spacing: 0;
  border-bottom: none;
}
.nav-menu a:hover, .nav-menu a:focus-visible { background: var(--cream); }
.nav-menu a.active { background: var(--accent-light); }
.nav-menu .nm-title { font-weight: 500; display: block; line-height: 1.4; }
.nav-menu .nm-desc { font-size: 12px; color: var(--text-muted); display: block; line-height: 1.5; margin-top: 1px; }
.nav-menu .nm-divider { height: 1px; background: var(--border); margin: 8px 6px; }
.nav-menu .nm-all { font-size: 12.5px; color: var(--accent); font-weight: 500; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- HERO ---------- */
.hero { background: var(--navy); padding: 56px 48px 52px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 420px; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(58,107,74,0.18) 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 340px; gap: 48px;
  align-items: center; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent-mid); margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px;
  font-weight: 500; color: var(--white); line-height: 1.12; margin-bottom: 16px;
}
.hero h1 em { font-style: italic; color: var(--accent-bright); }
.hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 28px; }
.hero-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.hero-cred-badge {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px; border-radius: 3px; letter-spacing: 0.04em;
}

/* Home hero variant */
.hero-home { padding: 80px 48px 72px; }
.hero-home .hero-inner { display: block; }
.hero-home h1 { font-size: 54px; max-width: 640px; margin-bottom: 24px; }
.hero-home .hero-sub { font-size: 16px; max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--white); padding: 14px 28px;
  border-radius: 4px; font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  cursor: pointer; border: none; font-family: inherit; transition: background 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--accent-mid); }
.btn-outline {
  background: transparent; color: var(--white); padding: 13px 28px;
  border-radius: 4px; font-size: 14px; font-weight: 400; letter-spacing: 0.04em;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.35); font-family: inherit;
  transition: border-color 0.2s, background 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px;
  font-weight: 500; color: var(--white); line-height: 1; margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* Inner page hero */
.inner-hero { background: var(--navy); padding: 64px 48px 56px; }
.inner-hero-inner { max-width: 1100px; margin: 0 auto; }
.inner-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px;
  font-weight: 500; color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.inner-hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 640px; line-height: 1.8; }

/* ---------- FORM CARD ---------- */
.form-card {
  background: var(--white); border-radius: 8px; padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); position: relative; z-index: 1;
}
.form-card-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.form-card-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.form-optional { color: var(--text-muted); font-weight: 300; text-transform: none; letter-spacing: 0; }
.form-input {
  background: var(--cream); border: 1px solid var(--border); border-radius: 4px;
  padding: 10px 13px; font-size: 14px; font-family: inherit; color: var(--text);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input:focus { border-color: var(--accent); }
select.form-input { cursor: pointer; }
.form-submit {
  background: var(--accent); color: var(--white); border: none; padding: 13px 24px;
  border-radius: 4px; font-size: 14px; font-weight: 500; font-family: inherit;
  cursor: pointer; width: 100%; transition: background 0.2s; margin-top: 4px;
}
.form-submit:hover { background: var(--accent-mid); }
.form-divider { text-align: center; font-size: 11px; color: var(--text-muted); margin: 12px 0; letter-spacing: 0.08em; text-transform: uppercase; }
.call-btn {
  display: block; text-align: center; background: var(--navy); color: var(--white);
  padding: 13px 24px; border-radius: 4px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
}
.call-btn:hover { background: var(--navy-mid); }
.form-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--white); padding: 15px 48px;
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  gap: 10px 22px; flex-wrap: wrap; width: 100%; align-items: center;
}
.trust-badge {
  font-size: 11.5px; font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ---------- SECTIONS ---------- */
.section { padding: 64px 48px; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 64px 48px; background: var(--white); }
.section-full-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 34px;
  font-weight: 500; color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-body { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; max-width: 640px; }
.prose p { margin-bottom: 16px; max-width: 68ch; color: var(--text-muted); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 500; }
.prose a { color: var(--accent); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.feature-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 6px;
  padding: 24px 20px; position: relative; overflow: hidden;
}
.section-full .feature-card { background: var(--cream); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--accent); }
.feature-card h3 { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* Service cards (home + services index) */
.service-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 6px;
  padding: 26px 22px; position: relative; overflow: hidden; text-decoration: none;
  display: block; transition: border-color 0.2s, box-shadow 0.2s;
}
.section-alt .service-card { background: var(--cream); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--accent); opacity: 0; transition: opacity 0.2s;
}
.service-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(58,107,74,0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 22px; margin-bottom: 12px; display: block; }
.service-title { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.service-link { font-size: 12.5px; color: var(--accent); font-weight: 500; }

.section-alt { background: var(--white); }

/* Ordered / numbered lists */
.num-list { list-style: none; counter-reset: n; }
.num-list li {
  counter-increment: n; position: relative; padding-left: 34px;
  margin-bottom: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.num-list li::before {
  content: counter(n) "."; position: absolute; left: 0; top: 0;
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px;
  color: var(--accent); font-weight: 600;
}
.check-list { list-style: none; }
.check-list li {
  position: relative; padding-left: 24px; margin-bottom: 10px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.check-list li::before {
  content: ''; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
}

/* Service detail blocks */
.service-detail { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail h2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px;
  font-weight: 500; color: var(--navy); margin-bottom: 12px;
}
.service-detail p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; max-width: 68ch; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; padding: 20px 36px 20px 0; font-size: 16px; font-weight: 500;
  color: var(--navy); position: relative; list-style: none; line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; position: absolute; right: 6px; top: 27px;
  width: 9px; height: 9px; border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent); transform: rotate(45deg);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq-answer { padding: 0 36px 22px 0; font-size: 14.5px; color: var(--text-muted); line-height: 1.8; }
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--accent); }

/* ---------- RELATED SERVICES ---------- */
.related { background: var(--white); padding: 48px; border-top: 1px solid var(--border); }
.related-inner { max-width: 1100px; margin: 0 auto; }
.related h2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px;
  font-weight: 500; color: var(--navy); margin-bottom: 6px;
}
.related-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  border: 1px solid var(--border); border-radius: 6px; padding: 18px;
  text-decoration: none; display: block; transition: border-color 0.2s, background 0.2s;
}
.related-card:hover { border-color: var(--accent); background: var(--cream); }
.related-card .rc-title { font-size: 14.5px; font-weight: 500; color: var(--navy); margin-bottom: 5px; }
.related-card .rc-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* ---------- BIO STRIP ---------- */
.bio-strip { background: var(--navy); padding: 40px 48px; }
.bio-strip-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 32px; align-items: center; }
.bio-strip-photo {
  width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 3px solid rgba(58,107,74,0.4);
}
.bio-strip-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 8%; }
.bio-strip-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.bio-strip-cred { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-mid); margin-bottom: 10px; }
.bio-strip-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 640px; }

/* ---------- CTA ---------- */
.bottom-cta { background: var(--accent); padding: 48px; text-align: center; }
.bottom-cta h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 34px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.bottom-cta p { font-size: 15px; color: rgba(255,255,255,0.78); max-width: 460px; margin: 0 auto 24px; line-height: 1.8; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--accent); padding: 13px 28px;
  border-radius: 4px; font-size: 14px; font-weight: 500; font-family: inherit;
  cursor: pointer; border: none; transition: opacity 0.2s; text-decoration: none; display: inline-block;
}
.btn-white:hover { opacity: 0.9; }
.btn-ghost {
  background: transparent; color: var(--white); padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.5); border-radius: 4px;
  font-size: 14px; font-weight: 500; text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ---------- FOOTER ---------- */
footer { background: var(--navy-deep); padding: 40px 48px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.9; }
.footer-note a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-note a:hover { color: var(--white); }
.footer-h { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.license-footer {
  font-size: 11px; color: rgba(255,255,255,0.3); text-align: center;
  padding: 16px 48px; background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ---------- COUNTIES ---------- */
.county-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.county-chip {
  font-size: 12.5px; color: var(--navy); background: var(--white);
  border: 1px solid var(--border); border-radius: 3px; padding: 6px 13px;
}
.section-alt .county-chip { background: var(--cream); }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.about-photo { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.cred-list { list-style: none; margin-top: 20px; }
.cred-list li {
  font-size: 13px; color: var(--text-muted); padding: 9px 0;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 9px;
}
.cred-list li:last-child { border-bottom: none; }
.cred-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.pull-quote {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; margin: 24px 0;
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px;
  font-style: italic; color: var(--navy); line-height: 1.5;
}

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-detail { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: none; }
.cd-icon { font-size: 17px; flex-shrink: 0; width: 24px; }
.cd-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.cd-value { font-size: 14.5px; color: var(--navy); font-weight: 500; }
.cd-value a { color: var(--accent); text-decoration: none; }
.cd-value a:hover { text-decoration: underline; }

/* ---------- PROCESS ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { padding: 22px 24px; border-right: 1px solid rgba(255,255,255,0.15); }
.process-step:last-child { border-right: none; }
.process-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.process-value { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 21px; font-weight: 500; color: var(--white); line-height: 1.15; margin-bottom: 2px; }
.process-sub { font-size: 12px; color: rgba(255,255,255,0.6); }
.turnaround-banner { background: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .three-col, .four-col { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-inner { min-height: 60px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; width: 100%; flex-direction: column;
    align-items: stretch; gap: 0; padding: 8px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a, .nav-trigger { padding: 13px 4px; width: 100%; font-size: 15px; justify-content: space-between; }
  .nav-links a.active { border-bottom: none; }
  .nav-links > li > a.nav-cta { text-align: center; margin-top: 10px; padding: 13px 20px; justify-content: center; }
  .nav-menu {
    position: static; display: none; box-shadow: none; border: none;
    background: rgba(255,255,255,0.05); border-radius: 4px;
    min-width: 0; margin: 0 0 8px; padding: 6px;
  }
  .nav-menu.open { display: block; }
@media (hover: hover) and (min-width: 769px) {
  .nav-links > li:hover > .nav-menu { display: block; }
}
  .nav-links .nav-menu a { color: rgba(255,255,255,0.8); padding: 10px 12px; }
  .nav-menu a:hover, .nav-menu a:focus-visible { background: rgba(255,255,255,0.1); }
  .nav-menu a.active { background: rgba(58,107,74,0.45); }
  .nav-menu .nm-desc { color: rgba(255,255,255,0.45); }
  .nav-menu .nm-divider { background: rgba(255,255,255,0.15); }
  .nav-menu .nm-all { color: var(--accent-bright); }

  .hero, .hero-home { padding: 40px 20px; }
  .hero h1 { font-size: 30px; }
  .hero-home h1 { font-size: 34px; }
  .inner-hero { padding: 44px 20px 40px; }
  .inner-hero h1 { font-size: 32px; }
  .hero-stats { gap: 28px; margin-top: 36px; }
  .trust-bar { padding: 14px 20px; }
  .trust-bar-inner { gap: 14px; }
  .section, .section-full { padding: 40px 20px; }
  .two-col, .three-col, .four-col { grid-template-columns: 1fr; }
  .related { padding: 40px 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .bio-strip { padding: 32px 20px; }
  .bio-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .bottom-cta { padding: 40px 20px; }
  .bottom-cta h2 { font-size: 26px; }
  .section-title { font-size: 27px; }
  footer { padding: 32px 20px 24px; }
  .footer-cols { grid-template-columns: 1fr; gap: 26px; }
  .license-footer { padding: 14px 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
}
