@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #071d2a;
  --ink-soft: #163645;
  --orange: #dc7700;
  --orange-dark: #ad5500;
  --cream: #f4f0e7;
  --paper: #fffdf8;
  --sand: #e8ddca;
  --blue: #4ba7ca;
  --white: #ffffff;
  --muted: #627079;
  --line: rgba(7, 29, 42, 0.16);
  --shadow: 0 24px 70px rgba(7, 29, 42, 0.15);
  --radius: 6px;
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

@media (max-width: 780px) {
  .prep-grid,
  .safety-callout {
    grid-template-columns: 1fr;
  }

  .prep-grid article {
    min-height: auto;
  }

  .prep-grid h3 {
    margin-top: 24px;
  }

  .faq-section {
    padding: 42px 24px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange) 58%, var(--blue) 58%);
  content: "";
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

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

.skip-link:focus {
  transform: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.utility {
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility .shell {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility a {
  text-underline-offset: 4px;
}

.utility-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #ffb21c;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  min-height: 96px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 80px;
  height: 80px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 6px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.site-nav a {
  position: relative;
  padding-block: 14px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 180ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(220, 119, 0, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(173, 85, 0, 0.26);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-ghost {
  border-color: rgba(7, 29, 42, 0.28);
  color: var(--ink);
  background: transparent;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 112px) 0 72px;
  background:
    radial-gradient(circle at 13% 14%, rgba(75, 167, 202, 0.16), transparent 27%),
    linear-gradient(135deg, var(--paper) 0 59%, var(--cream) 59%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(220, 119, 0, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.96fr) minmax(400px, 0.82fr);
  gap: clamp(44px, 7vw, 96px);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 8.1vw, 116px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: italic;
  font-weight: 800;
}

.hero-lede {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

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

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.quick-facts svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 500px);
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero-logo {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -2px;
  width: 204px;
  height: 204px;
  padding: 3px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 29, 42, 0.22);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.review-float {
  position: absolute;
  z-index: 3;
  bottom: 46px;
  left: -72px;
  width: min(330px, 80%);
  padding: 22px;
  border-radius: 4px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 20px 54px rgba(7, 29, 42, 0.28);
}

.review-float p {
  margin: 6px 0 10px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.review-float small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.media-reference {
  position: relative;
  overflow: hidden;
}

.media-reference::after {
  position: absolute;
  z-index: 4;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  color: var(--white);
  background: rgba(7, 29, 42, 0.78);
  content: "REFERENCE PHOTO · GOOGLE BUSINESS PROFILE · CONFIRM USAGE";
  font-family: var(--body);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.hero-photo.media-reference::after {
  top: 10px;
  right: auto;
  bottom: auto;
  left: 10px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-strip .shell {
  display: grid;
  min-height: 98px;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px clamp(10px, 2vw, 28px);
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: clamp(10px, 2vw, 28px);
}

.trust-item:last-child {
  border: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}

.trust-item > span:last-child {
  width: auto;
  min-width: 0;
  max-width: 172px;
  flex: 1;
}

.trust-item > span:last-child > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(7, 29, 42, 0.12);
  border-radius: 3px;
  color: var(--orange-dark);
  background: var(--cream);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-cream {
  background: var(--cream);
}

.section-ink {
  color: var(--white);
  background:
    linear-gradient(rgba(75, 167, 202, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 167, 202, 0.06) 1px, transparent 1px),
    var(--ink);
  background-size: 38px 38px;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 50px;
  margin-bottom: 52px;
}

.section-heading h2,
.content-heading {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-ink .section-heading p,
.section-ink .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

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

.service-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(7, 29, 42, 0.11);
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  background: #fff4e4;
}

.service-card:nth-child(3) {
  color: var(--white);
  background: var(--ink);
}

.service-card svg {
  width: 48px;
  height: 48px;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: 3px;
  color: var(--orange);
}

.service-card h3 {
  margin: 42px 0 11px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card:nth-child(3) p {
  color: rgba(255, 255, 255, 0.68);
}

.service-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 4px;
  color: var(--white);
  background: var(--orange-dark);
}

.service-note p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.photo-story {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  gap: clamp(46px, 8vw, 110px);
}

.photo-collage {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.photo-collage figure {
  margin: 0;
  border-radius: 18px;
}

.photo-collage figure:first-child {
  grid-row: 1 / 3;
}

.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-story-copy h2 {
  margin: 0 0 25px;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.photo-story-copy p {
  color: var(--muted);
  font-size: 17px;
}

.quote-mark {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.6;
}

.review-layout {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: clamp(40px, 7vw, 90px);
}

.score-panel {
  position: sticky;
  top: 135px;
  align-self: start;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.score-number {
  display: block;
  font-family: var(--display);
  font-size: 94px;
  font-weight: 800;
  line-height: 0.8;
}

.score-panel p {
  margin: 15px 0 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.review-stack {
  display: grid;
  gap: 14px;
}

.review-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.review-card blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.08;
}

.review-card cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--body);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-card .stars {
  white-space: nowrap;
}

.review-card > span:first-child {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 45px;
  line-height: 0.7;
}

.review-card a {
  align-self: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.visit-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.visit-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.visit-card::before {
  display: block;
  width: 40px;
  height: 5px;
  margin-bottom: 65px;
  border-radius: 4px;
  background: var(--orange);
  content: "";
}

.visit-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.visit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.map-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: 22px;
}

.service-area-copy {
  padding: clamp(34px, 5vw, 62px);
  border-radius: 22px;
  color: var(--white);
  background: var(--orange-dark);
}

.service-area-copy h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 76px);
  line-height: 0.88;
  text-transform: uppercase;
}

.service-area-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.map-frame {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--sand);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
  filter: saturate(0.78) contrast(1.03);
}

.map-attribution {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-intro,
.faq-section,
.safety-callout,
.final-cta {
  width: var(--shell);
  margin-inline: auto;
}

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

.prep-grid article {
  min-height: 250px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.prep-grid strong {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.12em;
}

.prep-grid h3 {
  margin: 46px 0 8px;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.prep-grid p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  padding: clamp(50px, 7vw, 90px);
  border-radius: 28px;
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--orange-dark);
  background: var(--cream);
  content: "+";
  font-size: 21px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: 780px;
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.faq-list details > p {
  max-width: 780px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.safety-callout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 90px);
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(220, 119, 0, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(125deg, rgba(220, 119, 0, 0.12), rgba(75, 167, 202, 0.08));
}

.safety-callout h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.9;
  text-transform: uppercase;
}

.safety-callout > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.final-cta {
  overflow: hidden;
  padding: clamp(50px, 7vw, 86px);
  border-radius: 28px;
  color: var(--white);
  background: var(--ink);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: 0.9;
  text-transform: uppercase;
}

.final-cta > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .button {
  margin-top: 14px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 7vw, 86px);
  border-radius: 28px;
  color: var(--white);
  background: var(--ink);
}

.cta-banner::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 34px solid rgba(75, 167, 202, 0.13);
  border-radius: 50%;
  content: "";
}

.cta-banner h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 86px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.cta-banner p {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.cta-banner .hero-actions {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 125px) 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(220, 119, 0, 0.13), transparent 24%),
    var(--cream);
}

.page-hero .shell {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: clamp(48px, 7vw, 110px);
}

.page-hero h1 {
  max-width: none;
}

.page-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 22px);
}

.page-hero-photo {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 3px solid var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  transform: none;
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 1px;
  object-fit: cover;
  object-position: center 55%;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: none;
}

.service-feature {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(40px, 8vw, 100px);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.service-feature:nth-child(even) .feature-media {
  order: 2;
}

.feature-media {
  height: 430px;
  border-radius: 5px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 68px);
  line-height: 0.9;
  text-transform: uppercase;
}

.feature-copy p {
  max-width: 640px;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  font-size: 12px;
  font-weight: 800;
}

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

.topic-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.topic-card h2,
.topic-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.source-note {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  color: var(--muted);
  background: var(--cream);
  font-size: 12px;
}

.site-footer {
  padding: 62px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  background: #03151f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr;
  gap: 50px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 470px;
  margin: 24px 0 0;
  font-size: 13px;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

.footer-column a {
  display: flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  margin: 0;
  font-size: 13px;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.mobile-call {
  display: none;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 28px;
  }

  .hero-media {
    min-height: 530px;
  }

  .hero-photo {
    height: auto;
  }

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

}

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 15px 24px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 35px rgba(7, 29, 42, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .review-float {
    left: -34px;
    bottom: 18px;
  }

  .hero-logo {
    top: 18px;
    right: 18px;
    bottom: auto;
    width: 124px;
  }

  .hero-photo.media-reference::after {
    max-width: calc(100% - 160px);
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .utility .shell {
    min-height: 42px;
  }

  .utility > .shell > span:first-child {
    display: none;
  }

  .nav-shell {
    min-height: 78px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand img {
    width: 66px;
    height: 66px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 15px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 35px rgba(7, 29, 42, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 68px;
    background:
      radial-gradient(circle at 10% 8%, rgba(75, 167, 202, 0.16), transparent 26%),
      var(--paper);
  }

  .hero-grid,
  .photo-story,
  .review-layout,
  .map-grid,
  .service-feature {
    grid-template-columns: 1fr;
  }

  .hero-media {
    display: grid;
    min-width: 0;
    min-height: 0;
    margin-top: 12px;
  }

  .hero-photo {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .review-float {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 12px;
  }

  .hero-logo {
    top: 16px;
    right: 16px;
    bottom: auto;
    width: 132px;
    height: 132px;
  }

  .hero-photo.media-reference::after {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: auto;
    max-width: calc(100% - 20px);
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    padding-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .photo-collage {
    grid-template-rows: 220px 220px;
  }

  .score-panel {
    position: static;
  }

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

  .visit-card {
    min-height: 230px;
  }

  .visit-card::before {
    margin-bottom: 38px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 430px;
  }

  .page-hero-copy {
    max-width: 100%;
  }

  .page-hero .shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-hero-photo {
    width: 100%;
    height: auto;
    margin: 0;
    opacity: 1;
  }

  .service-feature:nth-child(even) .feature-media {
    order: 0;
  }

  .feature-media {
    height: min(70vw, 480px);
  }

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

  .footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 52px);
  }

  body {
    padding-bottom: 70px;
  }

  .utility {
    font-size: 12px;
  }

  .utility-rating {
    width: 100%;
    justify-content: space-between;
  }

  .brand-copy span {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(52px, 17vw, 75px);
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    display: grid;
    gap: 10px;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-photo {
    width: 100%;
    height: auto;
    border-width: 2px;
    border-radius: 4px;
  }

  .review-float {
    width: 100%;
    padding: 17px;
  }

  .review-float p {
    font-size: 20px;
  }

  .hero-logo {
    top: 12px;
    right: 12px;
    bottom: auto;
    width: 104px;
    height: 104px;
    border-width: 3px;
  }

  .trust-strip .shell {
    display: block;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 235px;
  }

  .service-card h3 {
    margin-top: 30px;
  }

  .service-note {
    display: block;
  }

  .service-note .text-link {
    margin-top: 14px;
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 170px;
  }

  .photo-collage figure:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-card > span:first-child {
    display: none;
  }

  .review-card a {
    justify-self: start;
  }

  .service-area-copy,
  .cta-banner {
    padding: 34px 25px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-call {
    position: fixed;
    z-index: 60;
    right: 26px;
    bottom: 10px;
    left: 26px;
    display: grid;
    min-height: 54px;
    place-items: center;
    border-radius: 4px;
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 12px 35px rgba(7, 29, 42, 0.3);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .media-reference::after {
    right: 7px;
    bottom: 7px;
    font-size: 12px;
  }
}

@media (max-width: 780px) {
  .prep-grid,
  .safety-callout {
    grid-template-columns: 1fr;
  }

  .prep-grid article {
    min-height: auto;
  }

  .prep-grid h3 {
    margin-top: 24px;
  }

  .faq-section {
    padding: 42px 24px;
  }
}

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