:root {
  --ink: #102235;
  --navy: #0b2036;
  --navy-2: #15334d;
  --cream: #f6f3ed;
  --paper: #fcfbf8;
  --white: #ffffff;
  --mist: #dfe9e5;
  --sea: #58776f;
  --sea-dark: #36554f;
  --brass: #bd8a4c;
  --brass-light: #e6c89e;
  --muted: #5f6c76;
  --line: rgba(16, 34, 53, 0.14);
  --shadow: 0 22px 70px rgba(11, 32, 54, 0.12);
  --shadow-soft: 0 12px 35px rgba(11, 32, 54, 0.08);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 790px);
  margin-inline: auto;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.announcement {
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(11, 32, 54, 0.06);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50% 50% 50% 14px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.05em;
  transform: rotate(-5deg);
}

.brand-mark > span {
  transform: rotate(5deg);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--sea-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav > a:not(.button) {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 19px;
  height: 2px;
  display: block;
  position: relative;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded='true'] span { background: transparent; }
.nav-toggle[aria-expanded='true'] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded='true'] span::after { top: 0; transform: rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(11, 32, 54, 0.16);
}

.button-primary:hover { background: var(--navy-2); }

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-outline {
  border-color: rgba(16, 34, 53, 0.3);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.55);
}

.button-arrow::after {
  content: '→';
  font-size: 18px;
  transition: transform 170ms ease;
}

.button-arrow:hover::after { transform: translateX(3px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--brass);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(48px, 7vw, 90px); }
h2 { font-size: clamp(38px, 5vw, 62px); }
h3 { font-size: clamp(24px, 3vw, 31px); }

p { margin-top: 0; }

.lede {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 88px;
  background:
    radial-gradient(circle at 6% 10%, rgba(189, 138, 76, 0.13), transparent 28%),
    radial-gradient(circle at 90% 38%, rgba(88, 119, 111, 0.15), transparent 32%),
    var(--cream);
}

.hero::after {
  content: '';
  position: absolute;
  right: -11vw;
  bottom: -20vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(88, 119, 111, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(88, 119, 111, 0.03), 0 0 0 96px rgba(88, 119, 111, 0.025);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
}

.hero h1 em {
  color: var(--sea-dark);
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 36px 0 42px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--sea-dark);
  background: var(--mist);
  border-radius: 50%;
  font-size: 13px;
}

.portrait-wrap {
  position: relative;
  max-width: 470px;
  margin-left: auto;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 0.77;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 48% 48% 24px 24px;
  box-shadow: var(--shadow);
  background: #c9d0d1;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.portrait-card {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(270px, 75%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  color: var(--white);
  background: rgba(11, 32, 54, 0.93);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.portrait-card strong,
.portrait-card span {
  display: block;
}

.portrait-card strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.portrait-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.section {
  padding: 112px 0;
}

.section-sm { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-navy { color: var(--white); background: var(--navy); }

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center .eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--brass); }
.section-heading h2 { margin-bottom: 20px; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 19px; }
.section-navy .section-heading p { color: rgba(255, 255, 255, 0.66); }

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

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(189, 138, 76, 0.5);
  box-shadow: var(--shadow);
}

.card-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  color: var(--sea-dark);
  background: var(--mist);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
}

.service-card:nth-child(2) .card-number { color: #754f24; background: #f2e4cf; }
.service-card:nth-child(3) .card-number { color: var(--navy); background: #e5e7ec; }
.service-card h3 { margin-bottom: 15px; }
.service-card p { color: var(--muted); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.card-link::after { content: '↗'; color: var(--brass); font-size: 18px; }

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.split.reverse > :first-child { order: 2; }
.split h2 { margin-bottom: 24px; }
.split-copy > p { color: var(--muted); }

.pullquote {
  margin: 32px 0;
  padding: 26px 0 26px 28px;
  border-left: 2px solid var(--brass);
  font-family: var(--serif);
  font-size: clamp(21px, 3vw, 29px);
  line-height: 1.35;
}

.image-arch {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 240px 240px 24px 24px;
  background:
    linear-gradient(180deg, rgba(11, 32, 54, 0.04), rgba(11, 32, 54, 0.6)),
    url('/assets/images/scott-st-clair-headshot.jpg') center 18% / cover;
  box-shadow: var(--shadow);
}

.image-arch::after {
  content: '20+ YEARS';
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 114px;
  height: 114px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(11, 32, 54, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  color: var(--sea-dark);
  background: var(--mist);
  font-size: 12px;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 38px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--brass-light);
  background: var(--navy);
  font-family: var(--serif);
}

.step h3 { margin-bottom: 12px; font-size: 25px; }
.step p { color: rgba(255, 255, 255, 0.62); font-size: 15px; }

.local-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 74px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(11, 32, 54, 0.98), rgba(21, 51, 77, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(230, 200, 158, 0.35), transparent 28%);
  box-shadow: var(--shadow);
}

.local-panel::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.02), 0 0 0 76px rgba(255, 255, 255, 0.02);
}

.local-content {
  max-width: 740px;
  position: relative;
  z-index: 1;
}

.local-panel .eyebrow { color: var(--brass-light); }
.local-panel h2 { margin-bottom: 22px; }
.local-panel p { color: rgba(255, 255, 255, 0.68); }

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 36px;
}

