:root {
  --navy: #153452;
  --navy-deep: #0d243d;
  --blue: #295f90;
  --gold: #c9a55f;
  --gold-soft: #eadfc9;
  --cream: #f8f5ef;
  --white: #ffffff;
  --ink: #23405f;
  --muted: #617386;
  --line: #d6e0ea;
  --shadow: 0 20px 60px rgba(13, 36, 61, 0.12);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(233, 242, 248, 0.7), rgba(248, 245, 239, 0.92)),
    var(--cream);
}

body.page-home {
  background:
    radial-gradient(circle at top right, rgba(201, 165, 95, 0.22), transparent 24%),
    linear-gradient(180deg, #f4f9fc 0%, #f8f5ef 100%);
}

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

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

figure {
  margin: 0;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
strong {
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  line-height: 1.1;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.utility-bar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

body.page-home .utility-bar {
  display: none;
}

.utility-inner,
.nav-shell,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-inner {
  padding: 0.7rem 0;
}

.utility-inner p,
.footer-bottom p,
.site-footer p {
  color: inherit;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-header-home {
  position: absolute;
  inset: 0 0 auto 0;
  background: transparent;
  border-bottom: 0;
}

.nav-shell {
  padding: 1rem 0;
}

body.page-home .nav-shell {
  width: min(1380px, calc(100% - 1.25rem));
  grid-template-columns: 180px 1fr 180px;
  display: grid;
  align-items: start;
  gap: 0.5rem;
  padding: 4.5rem 0 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-home {
  align-self: start;
}

.brand-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  min-width: 180px;
  padding: 0.95rem 1rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: #1c66af;
  font-family: "Libre Baskerville", serif;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-standard {
  display: none;
}

body:not(.page-home) .brand-home {
  display: none;
}

body:not(.page-home) .brand-standard {
  display: flex;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  font-family: "Libre Baskerville", serif;
  font-size: 1.4rem;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

body.page-home .site-nav ul {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.15rem 0.45rem;
}

.nav-item {
  position: relative;
}

.nav-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  width: 320px;
  top: 100%;
  height: 1rem;
}

.nav-item > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 0.85rem;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

body.page-home .nav-item > a,
body.page-home .nav-trigger {
  padding: 0.4rem 0.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Libre Baskerville", serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.nav-item-has-children .nav-trigger::after {
  content: "▾";
  font-size: 0.75rem;
}

body.page-home .nav-item-has-children .nav-trigger::after {
  display: none;
}

.nav-item:hover > a,
.nav-item:hover > .nav-trigger,
.nav-item.is-active > a,
.nav-item.is-active > .nav-trigger {
  color: var(--blue);
}

body.page-home .nav-item:hover > a,
body.page-home .nav-item:hover > .nav-trigger,
body.page-home .nav-item.is-active > a,
body.page-home .nav-item.is-active > .nav-trigger {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  margin-top: -0.1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-item-has-children:hover .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item-has-children.is-open .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item-has-children:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu-overview {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-weight: 800;
}

.submenu ul {
  display: grid;
  gap: 0.4rem;
}

.submenu a {
  padding: 0.45rem 0;
  color: var(--muted);
}

.submenu a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #b98f47);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 15px 30px rgba(185, 143, 71, 0.24);
}

.button-small {
  padding: 0.75rem 1.15rem;
}

.button-light {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

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

.desktop-cta {
  white-space: nowrap;
}

.desktop-phone {
  justify-self: end;
  min-width: 180px;
  min-height: 86px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: none;
  color: #2f6fa4;
  font-family: "Libre Baskerville", serif;
  font-size: 1.02rem;
  font-weight: 400;
}

.mobile-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
}

.hero {
  padding: 4.2rem 0 3.8rem;
}

body.page-home .hero {
  position: relative;
  min-height: 720px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 129, 186, 0.9) 0%, rgba(72, 177, 230, 0.44) 28%, rgba(53, 139, 190, 0.42) 50%, rgba(28, 111, 157, 0.56) 74%, rgba(4, 118, 168, 0.9) 100%),
    radial-gradient(circle at 62% 15%, rgba(255, 244, 206, 0.12), transparent 15%),
    linear-gradient(180deg, rgba(18, 93, 138, 0.22), rgba(36, 125, 176, 0.18) 52%, rgba(8, 52, 82, 0.24)),
    url("assets/images/carles-rabada-ktWur2xM1hs-unsplash.jpg");
  background-position: center center, 62% 15%, center center, center 62%;
  background-repeat: no-repeat;
  background-size: auto, auto, auto, cover;
}

body.page-home .hero::before {
  content: "";
  position: absolute;
  inset: auto 0 12% 0;
  height: 170px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(236, 246, 252, 0.24) 24%, rgba(98, 131, 152, 0.08) 66%, rgba(36, 61, 79, 0) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01) 38%, rgba(255, 255, 255, 0.04) 100%);
}

body.page-home .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 17%;
  background:
    linear-gradient(180deg, rgba(17, 67, 96, 0), rgba(4, 118, 168, 0.92));
}

