:root {
  --ink: #071d3a;
  --muted: #52657c;
  --paper: #f6f9fd;
  --white: #ffffff;
  --teal: #1e78c8;
  --teal-dark: #071d3a;
  --clay: #c79a2b;
  --gold: #d6a93a;
  --line: rgba(7, 29, 58, 0.12);
  --shadow: 0 18px 50px rgba(7, 29, 58, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: min(330px, 54vw);
}

.brand-logo {
  width: 100%;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

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

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(30, 120, 200, 0.09);
}

.site-nav .nav-action {
  color: var(--white);
  background: var(--teal);
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 78svh;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(7, 29, 58, 0.94) 0%, rgba(7, 29, 58, 0.86) 34%, rgba(7, 29, 58, 0.36) 58%, rgba(7, 29, 58, 0.06) 82%),
    url("assets/hero-smile.png");
  background-position: center, 72% center;
  background-size: cover;
}

.hero-content {
  position: relative;
  width: min(560px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: clamp(40px, 8vw, 80px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c75b;
}

.hero-eyebrow {
  font-size: clamp(0.92rem, 1.45vw, 1.12rem);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 100%;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  font-weight: 850;
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: block;
}

.hero-owner {
  max-width: 100%;
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  font-weight: 830;
}

h3 {
  font-size: 1.15rem;
}

p {
  line-height: 1.7;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--ink);
  background: #f1c75b;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d6a93a;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-phone {
  display: grid;
  gap: 6px;
  width: fit-content;
  min-width: min(300px, 100%);
  margin-top: 14px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(7, 29, 58, 0.78);
  border: 1px solid rgba(241, 199, 91, 0.42);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(7, 29, 58, 0.24);
}

.hero-phone[hidden] {
  display: none;
}

.hero-phone span {
  color: #f1c75b;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-phone a {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 850;
}

.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  background: var(--line);
}

.intro-grid p {
  min-height: 116px;
  margin: 0;
  padding: 26px;
  background: var(--white);
}

.section,
.process-layout,
.contact-layout {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(66px, 9vw, 108px) 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.process-layout > div > p,
.contact-layout > div > p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.section-heading.compact {
  max-width: 840px;
}

.experience-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px)) minmax(260px, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 8px;
}

.experience-highlights div,
.experience-highlights p {
  margin: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(30, 120, 200, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 29, 58, 0.06);
}

.experience-highlights div {
  display: grid;
  gap: 5px;
}

.experience-highlights strong {
  color: var(--teal-dark);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1;
}

.experience-highlights span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.experience-highlights p {
  color: var(--muted);
}

.offer-experience {
  max-width: 100%;
  margin: -8px 0 30px;
  padding: clamp(18px, 3vw, 24px);
  background: linear-gradient(135deg, rgba(7, 29, 58, 0.98) 0%, rgba(15, 63, 117, 0.96) 100%);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 29, 58, 0.16);
}

.offer-experience div,
.offer-experience p {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.offer-experience strong,
.offer-experience span,
.offer-experience p {
  color: var(--white);
}

.offer-experience strong {
  color: #f1c75b;
}

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

.service-card {
  display: grid;
  gap: 18px;
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 29, 58, 0.06);
}

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

.service-card-featured {
  border-color: rgba(30, 120, 200, 0.34);
  box-shadow: 0 18px 48px rgba(30, 120, 200, 0.13);
}

.service-index {
  width: fit-content;
  padding-bottom: 8px;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  font-weight: 850;
}

.process-band {
  padding: clamp(64px, 8vw, 98px) 0;
  color: var(--white);
  background: #071d3a;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.process-layout .eyebrow,
.locator-info .eyebrow {
  color: #f1c75b;
}

.process-layout h2 {
  margin-bottom: 18px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: #f1c75b;
  border-radius: 8px;
  font-weight: 850;
}

.process-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.locator-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(34px, 5vw, 56px) auto 0;
}

