:root {
  --ink: #142737;
  --navy: #214760;
  --blue: #2f637e;
  --teal: #4d9a9a;
  --mint: #dff0ea;
  --cream: #f7f3eb;
  --paper: #ffffff;
  --line: #d9e2e5;
  --muted: #60717b;
  --gold: #c79b52;
  --shadow: 0 12px 32px rgba(20, 39, 55, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
  --section-y: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::selection {
  background: var(--mint);
}

a {
  color: inherit;
}

a,
button,
.card,
.location-card,
.contact-option,
.next-step-links a {
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(199, 155, 82, .55);
  outline-offset: 3px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .5s ease,
    transform .5s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.hero .reveal {
  transform: translateY(8px);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: #ffffff;
  border-bottom: 1px solid rgba(217, 226, 229, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, border-color .2s ease, min-height .2s ease;
}

.site-header[data-scrolled] {
  background: #ffffff;
  border-bottom-color: rgba(217, 226, 229, 1);
  box-shadow: 0 12px 34px rgba(20, 39, 55, .1);
}

.header-inner,
.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 50px;
  max-width: 230px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #243947;
  font-weight: 650;
  font-size: .92rem;
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: transparent;
  border-radius: 999px;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button)[aria-current="page"] {
  color: var(--blue);
}

.site-nav a:not(.button):hover::after,
.site-nav a:not(.button)[aria-current="page"]::after {
  background: var(--gold);
}

.site-nav .button {
  color: white;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  text-decoration: none;
  font-weight: 700;
}

.button .fa-solid,
.button .fa-regular,
.text-link .fa-solid,
.text-link .fa-regular {
  font-size: .92em;
}

.button {
  padding: .76rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--navy);
  color: white;
  box-shadow: none;
}

.button:hover,
.contact-option:hover {
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
  box-shadow: none;
}

.text-link {
  color: var(--blue);
}

.text-link:hover,
.prose a:hover,
.mini-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.hero {
  background:
    linear-gradient(90deg, rgba(20, 39, 55, .94) 0%, rgba(20, 39, 55, .84) 48%, rgba(20, 39, 55, .42) 100%),
    url("/assets/hull-jt-accountancy.jpg") center/cover;
  color: white;
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 760px);
  padding: 76px 0 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold) !important;
  font-size: .75rem !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.4vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.15rem;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: clamp(.75rem, 1.5vw, .95rem);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-rating {
  width: fit-content;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 9px 14px;
  color: white;
  text-decoration: none;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
}

.hero-rating .google-mark {
  width: 26px;
  height: 26px;
  background: white;
}

.hero-rating .google-mark img {
  width: 20px;
  height: 20px;
}

.hero-rating strong,
.hero-rating span:last-child {
  line-height: 1;
  font-weight: 800;
}

.hero-rating .google-stars {
  color: #ffcc00;
  font-size: .88rem;
}

.trust-strip {
  background: #fbfaf7;
  border-bottom: 1px solid var(--line);
}

.trust-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}

.trust-item {
  position: relative;
  min-height: 112px;
  padding: 26px 24px;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 42px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(.55);
  transform-origin: left;
  transition: transform .18s ease;
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item:hover {
  background: white;
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.4rem;
  line-height: 1.1;
}

.trust-item span {
  color: var(--muted);
  font-weight: 560;
}

.section {
  padding: var(--section-y) 0;
}

.section + .section {
  border-top: 1px solid rgba(217, 226, 229, .82);
}

.section.alt {
  background: #f4f8f8;
}

.section.navy {
  color: white;
  background: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 34px;
}

.compact-head {
  margin-bottom: 26px;
}

.compact-head h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
}

.quote-head {
  align-items: start;
  margin-bottom: 56px;
}

.office-head {
  align-items: center;
}

.office-head > p {
  justify-self: end;
  align-self: center;
  max-width: 520px;
  padding-top: 0;
  text-align: right;
}

