:root {
  --ink: #14212b;
  --muted: #5e6972;
  --line: #d8e0e6;
  --paper: #ffffff;
  --soft: #f5f8fa;
  --navy: #063b62;
  --blue: #0b5a8e;
  --teal: #287f7a;
  --orange: #df572d;
  --gold: #c69234;
  --green: #31764c;
  --cream: #fff8f3;
  --mint: #f3faf8;
  --sky: #f4f8fb;
  --lilac: #f7f8fc;
  --sun: #fbf8ef;
  --shadow: 0 18px 48px rgba(20, 33, 43, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px clamp(16px, 3vw, 42px);
  border-bottom: 1px solid rgba(216, 224, 230, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 900;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
}

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

.brand strong {
  font-size: 1rem;
}

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

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.top-nav a,
.call-link {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a.active,
.call-link:hover {
  background: var(--soft);
  color: var(--navy);
}

.call-link {
  justify-self: end;
  border: 1px solid var(--line);
  color: var(--navy);
}

.section,
.hero,
.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.band {
  position: relative;
  z-index: 0;
}

.band::before {
  position: absolute;
  inset: 0 -100vw;
  z-index: -1;
  content: "";
  background: var(--band, transparent);
}

.photo-hero::before {
  background:
    linear-gradient(90deg, rgba(251, 252, 253, 0.84), rgba(251, 252, 253, 0.58)),
    var(--hero-image),
    var(--band, transparent);
  background-position: center, var(--hero-position, center center), center;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: cover, var(--hero-size, cover), cover;
}

.photo-hero-soft::before {
  background:
    linear-gradient(90deg, rgba(251, 252, 253, 0.88), rgba(251, 252, 253, 0.66)),
    var(--hero-image),
    var(--band, transparent);
  background-position: center, var(--hero-position, center center), center;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: cover, var(--hero-size, cover), cover;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.68fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) 0 clamp(34px, 6vw, 70px);
}

.hero-simple {
  display: block;
}

.hero-simple > div {
  max-width: 920px;
}

.page-hero {
  padding: clamp(36px, 6vw, 72px) 0 clamp(24px, 5vw, 46px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 3.15rem);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.13rem;
}

.lead {
  max-width: 720px;
  margin: 0 0 22px;
  color: #33424f;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--orange);
  color: white;
}

.button.secondary {
  border-color: #b6c9d7;
  background: white;
  color: var(--navy);
}

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

.button.ghost {
  border-color: var(--line);
  background: var(--soft);
  color: var(--ink);
}

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

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

.hero-card,
.card,
.notice,
.form-frame,
.policy-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: top center;
  background: #f7f2ea;
}

.hero-card .card-body {
  padding: 18px;
}

.section {
  padding: clamp(34px, 6vw, 74px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading p {
  color: #43515c;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  padding: 20px;
  box-shadow: none;
}

.card.accent-teal {
  border-top: 6px solid var(--teal);
}

.card.accent-orange {
  border-top: 6px solid var(--orange);
}

.card.accent-blue {
  border-top: 6px solid var(--blue);
}

.card.accent-gold {
  border-top: 6px solid var(--gold);
}

.card p,
.card li,
.notice p,
.policy-block p,
.policy-block li {
  color: #43515c;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 6px;
  border-bottom: 3px solid var(--green);
  border-left: 3px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

.plain-list {
  padding-left: 20px;
}

.plain-list li {
  margin: 8px 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip-row span {
  padding: 8px 10px;
  border: 1px solid #cbd9e2;
  border-radius: 999px;
  background: white;
  color: #273844;
  font-size: 0.88rem;
  font-weight: 800;
}

.notice {
  padding: 18px;
  border-left: 6px solid var(--orange);
  background: #fff7f2;
}

.notice-teal {
  margin-top: 12px;
  border-left-color: var(--teal);
  background: #f3faf8;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}

.who-we-are {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 300px);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
}

.portrait-small {
  width: min(300px, 100%);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.map-photo-grid {
  display: grid;
  gap: 14px;
}

.photo-frame {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  border-radius: 4px;
}

.hours-notice {
  align-self: start;
}

.profile-split {
  align-items: center;
}

.headshot-section .notice {
  background: rgba(255, 255, 255, 0.94);
}

.profile-photo {
  width: 100%;
  max-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.drive-gallery {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.drive-gallery iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  border: 0;
  background: white;
}

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

.gallery-tile {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: none;
  cursor: pointer;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 160ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.025);
}

.why-expand {
  margin-top: 14px;
}

.why-expand summary {
  width: fit-content;
  list-style: none;
}

.why-expand summary::-webkit-details-marker {
  display: none;
}

.why-expand-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.why-expand-panel p,
.why-expand-panel li {
  color: #43515c;
}

.why-expand-panel img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f2ea;
  object-fit: contain;
}

.image-open {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.image-open img {
  transition: transform 160ms ease;
}

.image-open:hover img {
  transform: translateY(-2px);
}

.image-open span {
  display: inline-flex;
  margin-top: 8px;
}

.image-lightbox {
  width: min(980px, calc(100% - 28px));
  max-height: min(92vh, 1100px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.image-lightbox::backdrop {
  background: rgba(20, 33, 43, 0.68);
}

.lightbox-panel {
  overflow: auto;
  max-height: 92vh;
  padding: 14px;
  border-radius: var(--radius);
  background: white;
}

.lightbox-panel img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.lightbox-actions {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding-bottom: 12px;
  background: white;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.form-frame {
  overflow: hidden;
  box-shadow: none;
}

.form-placeholder {
  display: grid;
  min-height: 410px;
  place-items: center;
  padding: 28px;
  background: #f7fbfc;
  text-align: center;
}

.form-placeholder p {
  max-width: 560px;
  color: #43515c;
}

.google-form-embed {
  width: 100%;
  min-height: 760px;
  border: 0;
  background: white;
}

.map-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 900;
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resource-card .button {
  margin-top: auto;
}

.inline-link {
  color: var(--navy);
  font-weight: 900;
}

.inline-link:hover {
  color: var(--orange);
}

.faq-list details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p,
.faq-list li {
  color: #43515c;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 26px clamp(16px, 3vw, 42px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: white;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: #d8e8f2;
  text-decoration: none;
}

.page-compact {
  max-width: 900px;
}

.policy-block {
  padding: 22px;
  box-shadow: none;
}

.call-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.call-dialog::backdrop {
  background: rgba(20, 33, 43, 0.45);
}

.dialog-panel {
  position: relative;
  padding: 24px;
  background: white;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero,
  .split,
  .why-expand-panel,
  .who-we-are,
  .gallery-grid,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .call-link {
    justify-self: start;
  }

  .section,
  .hero,
  .page-hero {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 2.24rem;
  }

  .photo-hero::before,
  .photo-hero-soft::before {
    background-size: cover, var(--hero-mobile-size, cover), cover;
  }

  .button {
    width: 100%;
  }
}
