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

:root {
  color-scheme: light;
  --pacific-blue: #265d9b;
  --coastal-sky: #4f8fd9;
  --redwood-grove: #2e6b55;
  --sagebrush: #7faf90;
  --granite-slate: #2f343b;
  --fog-slate: #6b7280;
  --off-white: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(47, 52, 59, 0.08);
}

body {
  margin: 0;
  font-family: "Calibri", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--granite-slate);
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  max-width: 720px;
}

.stack > * + * {
  margin-top: 18px;
}

.stack-large > * + * {
  margin-top: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e2e6ea;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 20px 0;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-logo {
  height: 117px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pacific-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.brand-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--fog-slate);
  margin: 0;
}

.site-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: var(--coastal-sky);
}

.site-nav a.active {
  border-color: var(--pacific-blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.button-outline {
  border-color: var(--pacific-blue);
  color: var(--pacific-blue);
  background: transparent;
}

.button-small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.button-header {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.hero {
  padding: 72px 0 80px;
}

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

.page-hero {
  padding: 48px 0 32px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pacific-blue);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--fog-slate);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.line-card {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.highlight-title {
  font-weight: 600;
  margin: 0 0 8px;
}

.hero-visual {
  display: grid;
  gap: 24px;
}

.hero-caption {
  font-size: 1.02rem;
  color: var(--granite-slate);
  margin: 0;
}

.hero-note {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
}

.section {
  padding: 72px 0;
}

.section-compact {
  padding: 44px 0;
}

.section-compact-tight {
  padding-top: 28px;
}

.section-light {
  background: var(--off-white);
}

.section-accent {
  background: linear-gradient(135deg, rgba(79, 143, 217, 0.1), rgba(127, 175, 144, 0.1));
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.callout {
  margin-top: 24px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.callout-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 28px;
}

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

.gallery-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e0e5ea;
  background: var(--white);
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(79, 143, 217, 0.12);
  margin-bottom: 12px;
}

.icon svg {
  width: 34px;
  height: 34px;
}

.icon-large {
  width: 56px;
  height: 56px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.how-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.flow {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  margin-bottom: 28px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.flow-step {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.flow-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.dropdowns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

details {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.contact-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.contact-card {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  margin-bottom: 24px;
}

.contact-headshot {
  display: block;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1px solid #e0e5ea;
}

.contact-panel {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.scheduler-panel {
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2d7dc;
  font: inherit;
}

.muted {
  color: var(--fog-slate);
  font-size: 0.9rem;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid #e2e6ea;
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--fog-slate);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-grid,
  .page-hero-grid,
  .two-col,
  .contact-people {
    grid-template-columns: 1fr;
  }

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