:root {
  --ink: #242221;
  --muted: #68625f;
  --paper: #fffdf9;
  --rose: #b85861;
  --rose-dark: #6f2834;
  --sage: #667d6c;
  --sage-deep: #2f5149;
  --clay: #d18963;
  --line: rgba(36, 34, 33, 0.14);
  --shadow: 0 18px 50px rgba(36, 34, 33, 0.12);
  --shadow-soft: 0 10px 30px rgba(36, 34, 33, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 12px clamp(18px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(25, 22, 20, 0.68), rgba(25, 22, 20, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-size: 1.14rem;
  font-weight: 820;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-name {
  font-weight: 840;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  flex: 0 0 auto;
  filter:
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.75));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  min-height: 78svh;
  padding: 124px clamp(20px, 7vw, 84px) 72px;
  color: #fff;
  background: #241918 url("assets/facility-poster-clean.jpg") center / cover no-repeat;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 27, 25, 0.88) 0%, rgba(58, 35, 34, 0.68) 44%, rgba(41, 36, 31, 0.2) 82%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

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

.hero .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #ffd9cf;
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  transform: translateY(-10px);
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 8px;
  font-size: clamp(3.1rem, 8.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: #ffd9cf;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 850;
  letter-spacing: 0;
}

.hero-content > p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 760;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--rose);
}

.button.primary:hover {
  background: var(--rose-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
}

.button.outline {
  color: var(--sage-deep);
  border-color: rgba(47, 81, 73, 0.28);
  background: #fff;
}

.button.outline:hover {
  border-color: var(--sage-deep);
}

.intro-band,
.marketing-section,
.section,
.care-section,
.fit-section,
.place-section,
.details-section,
.contact-section {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 7vw, 84px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  background: #f6f0ea;
}

.intro-band h2,
.marketing-copy h2,
.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-band > p,
.marketing-copy p,
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.marketing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: #fffdf9;
}

.marketing-copy h2 {
  margin-bottom: 18px;
}

.marketing-copy p:not(.section-kicker) {
  margin-bottom: 0;
}

.marketing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.marketing-grid {
  display: grid;
  gap: 14px;
}

.marketing-grid article {
  padding: 22px;
  border: 1px solid rgba(47, 81, 73, 0.16);
  border-radius: 8px;
  background: #f9fbf8;
  box-shadow: 0 12px 34px rgba(47, 81, 73, 0.1);
}

.marketing-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--rose-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.marketing-grid h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

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

.programs-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  margin-bottom: 34px;
}

.programs-intro .section-heading {
  margin-bottom: 0;
}

.program-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.program-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.program-group {
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.program-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.program-list {
  display: grid;
  gap: 16px;
}

.program-list article {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.program-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.program-list h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.program-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.care-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: #f9fbf8;
}

.care-grid {
  display: grid;
  gap: 14px;
}

.care-grid article {
  padding: 20px;
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(47, 81, 73, 0.1);
}

.care-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--sage-deep);
  font-size: 1.25rem;
  font-weight: 850;
}

.care-grid h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
}

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

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  background: #fffdf9;
}

.fit-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
}

.fit-copy p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.fit-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--sage-deep);
  font-weight: 840;
}

.fit-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-band {
  padding: clamp(58px, 9vw, 104px) clamp(20px, 9vw, 120px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(111, 40, 52, 0.96), rgba(47, 81, 73, 0.96)),
    var(--rose-dark);
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0 0 20px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 780;
  line-height: 1.04;
  letter-spacing: 0;
}

.quote-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 560px);
  gap: clamp(30px, 6vw, 82px);
  background: #fffdf9;
}

.details-section {
  background: #fffdf9;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.details-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.details-grid img {
  display: block;
  width: 62px;
  height: 62px;
  margin-bottom: 26px;
}

.details-grid span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage-deep);
  font-size: 1.2rem;
  font-weight: 850;
}

.details-grid h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

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

.place-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: #f6f0ea;
}

.place-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
}

.place-copy p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.place-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #201c1a;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.administrator-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(47, 81, 73, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.administrator-profile img {
  display: block;
  width: 104px;
  height: 104px;
  border: 3px solid #f6f0ea;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 8%;
  flex: 0 0 auto;
}

.administrator-profile span {
  display: block;
  margin-bottom: 4px;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.administrator-profile h3 {
  margin-bottom: 5px;
  font-size: 1.26rem;
}

.administrator-profile p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--sage-deep);
  font-size: 0.92rem;
  font-weight: 720;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-details a,
.contact-details span {
  color: var(--sage-deep);
  font-weight: 820;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(184, 88, 97, 0.32);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 7vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 780;
}

.site-footer a {
  color: var(--rose-dark);
  font-weight: 720;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 76svh;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(38, 27, 25, 0.92), rgba(50, 34, 31, 0.7)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.36));
  }

  .intro-band,
  .marketing-section,
  .programs-intro,
  .program-columns,
  .care-section,
  .fit-section,
  .place-section,
  .details-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 560px) {
  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
  }

  .hero {
    min-height: 82svh;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.6rem);
  }

  .hero-actions,
  .marketing-actions,
  .administrator-profile,
  .site-footer {
    flex-direction: column;
  }

  .administrator-profile {
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }
}