.quote-head > p,
.quote-head > .google-rating {
  max-width: 520px;
  padding-top: 20px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  width: fit-content;
  min-width: 0;
  padding: 16px 20px;
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.google-mark {
  width: 32px;
  height: 32px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #4285f4;
  border-radius: 50%;
}

.google-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.google-score {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.google-rating strong {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1;
}

.google-stars {
  color: #ffcc00;
  letter-spacing: 0;
}

.stars {
  color: #ffcc00;
  letter-spacing: 0;
}

.google-rating .fa-star,
.stars .fa-star {
  margin-right: 2px;
}

.google-stars {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1;
}

.google-review-count {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  font-size: 1rem;
}

.navy .section-head p,
.navy .muted {
  color: rgba(255,255,255,.74);
}

.navy .quote cite,
.navy .quote figcaption small {
  color: #ffffff;
}

.navy .card h3,
.navy .card p {
  color: var(--ink);
}

.section.navy.reviews-section {
  background: #003399;
}

.navy .eyebrow,
.reviews-section .eyebrow,
.cta-band .eyebrow {
  color: var(--gold);
}

.reviews-section .quote-head h2 {
  color: white;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 > .card,
.cards-4 > .card {
  height: 100%;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  min-height: 100%;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.card:hover {
  border-color: rgba(47, 99, 126, .34);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(20, 39, 55, .07);
}

.card-media {
  overflow: hidden;
  margin: -26px -26px 22px;
  aspect-ratio: 16 / 10;
  background: #e9f0f1;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.card:hover .card-media img {
  transform: scale(1.035);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.service-card h3 {
  min-height: 2.5em;
  font-weight: 750;
}

.service-card p,
.card p {
  color: var(--muted);
  font-weight: 450;
}

.service-card .text-link {
  margin-top: auto;
  justify-content: flex-start;
}

.service-card .text-link .fa-solid {
  transition: transform .18s ease;
}

.service-card:hover .text-link .fa-solid {
  transform: translateX(4px);
}

.blog-index-section .blog-card-grid {
  align-items: stretch;
}

.blog-card h3 {
  min-height: 0;
  margin-bottom: 4px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 740;
}

.blog-date {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
}

.blog-card .eyebrow {
  margin-bottom: -6px;
}

.location-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.location-card:hover {
  background: white;
  border-color: rgba(47, 99, 126, .42);
  transform: translateY(-2px);
}

.location-card > span {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.location-card h3 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.location-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.location-card strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--blue);
  font-size: .95rem;
}

.feature-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 30px 0 38px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-points div {
  padding: 22px;
  background: #f7faf9;
}

.about-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.1rem;
}

.about-points span {
  display: block;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.services-intro {
  padding: 28px 0;
  background: #fbfaf7;
}

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

.service-summary-strip div {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.service-summary-strip div:first-child {
  border-left: 0;
}

.service-summary-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.2rem;
}

.service-summary-strip span {
  color: var(--muted);
  font-weight: 650;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: 52px;
  align-items: center;
}

.portrait {
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius);
  box-shadow: none;
}

.portrait img,
.office-feature img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait img {
  object-position: center 18%;
}

.office-feature {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(320px, .38fr);
  gap: 28px;
  align-items: center;
}

.office-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: none;
}

.office-image img {
  object-position: center 54%;
}

.office-copy {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.office-copy h3 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.office-copy p {
  color: var(--muted);
}

.compact-list {
  margin: 22px 0;
}

.office-copy .text-link {
  justify-content: flex-start;
}

.contact-photo {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: -28px -28px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.contact-photo img {
  object-position: center 40%;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
}

.review-actions {
  justify-content: center;
  margin-top: 36px;
}

.review-actions .button.secondary {
  color: white;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  border-radius: 999px;
}

.quote {
  display: grid;
  align-content: start;
  min-height: 360px;
  margin: 0;
  padding: 42px 38px;
  border-right: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
}

.quote:nth-child(3n) {
  border-right: 0;
}

.quote:nth-child(n + 4) {
  border-top: 1px solid rgba(255,255,255,.16);
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.22);
}

.quote figcaption small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-size: .95rem;
  font-weight: 600;
}

.review-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 900;
}

.stars {
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1;
}

.quote blockquote {
  min-height: 180px;
  margin: 0;
  color: white;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-style: normal;
  line-height: 1.58;
}

.quote cite {
  display: block;
  color: white;
  font-style: normal;
  font-weight: 700;
}

.local-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 28px;
}

