:root {
  --navy: #13234b;
  --blue: #145fc2;
  --sky: #9edbf0;
  --sun: #ffc54b;
  --coral: #ef6650;
  --cream: #fff9ec;
  --paper: #f4efe4;
  --ink: #14213a;
  --line: rgba(20, 33, 58, 0.17);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.skip {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--sun);
  padding: 10px 14px;
  font-weight: 900;
}
.skip:focus {
  top: 12px;
}
header {
  height: 78px;
  padding: 0 max(24px, calc((100vw - 1220px) / 2));
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}
.brand small {
  font-size: 10px;
  font-weight: 800;
  color: #5d6571;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.sunmark {
  width: 40px;
  height: 40px;
  border: 9px solid var(--sun);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.sunmark:after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--coral);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
header nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
header nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.header-call {
  height: 78px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background: var(--navy);
  text-decoration: none;
}
.header-call small {
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.7;
}
.header-call strong {
  font-size: 16px;
}
.hero {
  max-width: 1220px;
  margin: auto;
  padding: 82px 24px 72px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
  min-height: 680px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--sun);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: var(--blue);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 0.88;
}
h1 em {
  color: var(--blue);
  font-style: normal;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  font-size: 18px;
  line-height: 1.7;
  color: #505b6a;
}
.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  border-radius: 4px;
}
.primary {
  color: white;
  background: var(--coral);
}
.text-link {
  font-size: 14px;
  font-weight: 900;
  text-underline-offset: 5px;
}
.hero-copy ul {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.hero-copy li {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-copy li:before {
  content: "+";
  color: var(--blue);
  margin-right: 6px;
}
.hero-photo {
  margin: 0;
  position: relative;
  padding: 0 0 22px 22px;
}
.hero-photo:before {
  content: "";
  position: absolute;
  inset: 22px 0 0 0;
  background: var(--sun);
  transform: translate(18px, 18px);
}
.hero-photo img {
  position: relative;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.hero-photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(310px, 74%);
  padding: 18px 20px;
  background: var(--navy);
  color: white;
  box-shadow: 8px 8px 0 var(--coral);
}
.hero-photo figcaption span,
.hero-photo figcaption strong {
  display: block;
}
.hero-photo figcaption span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--sky);
}
.hero-photo figcaption strong {
  margin-top: 4px;
  font:
    700 19px/1.1 Georgia,
    serif;
}
.quickbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--blue);
  color: white;
  padding: 0 max(24px, calc((100vw - 1220px) / 2));
}
.quickbar p {
  margin: 0;
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.quickbar p:last-child {
  border: 0;
}
.quickbar b {
  color: var(--sun);
  margin-right: 10px;
}
.section {
  max-width: 1220px;
  margin: auto;
  padding: 105px 24px;
}
.section-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head h2,
.service-intro h2,
.local-section h2,
.faq h2,
.visit h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
}
.section-head > p {
  margin: 0;
  color: #596271;
  font-size: 17px;
}
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.symptom-grid a {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.2s;
}
.symptom-grid a:hover {
  background: var(--navy);
  color: white;
}
.symptom-grid span {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.11em;
}
.symptom-grid h3 {
  margin: auto 0 12px;
  font:
    700 27px/1.04 Georgia,
    serif;
}
.symptom-grid p {
  margin: 0;
  color: #616a76;
  font-size: 14px;
}
.symptom-grid a:hover p {
  color: #ccd4e1;
}
.services {
  padding: 105px max(24px, calc((100vw - 1220px) / 2));
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  color: white;
  background: var(--navy);
}
.service-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.service-intro > p:not(.eyebrow) {
  color: #b9c4d8;
  line-height: 1.75;
}
.light {
  margin-top: 14px;
  color: var(--navy);
  background: var(--sun);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-grid b {
  color: var(--sun);
  font-size: 11px;
}
.service-grid h3 {
  margin: 50px 0 12px;
  font:
    700 25px/1.08 Georgia,
    serif;
}
.service-grid p {
  margin: 0;
  color: #b9c4d8;
  font-size: 14px;
}
.local-section {
  padding: 105px max(24px, calc((100vw - 1220px) / 2));
  display: grid;
  grid-template-columns: 0.42fr 1fr 0.7fr;
  gap: 60px;
  background: var(--paper);
  align-items: start;
}
.heat-index {
  min-height: 270px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background: var(--coral);
}
.heat-index span {
  font-weight: 900;
  letter-spacing: 0.15em;
}
.heat-index strong {
  font:
    700 36px/0.9 Georgia,
    serif;
}
.local-section > div:nth-child(2) > p {
  color: #586171;
  font-size: 17px;
}
.local-section aside {
  padding: 28px;
  background: white;
  border-top: 6px solid var(--sun);
}
.local-section aside strong {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.local-section ol {
  padding-left: 20px;
  margin-bottom: 0;
}
.local-section li {
  margin: 12px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
}
.steps span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  font:
    700 21px Georgia,
    serif;
}
.steps h3 {
  margin: 50px 0 10px;
  font:
    700 25px Georgia,
    serif;
}
.steps p {
  margin: 0;
  color: #5e6773;
}
.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.faq-list details {
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 850;
  font-size: 18px;
  padding-right: 30px;
  position: relative;
}
summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--coral);
}
details[open] summary:after {
  content: "-";
}
.faq-list p {
  color: #5b6572;
  line-height: 1.7;
}
.final {
  padding: 95px 24px;
  text-align: center;
  color: white;
  background: var(--blue);
}
.final p {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.final h2 {
  max-width: 800px;
  margin: 0 auto 28px;
  font:
    700 clamp(44px, 6vw, 76px) / 0.98 Georgia,
    serif;
}
.final a {
  display: inline-block;
  padding: 16px 24px;
  background: var(--sun);
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
footer {
  padding: 48px max(24px, calc((100vw - 1220px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 40px;
  align-items: center;
}
footer p,
footer small {
  color: #68717d;
}
footer > a {
  font-weight: 900;
}
.mobile-call {
  display: none;
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 0;
    padding-top: 62px;
  }
  .hero-photo {
    max-width: 620px;
  }
  .symptom-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service-intro {
    position: static;
  }
  .local-section {
    grid-template-columns: 0.4fr 1fr;
  }
  .local-section aside {
    grid-column: 2;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }
  header {
    height: 66px;
    padding: 0 16px;
  }
  .brand strong {
    font-size: 12px;
  }
  .brand small {
    font-size: 8px;
  }
  .sunmark {
    width: 31px;
    height: 31px;
    border-width: 7px;
  }
  .header-call {
    display: none;
  }
  .hero {
    padding: 48px 20px 55px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .hero-photo {
    padding: 0 0 14px 12px;
  }
  .hero-photo img {
    height: 240px;
  }
  .hero-photo:before {
    inset: 12px 0 0;
  }
  .hero-photo figcaption {
    padding: 14px 15px;
  }
  .quickbar {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .quickbar p {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .section,
  .services,
  .local-section {
    padding: 78px 20px;
  }
  .section-head h2,
  .service-intro h2,
  .local-section h2,
  .faq h2,
  .visit h2 {
    font-size: 43px;
  }
  .symptom-grid,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .symptom-grid a {
    min-height: 230px;
  }
  .service-grid article {
    min-height: 230px;
  }
  .local-section {
    display: block;
  }
  .heat-index {
    min-height: 150px;
    margin-bottom: 34px;
  }
  .local-section aside {
    margin-top: 30px;
  }
  .faq {
    gap: 35px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 40px 20px 100px;
  }
  .mobile-call {
    position: fixed;
    display: flex;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    height: 78px;
    padding: 10px 18px;
    align-items: center;
    justify-content: space-between;
    background: var(--coral);
    color: white;
    text-decoration: none;
    border-top: 2px solid var(--navy);
  }
  .mobile-call span {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .mobile-call strong {
    font-size: 17px;
    white-space: nowrap;
  }
}