.locator-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.locator-card-wide {
  grid-column: span 3;
  background: rgba(255, 255, 255, 0.1);
}

.locator-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.locator-card h3 {
  color: var(--white);
}

.benefits-card {
  border-color: rgba(241, 199, 91, 0.42);
}

.benefits-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.benefits-card strong {
  color: var(--white);
}

.zest-link-panel {
  grid-column: span 3;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(241, 199, 91, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
}

.zest-link-panel img {
  width: min(310px, 100%);
  height: auto;
}

.zest-link-panel a {
  color: var(--teal);
  font-weight: 850;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 16px;
}

.quality-panel,
.quote-panel {
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
}

.quality-panel {
  background: var(--white);
  border: 1px solid var(--line);
}

.quality-panel ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.quote-panel {
  display: grid;
  align-content: end;
  min-height: 310px;
  color: var(--white);
  background: linear-gradient(135deg, #071d3a 0%, #0f3f75 100%);
}

.quote-panel p {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.22;
}

.strengths-panel {
  margin-top: 16px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 29, 58, 0.07);
}

.strengths-panel h3 {
  margin-bottom: 20px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.strengths-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strengths-panel li {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #f6f9fd;
  border: 1px solid rgba(30, 120, 200, 0.16);
  border-radius: 8px;
}

.strengths-panel strong {
  color: var(--teal-dark);
  font-size: 1.04rem;
}

.strengths-panel span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-band {
  padding: clamp(64px, 8vw, 96px) 0;
  background: #eef5fc;
  border-top: 1px solid rgba(30, 120, 200, 0.18);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-logo {
  width: min(520px, 100%);
  height: auto;
  margin-bottom: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(30, 120, 200, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 29, 58, 0.12);
}

.contact-phone-feature {
  position: relative;
  display: grid;
  gap: 8px;
  width: min(520px, 100%);
  margin-bottom: 26px;
  padding: 22px 24px 22px 30px;
  color: var(--white);
  background: linear-gradient(135deg, #071d3a 0%, #0f3f75 100%);
  border: 1px solid rgba(241, 199, 91, 0.44);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 29, 58, 0.18);
}

.contact-phone-feature::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 6px;
  background: var(--gold);
  border-radius: 0 4px 4px 0;
}

.contact-phone-feature span {
  color: #f1c75b;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-phone-feature strong {
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1.05;
}

.contact-list {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-list a,
.contact-list p {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 92px;
  margin: 0;
  padding: 20px 22px 20px 26px;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(246, 249, 253, 0.98) 0%, var(--white) 100%);
  border: 1px solid rgba(30, 120, 200, 0.28);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 29, 58, 0.1);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 850;
  line-height: 1.35;
}

.contact-list a::before,
.contact-list p::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 5px;
  background: var(--gold);
  border-radius: 0 4px 4px 0;
}

.contact-list span {
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  margin-top: clamp(10px, 2vw, 18px);
  padding: clamp(18px, 3vw, 24px);
  background: var(--white);
  border: 1px solid rgba(30, 120, 200, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 29, 58, 0.1);
}

.map-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.map-panel-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
}

.map-panel-heading a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.map-panel-heading a:hover,
.map-panel-heading a:focus-visible {
  background: var(--teal-dark);
}

.map-panel iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .intro-grid,
  .service-grid,
  .process-layout,
  .locator-info,
  .quality-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .locator-card-wide {
    grid-column: auto;
  }

  .zest-link-panel {
    grid-column: auto;
  }

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

  .experience-highlights {
    grid-template-columns: 1fr;
  }

  .map-panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .map-panel-heading a {
    width: 100%;
  }

  .strengths-panel ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand {
    max-width: min(240px, 58vw);
  }

  .brand-logo {
    max-height: 42px;
  }

  .site-nav {
    inset: 70px 12px auto;
  }

  .hero {
    min-height: 74svh;
    background-position: center, 78% center;
  }

  .hero-content {
    width: min(100% - 28px, 560px);
    margin-inline: 14px;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }
}