.local-links a {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.local-links a:hover {
  border-color: rgba(47, 99, 126, .4);
}

.local-links span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.local-links strong {
  color: var(--blue);
}

.map-embed {
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
  background:
    linear-gradient(135deg, rgba(247, 243, 235, .9) 0%, rgba(247, 250, 249, 1) 58%, rgba(223, 240, 234, .62) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(38vw, 520px);
  background: linear-gradient(90deg, rgba(199, 155, 82, .12), rgba(199, 155, 82, 0));
  pointer-events: none;
}

.page-hero .section-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(380px, .42fr);
  gap: 56px;
  align-items: center;
}

.page-hero-copy {
  max-width: 880px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.02;
}

.contact-hero {
  padding: 76px 0;
  background:
    linear-gradient(135deg, rgba(47, 99, 126, .08), rgba(223, 240, 234, .52)),
    #f7faf9;
}

.contact-hero .section-inner {
  grid-template-columns: minmax(0, .78fr) minmax(340px, .38fr);
}

.contact-hero h1 {
  max-width: 780px;
}

.contact-hero .page-summary {
  max-width: 720px;
}

.contact-summary-card {
  padding: 28px;
  background: white;
  border: 1px solid rgba(47, 99, 126, .18);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(20, 39, 55, .07);
}

.contact-summary-card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.contact-summary-card .contact-list {
  gap: 0;
}

.contact-summary-card .contact-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-summary-card .contact-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-summary-card .contact-list li:last-child {
  padding-bottom: 0;
}

.contact-summary-card .contact-list strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}

.contact-summary-card .contact-list a {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb span {
  color: rgba(96, 113, 123, .55);
}

.breadcrumb strong {
  color: var(--ink);
  font-weight: 700;
}

.page-summary {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.24vw, 1.14rem);
  line-height: 1.65;
}

.fact-box {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.page-hero .fact-box {
  position: relative;
  padding: 34px;
  color: white;
  background: var(--ink);
  border: 0;
  box-shadow: 0 18px 42px rgba(20, 39, 55, .12);
}

.page-hero .fact-box::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 4px;
  background: var(--gold);
}

.fact-box h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.page-hero .fact-box h2 {
  margin-bottom: 14px;
  color: white;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.sidebar .fact-box h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.fact-box p {
  color: var(--muted);
}

.page-hero .fact-box p {
  color: rgba(255,255,255,.78);
}

.page-hero .fact-box .button {
  width: 100%;
  margin-top: 8px;
  color: var(--ink);
  background: white;
  border-color: rgba(255,255,255,.18);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(290px, .28fr);
  gap: 38px;
  align-items: start;
}

.service-page-section {
  background: #fbfaf7;
}

.service-layout {
  grid-template-columns: minmax(0, .7fr) minmax(310px, .3fr);
  gap: 28px;
}

.service-detail {
  display: grid;
  gap: 18px;
}

.service-intro-panel,
.service-includes-panel,
.service-proof-panel,
.service-faq {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-intro-panel h2,
.service-includes-panel h2,
.service-proof-panel h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.service-intro-copy {
  max-width: 820px;
  columns: 2 280px;
  column-gap: 34px;
}

.service-intro-copy p {
  break-inside: avoid;
}

.service-includes-panel {
  display: grid;
  grid-template-columns: minmax(220px, .38fr) minmax(0, .62fr);
  gap: 30px;
  align-items: start;
}

.service-includes-panel .feature-list {
  gap: 10px;
  padding-top: 2px;
}

.service-includes-panel .feature-list li {
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line);
}

.service-includes-panel .feature-list li:last-child {
  border-bottom: 0;
}

.service-proof-panel {
  background:
    linear-gradient(135deg, rgba(47, 99, 126, .07), rgba(199, 155, 82, .07)),
    white;
}

.service-proof-panel p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.prose h2 {
  margin-top: 52px;
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: #475b66;
}

.info-grid {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.info-card {
  padding: 28px;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--ink);
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.next-step-panel {
  display: grid;
  grid-template-columns: minmax(260px, .5fr) minmax(0, .85fr);
  gap: 34px;
  align-items: center;
  margin: 0;
  padding: 30px;
  background: var(--ink);
  border: 1px solid rgba(47, 99, 126, .18);
  border-radius: var(--radius);
  color: white;
}

.next-step-panel h2 {
  max-width: 12ch;
  margin: 0 0 12px;
  color: white;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.05;
}

.next-step-panel p {
  max-width: 34ch;
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
}

.next-step-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.next-step-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  background: white;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.next-step-links a:hover {
  background: white;
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}

.blog-post {
  font-size: 1.06rem;
}

.blog-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.source-note {
  margin-top: 44px;
}

.source-note .text-link {
  display: flex;
  justify-content: flex-start;
  min-height: auto;
  margin-top: 10px;
}

.sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.service-sidebar {
  gap: 14px;
}

.service-contact-card {
  background: white;
}

.service-contact-card .button {
  width: 100%;
  margin: 6px 0 8px;
}

.service-contact-card .text-link {
  justify-content: center;
  min-height: 0;
  font-size: .95rem;
}

.mini-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mini-nav a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--muted);
  font-size: .8rem;
  transition: transform .18s ease, color .18s ease;
}

