:root {
  --navy: #0B1F33;
  --navy-2: #132A44;
  --cream: #F6F1E8;
  --paper: #FBF8F2;
  --ink: #1A1A1A;
  --muted: #5C6570;
  --orange: #E85D04;
  --orange-press: #C44A00;
  --line: rgba(11, 31, 51, 0.12);
  --display: "Fraunces", "Iowan Old Style", Palatino, Georgia, serif;
  --ui: "DM Sans", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header: 56px;
  --gutter: 20px;
  --radius: 14px;
  --pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ui);
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.011em;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
.btn:focus-visible,
.top-call:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

button,
.btn,
.top-call {
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
  color: var(--navy);
}

::selection {
  background: var(--navy);
  color: var(--cream);
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 8px 14px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.shell {
  width: min(100%, 430px);
  margin: 0 auto;
  background: var(--paper);
  min-height: 100svh;
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  padding: max(8px, env(safe-area-inset-top, 0px)) var(--gutter) 8px;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.top-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 4px 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--orange);
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - var(--header));
  color: var(--cream);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 50%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 51, 0.42) 0%,
    rgba(11, 31, 51, 0.55) 42%,
    rgba(11, 31, 51, 0.78) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 32px var(--gutter) 24px;
}

.hero-where {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.72);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.35rem, 10.4vw, 3.35rem);
  font-weight: 600;
  color: var(--cream);
  max-width: 14ch;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  margin-top: 4px;
}

.hero h1 em::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin-top: 16px;
}

.hero-sub {
  margin-top: 16px;
  max-width: 32ch;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(246, 241, 232, 0.86);
}

.hero-phone {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 7vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
  text-decoration: none;
  font-variant-numeric: lining-nums;
}

.hero-vanity {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.55);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--pill);
  font-family: var(--ui);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 0;
}

.btn svg {
  flex-shrink: 0;
}

.btn-call {
  background: var(--orange);
  color: #fff;
}

.btn-call:hover {
  background: var(--orange-press);
}

.btn-call:active {
  background: var(--orange-press);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(246, 241, 232, 0.5);
}

.btn-ghost:active {
  background: rgba(246, 241, 232, 0.08);
}

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(246, 241, 232, 0.62);
}

/* Trust */
.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: var(--cream);
}

.trust li {
  padding: 16px var(--gutter);
}

.trust li:nth-child(odd) {
  border-right: 1px solid rgba(246, 241, 232, 0.1);
}

.trust li:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
}

.trust span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(246, 241, 232, 0.55);
  margin-bottom: 4px;
}

.trust strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.15;
}

/* Sections */
.section {
  padding: 48px var(--gutter) 8px;
}

.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.75rem, 6.5vw, 2.35rem);
  max-width: 16ch;
}

.lede {
  margin-top: 16px;
  max-width: 38ch;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

/* Services */
.feature {
  margin-top: 32px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature img {
  height: 188px;
  object-position: center 40%;
}

.feature-body {
  padding: 20px 20px 24px;
}

.feature-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.55);
  margin-bottom: 8px;
}

.feature h3 {
  font-size: 1.55rem;
  color: var(--cream);
}

.feature p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(246, 241, 232, 0.82);
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.svc-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 14px 18px;
}

.svc-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center 30%;
  margin-bottom: 12px;
}

.svc-icon-photo {
  object-fit: cover;
  border-radius: 8px;
  object-position: center;
}

.svc-grid h3 {
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.svc-grid p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.svc-span {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.svc-span .svc-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.aside {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* Photo strip */
.strip-wrap {
  padding-right: 0;
  padding-bottom: 8px;
}

.strip-wrap h2 {
  padding-right: var(--gutter);
}

.strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch;
  padding: 24px var(--gutter) 8px 0;
  scrollbar-width: none;
}

.strip::-webkit-scrollbar {
  display: none;
}

.strip figure {
  flex: 0 0 78%;
  scroll-snap-align: start;
}

.strip img {
  height: 196px;
  border-radius: var(--radius);
  background: var(--navy-2);
}

.strip figcaption {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* Steps */
.step-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.step-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1.2;
}

.step-list h3 {
  font-family: var(--ui);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.step-list p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.explainer {
  margin-top: 32px;
}

.explainer img {
  height: 176px;
  border-radius: var(--radius);
  object-position: center 70%;
}

.explainer figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* Technology */
.tech h2 {
  max-width: 18ch;
}

.tech-points {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tech-points li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--navy);
}

.tech-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.video {
  margin-top: 28px;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-cap {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* Quotes */
.quotes {
  padding-bottom: 16px;
}

.quote-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

blockquote {
  padding-left: 16px;
  border-left: 2px solid var(--navy);
}

blockquote p {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--navy);
}

blockquote footer {
  margin-top: 12px;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* Areas */
.areas {
  margin-top: 32px;
}

.areas-bleed {
  height: 148px;
  object-position: center 60%;
}

.areas-copy {
  padding-top: 32px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.chips li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.counties {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* Contact */
.contact {
  padding-bottom: 32px;
}

.owner {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.nap-phone {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 7vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy);
  text-decoration: none;
}

.contact .hero-vanity {
  color: var(--muted);
}

.nap {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nap dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.nap dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  font-style: normal;
}

.nap a {
  text-decoration: none;
}

.nap a:hover {
  text-decoration: underline;
}

.map-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  min-height: 52px;
  padding: 0 4px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.map-row span {
  font-size: 18px;
  color: var(--orange);
}

/* Footer */
.foot {
  padding: 40px var(--gutter) 32px;
  background: var(--navy);
  color: rgba(246, 241, 232, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.foot-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 12px;
}

.foot a {
  color: var(--cream);
  text-decoration: none;
}

.foot-hours {
  margin-top: 8px;
}

.angi {
  width: 72px;
  height: auto;
  margin-top: 24px;
  border-radius: 6px;
}

.watermark {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.38);
}

/* Desktop column */
@media (min-width: 720px) {
  .shell {
    width: min(100%, 720px);
    box-shadow: 0 0 0 1px var(--line);
  }

  :root {
    --gutter: 32px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

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

  .feature img {
    height: 260px;
  }

  .strip figure {
    flex-basis: 46%;
  }

  .strip img {
    height: 240px;
  }

  .explainer img {
    height: 280px;
  }

  .areas-bleed {
    height: 220px;
  }

  .svc-grid {
    gap: 12px;
  }

  .quote-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