.hero-grid,
.split-grid,
.cards-3,
.cards-4,
.contact-grid,
.content-grid,
.footer-grid,
.listing-grid,
.promo-grid,
.service-grid,
.office-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

body.page-home .hero-grid {
  display: block;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 900;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.75rem);
}

body.page-home .hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.45rem);
  max-width: 14ch;
  margin: 1rem auto 1.35rem;
  color: white;
  font-weight: 400;
  line-height: 1.01;
  text-shadow: 0 6px 24px rgba(15, 55, 82, 0.16);
}

.hero p.lead,
.page-hero .lead {
  margin-top: 1.25rem;
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 12.5rem;
  color: white;
}

.hero-kicker,
.hero-subline,
.hero-hours,
.hero-logo-mark small {
  color: rgba(255, 255, 255, 0.92);
}

.hero-kicker {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(0.96rem, 1.45vw, 1.35rem);
  line-height: 1.4;
  max-width: 56ch;
}

.hero-subline {
  margin-top: 0.2rem;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(0.98rem, 1.35vw, 1.2rem);
  max-width: 62ch;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(8, 93, 136, 0.1), rgba(6, 118, 167, 0.78));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-ticker-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  white-space: nowrap;
  will-change: transform;
  animation: hero-ticker-scroll 30s linear infinite;
}

.hero-ticker-track span {
  color: rgba(255, 255, 255, 0.96);
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

@keyframes hero-ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-panel,
.page-card,
.card,
.sidebar-card,
.review-card,
.contact-form,
.info-box,
.stat-band,
.feature-banner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.office-section {
  background:
    linear-gradient(180deg, rgba(225, 237, 245, 0.5), rgba(255, 255, 255, 0)),
    transparent;
}

.office-heading {
  max-width: 840px;
}

.office-grid {
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  grid-template-areas:
    "large counter operatory"
    "large chair tech";
  align-items: stretch;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "tall small-one small-two"
    "tall wide wide";
  gap: 1.5rem;
}

.people-card,
.page-photo-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.people-card img,
.page-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.people-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.people-card-tall {
  grid-area: tall;
}

.people-card-wide {
  grid-area: wide;
}

.people-grid figure:nth-child(2) {
  grid-area: small-one;
}

.people-grid figure:nth-child(3) {
  grid-area: small-two;
}

.page-photo-card {
  min-height: 280px;
}

.doctor-photo-card {
  width: min(100%, 280px);
  min-height: 0;
  justify-self: start;
}

.doctor-photo-card img {
  aspect-ratio: 1 / 1;
}

.page-photo-card-wide {
  min-height: 360px;
}

.office-card,
.tech-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.office-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.office-card-large {
  grid-area: large;
  min-height: 720px;
}

.office-grid figure:nth-of-type(2) {
  grid-area: counter;
}

.office-grid figure:nth-of-type(3) {
  grid-area: operatory;
}

.office-grid figure:nth-of-type(4) {
  grid-area: chair;
}

.tech-card {
  grid-area: tech;
  display: grid;
  align-items: center;
  gap: 1rem;
  padding: 1.7rem;
  background: linear-gradient(135deg, #14385b, #2c5d8f);
}

.tech-card-copy h3 {
  margin-bottom: 0.75rem;
  color: white;
  font-size: 1.8rem;
}

.tech-card-copy p,
.tech-card .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.tech-card img {
  width: min(100%, 280px);
  justify-self: center;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.18));
}

