:root {
  --ink: #173a3d;
  --muted: #627176;
  --teal: #147c82;
  --teal-dark: #0e565d;
  --gold: #c8973f;
  --rose: #f7dfd8;
  --cream: #fffaf2;
  --cloud: #eef6f4;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(23, 58, 61, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(23, 58, 61, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(23, 58, 61, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  opacity: 0.78;
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-weight: 700;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .header-action,
.site-header.is-open .header-action {
  color: var(--white);
  background: var(--teal);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 41, 43, 0.78), rgba(10, 41, 43, 0.46) 38%, rgba(10, 41, 43, 0.1) 68%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 78px);
  padding-top: 92px;
  color: var(--white);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  max-width: min(360px, 78vw);
  margin-bottom: 24px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(10, 41, 43, 0.2);
}

.hero-brand img {
  width: min(330px, 70vw);
  max-height: 130px;
  object-fit: contain;
}

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

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

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.button.primary {
  border: 2px solid var(--teal);
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  border: 2px solid rgba(255, 255, 255, 0.78);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d9e8e5;
}

.quick-info div {
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--cloud);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  font-size: 1.04rem;
}

.quick-info span {
  margin-top: 4px;
  color: var(--muted);
}

.notice-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid #d9e8e5;
  background: var(--white);
}

.notice-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(20, 124, 130, 0.24);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--teal-dark);
  background: var(--cloud);
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:last-child,
.approach-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid #d9e8e5;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 58, 61, 0.06);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--cloud);
  font-weight: 900;
}

.service-grid h3,
.steps h3 {
  margin: 22px 0 8px;
  font-size: 1.25rem;
}

.service-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.approach {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  background: var(--cream);
}

.approach-copy {
  max-width: 520px;
  margin-left: auto;
}

.steps {
  display: grid;
  gap: 14px;
  max-width: 660px;
}

.steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid rgba(200, 151, 63, 0.3);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-weight: 900;
}

.steps h3 {
  margin-top: 0;
}

.families {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: center;
}

blockquote {
  margin: 0;
  padding: clamp(28px, 5vw, 52px);
  border-left: 6px solid var(--gold);
  color: var(--teal-dark);
  background: var(--cloud);
  border-radius: 8px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.14;
}

.brand-showcase {
  display: grid;
  place-items: center;
  padding: clamp(34px, 7vw, 76px) 18px;
  background: linear-gradient(180deg, var(--white), var(--cloud));
}

.brand-showcase img {
  width: min(520px, 86vw);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.careers {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  background: var(--cream);
}

.careers-copy {
  max-width: 580px;
  margin-left: auto;
}

.careers-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.career-apply-card {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(13, 92, 97, 0.16);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.career-apply-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(13, 92, 97, 0.09);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.career-apply-card h3 {
  margin: 22px 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.career-apply-card p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

.career-apply-button {
  width: 100%;
  gap: 18px;
}

.career-apply-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.hiring-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hiring-list li {
  position: relative;
  padding-left: 28px;
  color: var(--teal-dark);
  font-weight: 800;
}

.hiring-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  color: var(--white);
  background: var(--teal-dark);
}

.contact .eyebrow {
  color: #f6d58f;
}

.contact-copy {
  max-width: 560px;
  margin-left: auto;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form,
.career-form {
  display: grid;
  gap: 16px;
  width: min(100%, 620px);
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfdcda;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .button,
.career-form .button {
  width: 100%;
  border-radius: 8px;
  border-color: var(--teal);
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.8);
  background: #102f32;
}

.site-footer p {
  margin: 0;
}

.thank-you-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--cream);
}

.thank-you {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 70px);
  border-radius: 8px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thank-you img {
  width: min(280px, 70vw);
  margin: 0 auto 28px;
  border-radius: 8px;
}

.thank-you h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 4.7rem);
}

.thank-you p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px auto 28px;
  color: var(--muted);
}

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

  .main-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .site-header.is-open .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 30px rgba(23, 58, 61, 0.08);
  }

  .site-header.is-open .main-nav a {
    padding: 14px 0;
    border-top: 1px solid #e4eeee;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 41, 43, 0.84), rgba(10, 41, 43, 0.58) 58%, rgba(10, 41, 43, 0.24));
  }

  .quick-info,
  .section-heading,
  .approach,
  .families,
  .careers,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .approach-copy,
  .careers-copy,
  .contact-copy {
    margin-left: 0;
  }
}

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

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  .hero img {
    object-position: 62% center;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.6rem);
  }

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

  .quick-info,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .notice-strip {
    justify-content: stretch;
  }

  .notice-strip span {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .service-grid article {
    min-height: auto;
  }

  .steps div {
    grid-template-columns: 1fr;
  }

  .steps span {
    grid-row: auto;
    margin-bottom: 14px;
  }

  .site-footer {
    display: grid;
  }
}
