:root {
  --ink: #1d2523;
  --muted: #5f6a65;
  --paper: #fbfaf5;
  --soft: #f0ece1;
  --teal: #0f766e;
  --teal-dark: #0b4e49;
  --gold: #d69a26;
  --rose: #c45d70;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(29, 37, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid rgba(29, 37, 35, 0.1);
  backdrop-filter: blur(16px);
}

.nav-toggle,
.menu-button {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

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

.brand strong {
  font-size: 0.98rem;
  text-transform: uppercase;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

nav a:hover {
  color: var(--teal-dark);
}

.nav-call,
.button {
  border-radius: 6px;
  font-weight: 700;
}

.nav-call {
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: clamp(42px, 6vw, 78px) 0 clamp(56px, 7vw, 92px);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 42, 38, 0.82), rgba(11, 42, 38, 0.38) 52%, rgba(11, 42, 38, 0.1)),
    linear-gradient(0deg, rgba(11, 42, 38, 0.55), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px);
  color: var(--white);
}

.hero-logo {
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-lede {
  max-width: 660px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.intro-section,
.availability-section,
.mission-section,
.contact-section,
.statement-section,
.best-practices-section,
.model-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(64px, 9vw, 116px) clamp(18px, 7vw, 96px);
}

.section-copy {
  max-width: 780px;
}

.centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-copy p,
.availability-section p,
.contact-section p,
.quote-section p,
.statement-copy p,
.model-section p,
.best-practices-section p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.values-grid article,
.availability-card,
.contact-panel {
  border: 1px solid rgba(29, 37, 35, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(29, 37, 35, 0.08);
}

.values-grid article {
  padding: 24px;
}

.values-grid article:nth-child(2) {
  border-top: 4px solid var(--teal);
}

.values-grid article:nth-child(3) {
  border-top: 4px solid var(--rose);
}

.values-grid article:nth-child(4) {
  border-top: 4px solid var(--gold);
}

.values-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.statement-section {
  background: var(--soft);
}

.statement-copy p:last-child {
  margin-bottom: 0;
}

.pathway-section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 7vw, 96px);
  background: var(--paper);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(30px, 5vw, 56px);
}

.pathway-grid article {
  min-height: 260px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(29, 37, 35, 0.1);
  box-shadow: 0 14px 42px rgba(29, 37, 35, 0.08);
}

.pathway-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
}

.pathway-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.pathway-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.availability-section {
  background: var(--teal-dark);
  color: var(--white);
}

.availability-section p {
  color: rgba(255, 255, 255, 0.78);
}

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

.availability-card {
  min-height: 220px;
  padding: 22px;
  color: var(--ink);
}

.availability-card .location {
  display: block;
  min-height: 44px;
  color: var(--teal-dark);
  font-weight: 800;
}

.availability-card strong {
  display: block;
  margin: 12px 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 1;
}

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

.notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.photo-band img {
  width: 100%;
  height: clamp(220px, 28vw, 380px);
  object-fit: cover;
}

.mission-section {
  align-items: center;
}

.mission-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.best-practices-section {
  background: var(--teal-dark);
  color: var(--white);
}

.best-practices-section p {
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  position: relative;
  padding: 15px 18px 15px 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 10px;
  height: 16px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg);
}

.model-section {
  background: var(--paper);
}

.service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid rgba(15, 118, 110, 0.18);
  box-shadow: 0 10px 28px rgba(29, 37, 35, 0.07);
  font-weight: 800;
}

.quote-section {
  padding: clamp(60px, 8vw, 96px) clamp(18px, 12vw, 150px);
  text-align: center;
  background: var(--soft);
}

blockquote {
  max-width: 980px;
  margin: 0 auto 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 4rem);
  line-height: 1.08;
}

.quote-section p {
  max-width: 760px;
  margin: 0 auto;
}

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

.gallery-section img {
  width: 100%;
  height: clamp(280px, 36vw, 520px);
  object-fit: cover;
}

.contact-section {
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.contact-panel {
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
}

.contact-link {
  display: block;
  overflow-wrap: anywhere;
  text-decoration: none;
  color: var(--teal-dark);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.8vw, 1.8rem);
}

.contact-link + .contact-link {
  margin-top: 10px;
}

.contact-link.phone {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
}

.contact-panel p {
  margin: 24px 0 0;
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 7vw, 96px);
  color: var(--muted);
  background: var(--paper);
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    padding: 12px 18px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    display: inline-flex;
    flex: 0 0 auto;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(29, 37, 35, 0.18);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(29, 37, 35, 0.08);
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--teal-dark);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    width: 100%;
    padding: 10px 18px 16px;
    background: rgba(251, 250, 245, 0.98);
    border-bottom: 1px solid rgba(29, 37, 35, 0.12);
    box-shadow: 0 18px 34px rgba(29, 37, 35, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-toggle:checked ~ nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(29, 37, 35, 0.08);
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    white-space: normal;
  }

  .nav-call {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    padding: 13px 16px;
    border-bottom: 0;
    color: var(--white);
    font-size: 1rem;
  }

  .intro-section,
  .availability-section,
  .mission-section,
  .contact-section,
  .statement-section,
  .best-practices-section,
  .model-section {
    grid-template-columns: 1fr;
  }

  .availability-list,
  .photo-band,
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: clamp(0.82rem, 4vw, 1rem);
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    align-items: center;
    min-height: calc(100svh - 64px);
    padding: 34px 0 54px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .values-grid,
  .availability-list,
  .photo-band,
  .gallery-section,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .availability-card {
    min-height: 180px;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 6px;
  }
}