.mini-nav a:hover::after {
  color: var(--gold);
  transform: translateX(3px);
}

.mini-nav a .fa-solid {
  width: 18px;
  color: var(--teal);
  font-size: .9rem;
}

.cta-section {
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .38fr);
  gap: 56px;
  align-items: center;
  color: white;
  padding: 18px 0;
}

.cta-band h2 {
  max-width: 840px;
  margin-bottom: 20px;
}

.cta-band p {
  max-width: 620px;
  color: rgba(255,255,255,.82);
}

.cta-band .section-actions {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
  gap: 12px;
  margin-top: 0;
}

.cta-band .button {
  justify-content: center;
  width: 100%;
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(0, .8fr);
  gap: 56px;
  align-items: start;
}

.faq-wrap > div:first-child p:last-child {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
  border-top: 0;
}

.faq-list details {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
  background: #f4f8f8;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list details[open] summary::after {
  content: "-";
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.faq-list p {
  max-width: 760px;
  margin: -2px 22px 22px;
  color: var(--muted);
}

.service-faq {
  margin-top: 0;
}

.service-faq h2 {
  margin-bottom: 18px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-option {
  display: grid;
  gap: 5px;
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-option .fa-solid {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.3rem;
}

.contact-option strong {
  font-size: 1.02rem;
}

.contact-option span {
  color: var(--muted);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(360px, .52fr);
  gap: 24px;
  align-items: start;
}

.contact-main-section {
  border-top: 0;
}

.contact-main-section .card {
  box-shadow: none;
}

.contact-main-section .card > h2 {
  margin-bottom: 14px;
}

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

.contact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.contact-list li > .fa-solid,
.contact-list li > .fa-regular {
  margin-top: .25em;
  color: var(--teal);
}

.contact-list a {
  color: var(--blue);
  font-weight: 700;
}

.hours-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hours-strip div {
  display: grid;
  gap: 3px;
  padding: 16px;
  background: white;
}

.hours-strip .fa-regular {
  color: var(--teal);
  margin-bottom: 5px;
}

.hours-strip strong {
  font-size: .88rem;
}

.hours-strip span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 600;
}

.form {
  display: grid;
  gap: 14px;
}

.form h2 {
  margin-bottom: 4px;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

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

.site-footer {
  color: rgba(255,255,255,.78);
  background: #0e1c27;
  border-top: 5px solid var(--gold);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(150px, .6fr) minmax(150px, .6fr) minmax(360px, 1fr);
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.site-footer h2,
.site-footer h3 {
  color: var(--gold);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.site-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  color: rgba(255,255,255,.8);
  font-size: .94rem;
  line-height: 1.45;
  text-decoration: none;
}

.site-footer p {
  font-size: .94rem;
  line-height: 1.55;
}

.site-footer .footer-grid > div:last-child a,
.site-footer .footer-grid > div:last-child p {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-footer p .fa-solid,
.site-footer p .fa-regular,
.site-footer a .fa-solid,
.site-footer a .fa-regular {
  width: 16px;
  color: rgba(255,255,255,.58);
}

.footer-bottom a {
  display: inline;
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  font-size: .84rem;
}

.footer-bottom span:first-child {
  color: rgba(255,255,255,.62);
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .page-hero .section-inner,
  .content-grid,
  .service-layout,
  .service-includes-panel,
  .contact-grid,
  .section-head,
  .cta-band,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .trust-strip .section-inner,
  .hours-strip,
  .cards-4,
  .cards-3,
  .contact-options,
  .local-links,
  .about-points,
  .service-summary-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quote,
  .quote:nth-child(3n) {
    border-right: 1px solid rgba(255,255,255,.16);
  }

  .quote:nth-child(2n) {
    border-right: 0;
  }

  .quote:nth-child(n + 3) {
    border-top: 1px solid rgba(255,255,255,.16);
  }

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

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, auto);
  }

  .sidebar {
    position: static;
  }

  .google-rating {
    justify-self: center;
    margin: 0 auto;
    min-width: 0;
  }

  .quote-head {
    text-align: center;
  }

  .quote-head > .google-rating {
    padding-top: 0;
  }

  .cta-band .section-actions {
    justify-content: flex-start;
  }

  .office-head > p {
    justify-self: start;
    padding-top: 0;
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --section-y: 58px;
  }

  .header-inner,
  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-logo {
    height: 44px;
    max-width: 176px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    min-height: 50px;
    padding: 12px;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 8px;
    min-height: 52px;
  }

  .hero-inner,
  .section {
    padding: var(--section-y) 0;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .trust-strip .section-inner,
  .hours-strip,
  .cards-4,
  .cards-3,
  .location-grid,
  .contact-options,
  .local-links,
  .about-points,
  .service-summary-strip,
  .next-step-panel,
  .next-step-links,
  .footer-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 14px 0;
  }

  .trust-strip .section-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
  }

  .quote,
  .quote:nth-child(2n),
  .quote:nth-child(3n) {
    border-right: 0;
  }

  .quote:nth-child(n + 2) {
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .google-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 52px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 12px;
    border-radius: 40px;
  }

  .google-mark {
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .google-mark img {
    width: 20px;
    height: 20px;
    margin: 0;
    display: block;
  }

  .google-score,
  .google-stars,
  .google-review-count {
    height: auto;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .google-score {
    font-size: 1.1rem;
  }

  .google-stars {
    font-size: 1rem;
  }

  .google-review-count {
    font-size: 0.85rem;
  }

  .quote blockquote {
    min-height: auto;
  }

  .location-card {
    min-height: auto;
  }

  .service-card h3 {
    min-height: auto;
  }

  .trust-item {
    min-height: 0;
    padding: 18px 16px 18px 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .trust-item:first-child {
    border-left: 1px solid var(--line);
  }

  .trust-item::before {
    left: 0;
    top: 16px;
    width: 3px;
    height: calc(100% - 32px);
    transform: none;
    border-radius: 0 999px 999px 0;
  }

  .trust-item strong {
    margin-bottom: 6px;
    font-size: 1.35rem;
  }

  .trust-item span {
    display: block;
    font-size: .98rem;
    line-height: 1.45;
  }

  .cta-band {
    padding: 30px;
  }

  .portrait {
    min-height: 320px;
  }

  .office-feature {
    grid-template-columns: 1fr;
  }

  .office-copy {
    padding: 26px;
  }

  .service-intro-panel,
  .service-includes-panel,
  .service-proof-panel,
  .service-faq,
  .next-step-panel {
    padding: 24px;
  }

  .service-intro-copy {
    columns: auto;
  }

  .about-points div,
  .service-summary-strip div,
  .service-summary-strip div:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-points div:first-child,
  .service-summary-strip div:first-child {
    border-top: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