.towns span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { max-width: 720px; padding: 0 56px 24px 0; color: var(--muted); }

.cta-band {
  padding: 80px 0;
  color: var(--white);
  background: var(--sea-dark);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(36px, 5vw, 58px); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 88px;
  background: var(--cream);
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -110px;
  top: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(88, 119, 111, 0.2);
  border-radius: 50%;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 950px; margin-bottom: 25px; font-size: clamp(48px, 7vw, 78px); }
.page-hero .lede { margin-bottom: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 32px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 7px; color: var(--brass); }
.breadcrumb a { text-decoration: none; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 70px;
}

.prose h2 { margin-top: 64px; margin-bottom: 20px; font-size: clamp(34px, 4vw, 47px); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 38px; margin-bottom: 12px; font-size: 25px; }
.prose p,
.prose li { color: var(--muted); }
.prose strong { color: var(--ink); }
.prose ul { padding-left: 22px; }

.aside-card {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.aside-card h3 { margin-bottom: 15px; font-size: 28px; }
.aside-card p { color: rgba(255, 255, 255, 0.65); font-size: 15px; }
.aside-card .button { width: 100%; margin-top: 10px; }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.compare-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.compare-card h3 { margin: 0 0 10px; font-size: 23px; }
.compare-card p { margin-bottom: 0; font-size: 15px; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.stat {
  padding: 28px;
  text-align: center;
}

.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.stat span { color: var(--muted); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: 0.08em; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: 54px;
}

.contact-form-card {
  padding: clamp(28px, 4.5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 58px);
}

.form-intro {
  max-width: 630px;
  margin-bottom: 36px;
  color: var(--muted);
}

.contact-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 30px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.contact-form legend {
  padding: 0 14px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

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

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.form-field-wide { grid-column: 1 / -1; }

.form-field span {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.form-field strong { color: #9d3b2e; }

.form-field small,
.field-help,
.required-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
}

.field-help { margin: -8px 0 18px; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 34, 53, 0.24);
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.35;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #7c8790; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sea-dark);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(88, 119, 111, 0.17);
}

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

.choice-card {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(16, 34, 53, 0.24);
  border-radius: 10px;
  background: var(--paper);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: var(--sea-dark);
  background: var(--mist);
  box-shadow: 0 0 0 2px rgba(88, 119, 111, 0.12);
}

.choice-card input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--sea-dark);
}

.form-consent {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.contact-form .button { min-width: 175px; }

.required-note { margin: 12px 0 0; }

.form-honeypot {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip-path: inset(50%);
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 { margin-bottom: 12px; }
.contact-card p { color: var(--muted); }
.contact-card .button { margin-top: 10px; }

.contact-email {
  color: var(--sea-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.contact-note {
  padding: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.contact-note h2 { font-size: clamp(36px, 5vw, 50px); }
.contact-note p { color: rgba(255, 255, 255, 0.68); }

.confirmation-page {
  min-height: 62vh;
  display: grid;
  align-items: center;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.legal {
  font-size: 15px;
}

.site-footer {
  padding: 72px 0 32px;
  color: rgba(255, 255, 255, 0.72);
  background: #071725;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 60px;
  padding-bottom: 52px;
}

.site-footer .brand { color: var(--white); }
.site-footer .brand-mark { color: var(--navy); background: var(--brass-light); }
.site-footer .brand-copy small { color: var(--brass-light); }
.footer-intro { max-width: 410px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.55); font-size: 14px; }

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.footer-bottom p { max-width: 800px; margin-bottom: 0; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle { display: grid; }
  .primary-nav {
    position: fixed;
    top: 111px;
    right: 0;
    left: 0;
    height: calc(100dvh - 111px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 20px;
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }
  .primary-nav.open { transform: translateX(0); visibility: visible; }
  .primary-nav > a:not(.button) { padding: 17px 8px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 25px; font-weight: 500; }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button { margin-top: 24px; }
  .hero-grid,
  .split,
  .content-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .portrait-wrap { width: min(90%, 480px); margin: 20px auto 0; }
  .split.reverse > :first-child { order: initial; }
  .image-arch { width: min(100%, 560px); margin-inline: auto; }
  .aside-card { position: static; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid .service-card:last-child { grid-column: 1 / -1; min-height: 300px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container,
  .narrow { width: min(calc(100% - 30px), var(--container)); }
  .announcement { padding-inline: 12px; font-size: 9px; letter-spacing: 0.1em; }
  .nav-wrap { min-height: 70px; }
  .brand-copy small { display: none; }
  .primary-nav { top: 99px; height: calc(100dvh - 99px); }
  .hero { padding: 58px 0 70px; }
  .hero-grid { gap: 42px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-row { display: grid; grid-template-columns: 1fr; }
  .portrait-card { right: -6px; bottom: 18px; }
  .section { padding: 82px 0; }
  .section-sm { padding: 62px 0; }
  .section-heading { margin-bottom: 38px; }
  .card-grid,
  .steps,
  .compare-grid,
  .stat-strip { grid-template-columns: 1fr; }
  .card-grid .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 320px; padding: 28px; }
  .steps { gap: 30px; }
  .steps::before { display: none; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .image-arch { min-height: 440px; }
  .local-panel { border-radius: var(--radius); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .card-link,
  .footer-column a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card { justify-content: flex-start; }
  .contact-form-card { border-radius: var(--radius); }
  .confirmation-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
