/* Self-hosted fonts (latin subset, woff2). Served from this origin so there's
   no third-party request on the critical path; the three above-the-fold faces
   are preloaded from each page's <head>. */
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/barlow-400.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/barlow-500.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/barlow-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/barlow-700.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/barlow-condensed-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/barlow-condensed-700.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/barlow-condensed-800.woff2") format("woff2");
}

/* Metric-matched fallbacks so text doesn't jump when the web fonts swap in */
@font-face {
  font-family: "Barlow Fallback";
  src: local("Arial"), local("Helvetica Neue"), local("Helvetica");
  size-adjust: 95%;
  ascent-override: 100%;
  descent-override: 24%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Barlow Condensed Fallback";
  src: local("Arial Narrow"), local("Arial"), local("Helvetica");
  size-adjust: 82%;
  ascent-override: 100%;
  descent-override: 24%;
  line-gap-override: 0%;
}

:root {
  --paper: #faf7f2;
  --ink: #231f1c;
  --accent: #8c6410;
  --dark: #26221e;
  --footer: #100e0c;
  --border: #e5ded3;
  --muted: #6b635a;
  --tan: #f3ebda;
  --tan-light: #f1ebe1;
  --field-border: #d8cfc2;
  --gradient: linear-gradient(135deg, #332e28 0%, #161310 100%);
  --display: "Barlow Condensed", "Barlow Condensed Fallback", sans-serif;
  --body: "Barlow", "Barlow Fallback", sans-serif;
  --header-height: 71px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body,
input,
select,
textarea,
button {
  font-family: var(--body);
}

body.mobile-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

#quote,
#services,
#why,
#results,
#field,
#faq {
  scroll-margin-top: var(--header-height);
}

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100%, 1200px);
  min-height: 70px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand-link {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-link:hover {
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 42px;
}

.nav-links {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 600;
}

.nav-link,
.nav-link:hover {
  color: var(--ink);
}

.services-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}

.dropdown-trigger:hover {
  text-decoration: underline;
}

.dropdown-caret {
  color: var(--accent);
  font-size: 10px;
}

.services-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  width: 320px;
  padding-top: 12px;
  transform: translateX(-50%);
}

.services-dropdown-menu {
  display: grid;
  width: 320px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(38, 34, 30, 0.14);
}

.services-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.services-dropdown-menu a:hover,
.services-dropdown-menu a:focus-visible {
  background: var(--tan);
  color: var(--ink);
  text-decoration: none;
}

.dropdown-divider {
  margin: 6px 6px 2px;
  border-top: 1px solid var(--border);
}

.services-dropdown-menu .all-services-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.button {
  display: inline-block;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  text-decoration: none;
}

.button-accent {
  padding: 10px 20px;
  background: var(--accent);
  color: var(--paper);
  font-size: 15px;
}

.button-accent:hover {
  background: var(--dark);
  color: var(--paper);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  margin-left: auto;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--paper);
}

.mobile-menu-inner {
  display: grid;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 12px 24px 20px;
}

.mobile-menu-inner > a:not(.button) {
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-weight: 600;
}

.mobile-menu-inner .button {
  margin-top: 16px;
}

.hero,
.final-cta {
  background: var(--dark);
  background-image: var(--gradient);
  color: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 80px;
}

.award-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px 14px;
  border: 1px solid rgba(250, 247, 242, 0.25);
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.12);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.why-copy h2,
.results-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: pretty;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.hero-lede {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(250, 247, 242, 0.85);
  font-size: 19px;
  line-height: 1.55;
}

.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 36px;
}

.stat {
  display: grid;
}