body.page-home .hero-panel {
  display: none;
}

.hero-panel {
  position: relative;
  padding: 2rem;
  min-height: 470px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(41, 95, 144, 0.1), rgba(234, 223, 201, 0.6)),
    var(--white);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 320px;
  height: 320px;
  border-radius: 38% 62% 56% 44% / 43% 47% 53% 57%;
  background: linear-gradient(135deg, rgba(41, 95, 144, 0.92), rgba(13, 36, 61, 0.78));
}

.hero-badge,
.hero-panel h2,
.hero-panel p {
  position: relative;
}

.hero-badge {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.hero-panel h2 {
  margin-top: 1.3rem;
  font-size: 2.35rem;
  max-width: 10ch;
}

.hero-panel p {
  margin-top: 0.8rem;
  max-width: 26ch;
}

.hero-notes {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  display: grid;
  gap: 0.8rem;
}

.hero-note {
  width: min(260px, 100%);
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.5);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-grid h2,
.content-grid h2,
.promo-grid h2,
.contact-grid h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 0.8rem;
}

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

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

.card,
.review-card,
.sidebar-card,
.info-box,
.page-card {
  padding: 1.5rem;
}

.card h3,
.page-card h3,
.sidebar-card h3,
.info-box h3 {
  margin-bottom: 0.75rem;
  font-size: 1.55rem;
}

.split-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.feature-banner {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.08), rgba(20, 18, 16, 0.22)),
    url("assets/images/people/pexels-karolmirandafotografia-18735307.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.feature-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(56%, 430px);
  background:
    linear-gradient(90deg, rgba(64, 31, 22, 0.62) 0%, rgba(64, 31, 22, 0.46) 58%, rgba(64, 31, 22, 0.1) 88%, rgba(64, 31, 22, 0) 100%);
}

.feature-banner > * {
  position: relative;
  z-index: 1;
}

.feature-banner h2,
.feature-banner p,
.feature-banner li {
  color: var(--white);
}

.feature-banner .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.8rem;
}

.feature-banner h2 {
  max-width: 10ch;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.98;
  margin-bottom: 1rem;
  text-shadow: 0 8px 24px rgba(31, 14, 9, 0.26);
}

.feature-banner p {
  max-width: 25ch;
  font-size: 1.02rem;
  line-height: 1.8;
  font-weight: 600;
  text-shadow: 0 4px 18px rgba(31, 14, 9, 0.22);
}

.stat-band {
  padding: 1.4rem 1.6rem;
  display: grid;
  gap: 0.3rem;
}

.stat-band strong {
  font-size: 2rem;
}

.contact-stats {
  margin-top: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.callout-phone {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding: 1.5rem 1.8rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.callout-phone strong {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
  color: var(--ink);
}

.callout-phone span {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
}

.page-hero {
  padding: 3rem 0 2.3rem;
  background:
    linear-gradient(180deg, rgba(41, 95, 144, 0.08), rgba(255, 255, 255, 0)),
    transparent;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.content-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 1.4rem;
}

.sidebar-stack {
  display: grid;
  gap: 1.2rem;
}

.link-list,
.bullet-list {
  display: grid;
  gap: 0.65rem;
}

.link-list a,
.bullet-list li {
  color: var(--ink);
  font-weight: 600;
}

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

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

.review-card p {
  color: var(--ink);
  font-weight: 600;
}

.testimonials-grid {
  align-items: stretch;
}

.testimonial-card {
  display: grid;
  gap: 1rem;
}

.testimonial-card p {
  line-height: 1.7;
}

.testimonial-card strong {
  color: var(--muted);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
  color: #d4a437;
  font-size: 1.25rem;
  line-height: 1;
}

.testimonial-link {
  margin-top: 1.5rem;
  text-align: center;
}

.testimonial-link a {
  color: var(--blue);
  font-weight: 800;
}

.local-proof-grid {
  align-items: stretch;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.faq-item {
  padding: 1.7rem 1.6rem;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 0.7rem;
  font-size: 1.24rem;
}

.faq-item p {
  color: var(--ink);
  line-height: 1.75;
  font-weight: 600;
}

.promo-grid,
.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 1.25rem;
}

.appointment-panel,
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.appointment-panel {
  display: grid;
  gap: 0.85rem;
  padding: 2rem;
  background: linear-gradient(135deg, #d7ae59, #c8983f);
  color: white;
}

.appointment-panel .eyebrow,
.appointment-panel h3,
.appointment-panel p {
  color: white;
}

.appointment-panel h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.appointment-panel p {
  max-width: 28ch;
  font-size: 1.04rem;
}

.map-card {
  overflow: hidden;
}

.map-surface {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(180deg, #f3eedf, #efe7d4);
}

.map-road {
  position: absolute;
  background: #f5c15f;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.8);
}

.map-road-eastwest {
  left: -6%;
  right: -6%;
  top: 38%;
  height: 22px;
}

.map-road-northsouth {
  top: -8%;
  bottom: -8%;
  left: 58%;
  width: 22px;
}

.map-road-diagonal {
  width: 180px;
  height: 18px;
  right: 9%;
  top: 14%;
  transform: rotate(-28deg);
}

.map-park {
  position: absolute;
  background: #dce8b8;
  border-radius: 16px;
}

.map-park-one {
  width: 120px;
  height: 80px;
  left: 8%;
  bottom: 12%;
}

.map-park-two {
  width: 84px;
  height: 64px;
  right: 14%;
  bottom: 24%;
}

.map-label,
.map-address {
  position: absolute;
  color: #786f5f;
  font-size: 0.88rem;
  font-weight: 700;
}

.map-label-one {
  left: 1.25rem;
  top: 1rem;
}

.map-label-two {
  right: 1rem;
  top: 4.4rem;
  transform: rotate(90deg);
  transform-origin: right top;
}

.map-label-three {
  left: 1.4rem;
  bottom: 2rem;
}

.map-pin {
  position: absolute;
  left: 24%;
  top: 49%;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: #d45245;
  transform: rotate(-45deg);
  box-shadow: 0 10px 24px rgba(212, 82, 69, 0.25);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: white;
}

.map-address {
  left: calc(24% + 1.2rem);
  top: calc(49% + 0.2rem);
  color: #aa3f36;
}

.map-card-copy {
  padding: 1rem 1.25rem 1.25rem;
}

.map-card-copy strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.site-footer h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-bottom {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
}

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

  .desktop-cta {
    display: none;
  }

  body.page-home .brand-home {
    display: none;
  }

  body.page-home .brand-standard {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav ul,
  .utility-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul {
    gap: 0;
  }

  body.page-home .site-header-home {
    position: sticky;
    background: rgba(19, 62, 99, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.page-home .nav-shell {
    display: flex;
    align-items: center;
    padding: 1rem 0;
  }

  body.page-home .site-nav ul {
    gap: 0;
  }

  body.page-home .nav-item > a,
  body.page-home .nav-trigger {
    width: 100%;
    justify-content: space-between;
    color: var(--ink);
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
  }

  body.page-home .nav-item:hover > a,
  body.page-home .nav-item:hover > .nav-trigger,
  body.page-home .nav-item.is-active > a,
  body.page-home .nav-item.is-active > .nav-trigger {
    color: var(--blue);
    text-decoration: none;
  }

  .nav-item > a,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 0;
  }

  .submenu {
    position: static;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0.5rem 0 0.7rem 1rem;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-item-has-children::after {
    display: none;
  }

  .nav-item-has-children.is-open .submenu {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .cards-3,
  .cards-4,
  .contact-grid,
  .content-grid,
  .footer-grid,
  .listing-grid,
  .promo-grid,
  .service-grid,
  .office-grid,
  .people-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .office-grid {
    grid-template-areas:
      "large"
      "counter"
      "operatory"
      "chair"
      "tech";
  }

  .people-grid {
    grid-template-areas:
      "tall"
      "small-one"
      "small-two"
      "wide";
  }

  .office-card-large {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .utility-actions,
  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel {
    min-height: 380px;
  }

  body.page-home .hero {
    min-height: 620px;
  }

  .hero-stage {
    padding-top: 8.5rem;
  }

  .hero-ticker {
    padding: 0.8rem 0;
  }

  .hero-ticker-track span {
    font-size: 0.95rem;
  }

  .hero-notes {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
  }
}