.stat strong {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.stat span {
  margin-top: 4px;
  color: rgba(250, 247, 242, 0.7);
  font-size: 14px;
}

.quote-card {
  min-height: 400px;
  padding: 32px;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  color: var(--ink);
}

.form-title,
.success-title {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.form-intro {
  margin: 4px 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field-full {
  grid-column: span 2;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--field-border);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
}

.form-field input,
.form-field select {
  height: 44px;
}

.form-field select {
  color: var(--muted);
}

.form-field textarea {
  display: block;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #767069;
  opacity: 1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 0;
}

.form-field input[aria-invalid="true"] {
  border-color: var(--accent);
}

.form-validation {
  min-height: 0;
  margin: -2px 2px 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.form-validation:empty {
  display: none;
}

.form-submit {
  padding: 14px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: var(--paper);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  transition: background-color 160ms ease;
}

.form-submit:hover {
  background: var(--dark);
}

.form-footnote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-footnote a {
  font-weight: 700;
}

.quote-success {
  padding: 48px 12px;
  text-align: center;
}

.success-check {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 26px;
}

.success-title {
  font-size: 30px;
}

.quote-success p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.send-another {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.send-another:hover {
  color: var(--dark);
  text-decoration: underline;
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--tan-light);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.trust-divider {
  flex: 0 0 1px;
  width: 1px;
  height: 18px;
  background: var(--field-border);
}

.section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-heading {
  max-width: 640px;
}

.section-heading-centered {
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.why-copy h2,
.results-intro h2 {
  margin-top: 8px;
  font-size: 44px;
  line-height: 1.05;
}

.section-lede {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.service-card {
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(38, 34, 30, 0.08);
}

.service-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--tan);
  color: var(--accent);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
}

.service-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.service-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.why-section,
.faq-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.section-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image {
  height: 420px;
}

.body-lede {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.checklist {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.checkmark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 13px;
}

.section-button {
  margin-top: 30px;
  padding: 13px 26px;
  font-size: 16px;
}

.results-intro {
  margin-bottom: 48px;
}

.results-award-copy {
  margin-top: 14px;
}

.results-motto {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
}

.results-image {
  height: 300px;
}

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

.result-card {
  padding: 30px 26px;
  border-radius: 10px;
  background: var(--dark);
  color: var(--paper);
}

.result-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.result-card p {
  margin: 10px 0 0;
  color: rgba(250, 247, 242, 0.8);
  font-size: 15px;
  line-height: 1.55;
}

.scoreboard {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}

.field-section {
  border-top: 1px solid var(--border);
  background: var(--tan-light);
}

.field-heading {
  margin-bottom: 40px;
}

.field-gallery {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) repeat(3, minmax(140px, 200px));
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.gallery-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--paper);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.025);
}

.gallery-featured {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.gallery-tall {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.gallery-small-one {
  grid-column: 4;
  grid-row: 1;
}

.gallery-small-two {
  grid-column: 5;
  grid-row: 1;
}

.gallery-small-three {
  grid-column: 4;
  grid-row: 2;
}

.gallery-small-four {
  grid-column: 5;
  grid-row: 2;
}

.faq-section {
  border-bottom: 0;
}

.faq-container {
  width: min(100%, 820px);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.faq-heading {
  margin-bottom: 40px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--paper);
  transition: border-color 160ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: var(--accent);
}

.faq-item h3 {
  margin: 0;
  font-size: inherit;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  gap: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.faq-item button:focus-visible {
  outline-offset: -4px;
}

.faq-mark {
  flex: 0 0 auto;
  color: var(--accent);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
}

.faq-panel {
  padding: 0 24px 20px;
}

.faq-panel p {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.final-cta-inner {
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.final-cta h2 {
  font-size: 48px;
  line-height: 1.05;
}

.final-cta p {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(250, 247, 242, 0.8);
  font-size: 18px;
  line-height: 1.55;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.button-light,
.button-outline {
  padding: 14px 30px;
  font-size: 17px;
}

.button-light {
  background: var(--paper);
  color: var(--dark);
}

.button-light:hover {
  background: #fff;
  color: var(--dark);
}

.button-outline {
  border: 1.5px solid rgba(250, 247, 242, 0.5);
  color: var(--paper);
}

.button-outline:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.site-footer {
  background: var(--footer);
  color: rgba(250, 247, 242, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
  font-size: 14.5px;
  line-height: 1.7;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  overflow-wrap: anywhere;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-badge {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
}

.footer-heading {
  margin: 0 0 8px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(250, 247, 242, 0.75);
}

.site-footer a:hover {
  color: var(--paper);
}

.footer-bottom {
  padding: 16px 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  color: rgba(250, 247, 242, 0.5);
  font-size: 13px;
  text-align: center;
}

.footer-bottom a {
  color: rgba(250, 247, 242, 0.5);
}

@media (max-width: 960px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lede {
    max-width: 620px;
  }

  .quote-card {
    width: min(100%, 620px);
  }

  .trust-strip-inner {
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    height: min(56vw, 480px);
  }

  .results-intro {
    gap: 36px;
  }

  .results-image {
    height: min(48vw, 380px);
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .field-gallery {
    grid-template-columns: repeat(2, minmax(0, 220px));
    grid-template-rows: auto;
    justify-content: center;
  }

  .gallery-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .gallery-tall,
  .gallery-small-one,
  .gallery-small-two,
  .gallery-small-three,
  .gallery-small-four {
    grid-column: auto;
    grid-row: auto;
    width: min(100%, 220px);
    justify-self: center;
  }

  .gallery-tall {
    aspect-ratio: 3 / 4;
  }

  .gallery-small {
    aspect-ratio: 1 / 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container,
  .faq-container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .nav-bar {
    padding-right: 18px;
    padding-left: 18px;
  }

  .award-pill {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.4;
  }

  .hero-grid {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .stat-row {
    flex-wrap: wrap;
    gap: 24px 32px;
  }

  .stat {
    flex: 1 1 110px;
  }

  .quote-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .trust-strip-inner {
    display: grid;
    gap: 12px;
  }

  .trust-divider {
    width: 48px;
    height: 1px;
    justify-self: center;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-heading h2,
  .why-copy h2,
  .results-intro h2 {
    font-size: 38px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-image,
  .results-image {
    height: 300px;
  }

  .field-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-tall,
  .gallery-small-one,
  .gallery-small-two,
  .gallery-small-three,
  .gallery-small-four {
    width: min(100%, 220px);
  }

  .faq-item button {
    padding: 18px;
    font-size: 16px;
  }

  .faq-panel {
    padding: 0 18px 18px;
  }

  .faq-panel p {
    margin-top: -8px;
  }

  .final-cta h2 {
    font-size: 40px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .field-gallery {
    grid-template-columns: minmax(0, 220px);
  }

  .gallery-featured {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------------------------------------------------------------- */
/* Sub-pages (services, about, portfolio)                            */
/* ---------------------------------------------------------------- */

a.service-card {
  display: block;
  color: inherit;
}

a.service-card:hover {
  color: inherit;
  text-decoration: none;
}

.mobile-services-label {
  padding: 12px 4px 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu-inner > .mobile-service-link {
  padding-left: 16px;
  font-size: 15px;
}

.subpage-hero {
  background: var(--dark);
  background-image: var(--gradient);
  color: var(--paper);
}

.subpage-hero-inner {
  max-width: 880px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.subpage-hero h1 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: pretty;
}

.subpage-hero .hero-lede {
  max-width: 640px;
}

/* Service pages reuse the homepage hero + quote card; titles are longer */
.hero-subpage h1 {
  margin-top: 10px;
  font-size: 48px;
}

.hero-subpage .hero-lede {
  font-size: 18px;
}

.service-detail-list {
  display: grid;
  gap: 40px;
  max-width: 820px;
}

.service-detail {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.service-detail .service-number {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.service-detail h2 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-detail p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.results-reasons {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.results-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.results-reasons-grid article {
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--paper);
}

.results-reasons-grid h3 {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.25;
}

.results-reasons-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.subpage-quote {
  background: var(--dark);
  background-image: var(--gradient);
  color: var(--paper);
}

.quote-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.quote-section-copy h2 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: pretty;
}

.quote-section-copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 16px 0 0;
  color: rgba(250, 247, 242, 0.85);
  font-size: 17px;
  line-height: 1.6;
}

.more-services {
  border-top: 1px solid var(--border);
  background: #fff;
}

.more-services-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.more-services-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.more-services-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.more-services-links a {
  font-weight: 600;
}

.about-narrative h2 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: pretty;
}

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

.npr-band {
  background: var(--dark);
  background-image: var(--gradient);
  color: var(--paper);
}

.npr-band .section-lede {
  color: rgba(250, 247, 242, 0.85);
}

.npr-band-inner {
  max-width: 820px;
}

.npr-band h2 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.npr-band p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(250, 247, 242, 0.85);
  font-size: 17px;
  line-height: 1.6;
}

.npr-player {
  margin-top: 32px;
}

.npr-player iframe {
  display: block;
  border: 1px solid rgba(250, 247, 242, 0.18);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
}

.npr-play {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(250, 247, 242, 0.25);
  border-radius: 12px;
  background: rgba(250, 247, 242, 0.08);
  color: var(--paper);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.npr-play:hover,
.npr-play:focus-visible {
  border-color: var(--accent);
  background: rgba(250, 247, 242, 0.14);
}

.npr-play-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 18px;
  padding-left: 3px;
}

.npr-play-text {
  display: grid;
  gap: 2px;
}

.npr-play-text strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.npr-play-text span {
  color: rgba(250, 247, 242, 0.75);
  font-size: 14px;
}

.npr-player-note {
  margin: 12px 0 0;
  font-size: 14px !important;
  color: rgba(250, 247, 242, 0.65) !important;
}

.npr-player-note a {
  color: var(--accent);
}

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

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

.glance-card {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.glance-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.glance-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.testimonial-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--tan-light);
}

.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  margin: 0;
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
}

.testimonial cite {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-grid li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.4;
}

.service-marquee {
  padding: 18px 0;
  overflow: hidden;
  background: var(--accent);
  color: var(--paper);
}

.service-marquee p {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.footer-links {
  display: grid;
  gap: 2px;
}

@media (max-width: 960px) {
  .subpage-hero h1,
  .hero-subpage h1 {
    font-size: 40px;
  }

  .quote-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quote-section-grid .quote-card {
    width: min(100%, 620px);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .subpage-hero-inner {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .subpage-hero h1,
  .hero-subpage h1 {
    font-size: 34px;
  }

  .service-detail {
    flex-direction: column;
    gap: 14px;
  }

  .service-detail h2 {
    font-size: 26px;
  }

  .results-reasons-grid,
  .glance-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .quote-section-copy h2,
  .npr-band h2 {
    font-size: 36px;
  }

  .testimonial blockquote {
    font-size: 18px;
  }
}

/* ---------------------------------------------------------------- */
/* Design polish: texture, motion, and detail                        */
/* ---------------------------------------------------------------- */

/* Topographic contour texture over every dark band — the ground game,
   literally. Encoded inline so it costs no request. */
.hero,
.final-cta,
.subpage-hero,
.npr-band,
.subpage-quote {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='640' viewBox='0 0 640 640'%3E%3Cg fill='none' stroke='%23faf7f2' stroke-opacity='.05' stroke-width='1.3'%3E%3Cpath d='M-20 120 Q 140 60 320 110 T 660 100'/%3E%3Cpath d='M-20 168 Q 150 104 320 158 T 660 148'/%3E%3Cpath d='M-20 560 Q 180 500 360 550 T 660 540'/%3E%3Cg transform='rotate(-12 480 340)'%3E%3Cellipse cx='480' cy='340' rx='150' ry='90'/%3E%3Cellipse cx='480' cy='340' rx='110' ry='62'/%3E%3Cellipse cx='480' cy='340' rx='70' ry='36'/%3E%3Cellipse cx='480' cy='340' rx='32' ry='14'/%3E%3C/g%3E%3Cg transform='rotate(9 120 430)'%3E%3Cellipse cx='120' cy='430' rx='120' ry='70'/%3E%3Cellipse cx='120' cy='430' rx='84' ry='46'/%3E%3Cellipse cx='120' cy='430' rx='48' ry='24'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    var(--gradient);
  background-size: 640px 640px, auto;
}

/* Eyebrows get a gold blaze mark — one system, every page */
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 10px;
  vertical-align: 4px;
  background: var(--accent);
}

/* Trust strip: from gray mush to a confident credentials row */
.trust-strip-inner span:not(.trust-divider),
.trust-strip-inner .trust-link {
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-strip-inner .trust-link {
  text-decoration: none;
  text-underline-offset: 4px;
  text-decoration-color: var(--accent);
}

.trust-strip-inner .trust-link:hover,
.trust-strip-inner .trust-link:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.trust-strip .trust-divider {
  background: var(--accent);
  opacity: 0.55;
}

/* Award pill: lead with a star */
.award-pill::before {
  content: "★";
  color: var(--accent);
  font-size: 13px;
}

/* Service cards read as destinations: gold keyline sweeps in, number
   tile ignites, arrow steps forward */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.service-card:hover::before,
.service-card:focus-visible::before {
  transform: scaleX(1);
}

.service-card .service-number {
  transition: background-color 200ms ease, color 200ms ease;
}

.service-card:hover .service-number {
  background: var(--accent);
  color: var(--paper);
}

a.service-card::after {
  content: "→" / "";
  position: absolute;
  right: 20px;
  bottom: 14px;
  color: var(--accent);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
}

a.service-card:hover::after,
a.service-card:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

/* Buttons: a touch of physical response */
.button {
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

/* Quote card: gold crest so the form pops off the dark bands */
.quote-card {
  border-top: 4px solid var(--accent);
}

/* Sub-page service numerals: big, outlined, editorial */
@supports (-webkit-text-stroke: 1px black) {
  .service-detail .service-number {
    width: auto;
    height: auto;
    margin-top: -6px;
    border-radius: 0;
    background: transparent;
    color: transparent;
    -webkit-text-stroke: 1.6px var(--accent);
    font-size: 64px;
    line-height: 1;
  }
}

.service-detail {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

/* Current page marker in the nav */
.nav-link[aria-current="page"] {
  color: var(--accent);
  box-shadow: inset 0 -2px 0 var(--accent);
}

/* More-services links become tappable cards */
.more-services-links a {
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.more-services-links a span {
  color: var(--accent);
}

.more-services-links a:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(38, 34, 30, 0.1);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Testimonial: give the quote its drama */
.testimonial::before {
  content: "\201C";
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 110px;
  font-weight: 800;
  line-height: 0.55;
}

/* FAQ: open item carries a gold spine */
.faq-item {
  border-left: 3px solid transparent;
  transition: border-color 200ms ease;
}

.faq-item:has(button[aria-expanded="true"]) {
  border-left-color: var(--accent);
}

/* Portfolio marquee: actually moves */
.service-marquee {
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-track p {
  flex: none;
  margin: 0;
  padding-right: 24px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
  .marquee-track {
    animation: marquee-scroll 46s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    width: auto;
  }

  .marquee-track p {
    white-space: normal;
    text-align: center;
    text-wrap: balance;
  }

  .marquee-track p + p {
    display: none;
  }
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Hero entrances: one orchestrated rise on load */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero .quote-card,
  .subpage-hero-inner > * {
    animation: rise-in 640ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }

  .hero-copy > :nth-child(1),
  .subpage-hero-inner > :nth-child(1) {
    animation-delay: 60ms;
  }

  .hero-copy > :nth-child(2),
  .subpage-hero-inner > :nth-child(2) {
    animation-delay: 150ms;
  }

  .hero-copy > :nth-child(3),
  .subpage-hero-inner > :nth-child(3) {
    animation-delay: 240ms;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: 330ms;
  }

  .hero .quote-card {
    animation-delay: 320ms;
  }
}

/* Transform-only on purpose: an opacity:0 start would hold back the hero
   heading's Largest Contentful Paint until the fade finished. */
@keyframes rise-in {
  from {
    transform: translateY(18px);
  }
}

/* Scroll reveals: script.js adds .reveal, then .revealed on entry */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
