/* ============================================================
   Teqniq Academy — Design System
   Palette: near-black + khaki, Raleway throughout
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
  --black: #0e0f0c;
  --charcoal: #1b1d17;
  --charcoal-2: #24261e;
  --khaki: #b9a57a;
  --khaki-deep: #8c7a54;
  --khaki-bright: #d3c39a;
  --cream: #efead9;
  --cream-dim: #cfc9b4;
  --olive: #4b5240;
  --line: rgba(185, 165, 122, 0.22);

  --font: 'Raleway', sans-serif;

  --maxw: 1240px;
  --pad: clamp(1.25rem, 4vw, 4rem);

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--cream);
}

p { max-width: 62ch; color: var(--cream-dim); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

:focus-visible {
  outline: 2px solid var(--khaki);
  outline-offset: 3px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9rem 1.6rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-primary {
  background: var(--khaki);
  color: var(--black);
}
.btn-primary:hover { background: var(--khaki-bright); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--khaki); color: var(--khaki-bright); }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 15, 12, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(14, 15, 12, 0.92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream-dim);
  padding: 0.3rem 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--khaki);
  transition: right 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }
.nav-links a.current { color: var(--khaki-bright); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.has-sub { position: relative; }
.sub-menu {
  position: absolute;
  top: 100%; left: -1rem;
  min-width: 240px;
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
  border-left: 2px solid transparent;
}
.sub-menu a:hover { color: var(--cream); border-left-color: var(--khaki); background: rgba(185,165,122,0.06); }
.sub-menu a::after { display: none; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 32px;
  position: relative;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 6px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    top: 84px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .nav-links.mobile-open { max-height: 80vh; overflow-y: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem var(--pad); width: 100%; }
  .nav-links a::after { display: none; }
  .has-sub .sub-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    border: none; background: var(--charcoal-2);
    display: none;
  }
  .has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { display: block; }
  .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
}

@media (min-width: 941px) {
  .nav-links.mobile-open { display: flex; }
}

/* ---------------- Touchline motif ---------------- */
.touchline {
  position: relative;
  height: 2px;
  background: var(--line);
  overflow: hidden;
  margin: 0;
}
.touchline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--khaki);
  transform: scaleX(0);
  transform-origin: left;
}
.touchline.draw::before {
  animation: draw-line 1.1s var(--ease-out) forwards;
}
@keyframes draw-line {
  to { transform: scaleX(1); }
}

.stripe-divider {
  position: relative;
  height: 64px;
  overflow: hidden;
}
.stripe-divider svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.stripe-path {
  stroke: var(--khaki-deep);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}
.stripe-path.draw { animation: draw-path 1.4s var(--ease-out) forwards; }
@keyframes draw-path { to { stroke-dashoffset: 0; } }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  padding-top: 84px;
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem var(--pad);
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--khaki);
  margin-bottom: 1.4rem;
  max-width: 30ch;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  overflow: hidden;
}
.hero-copy h1 .line {
  display: block;
  overflow: hidden;
}
.hero-copy h1 .line span {
  display: block;
  transform: translateY(110%);
  animation: rise 0.9s var(--ease-out) forwards;
}
.hero-copy h1 .line:nth-child(1) span { animation-delay: 0.15s; }
.hero-copy h1 .line:nth-child(2) span { animation-delay: 0.28s; }
.hero-copy h1 .line:nth-child(3) span { animation-delay: 0.41s; }
@keyframes rise {
  to { transform: translateY(0); }
}
.hero-copy p.lead {
  margin-top: 1.6rem;
  font-size: 1.08rem;
  max-width: 46ch;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) forwards;
  animation-delay: 0.6s;
}
.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) forwards;
  animation-delay: 0.75s;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-visual {
  position: relative;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transform: scale(1.08);
  animation: settle 1.6s var(--ease-out) forwards;
  animation-delay: 0.2s;
}
@keyframes settle { to { transform: scale(1); } }
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,12,0.05) 0%, rgba(14,15,12,0.55) 100%);
}
.hero-visual .stripe-sweep {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 6px;
  background: var(--khaki);
  transform: scaleY(0);
  transform-origin: top;
  animation: sweep-down 1s var(--ease-out) forwards;
  animation-delay: 0.05s;
  z-index: 3;
}
@keyframes sweep-down { to { transform: scaleY(1); } }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { clip-path: none; height: 46vh; order: -1; }
  .hero-copy { padding-top: 2.5rem; }
}

/* ---------------- Sections ---------------- */
section { position: relative; }
.section-pad { padding: clamp(4rem, 9vw, 7.5rem) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3.2rem;
}
.section-head .kicker {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--khaki);
  margin-bottom: 0.8rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); max-width: 16ch; }
.section-head .desc { font-size: 1rem; max-width: 34ch; margin: 0; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-clip {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.9s var(--ease-out);
}
.reveal-clip.in { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

/* ---------------- Programs grid ---------------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.program-card {
  background: var(--black);
  padding: 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.35s var(--ease);
}
.program-card:hover { background: var(--charcoal); }
.program-num {
  font-size: 0.85rem;
  color: var(--khaki-deep);
  font-weight: 600;
}
.program-card h3 { font-size: 1.3rem; }
.program-card p { font-size: 0.95rem; margin: 0; }
.program-card .tag {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--khaki);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.program-card .tag .arrow { transition: transform 0.3s var(--ease); }
.program-card:hover .tag .arrow { transform: translateX(5px); }

@media (max-width: 860px) {
  .programs-grid { grid-template-columns: 1fr; }
}

/* ---------------- Schedule strip ---------------- */
.schedule-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--charcoal);
}
.schedule-copy h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin: 0.6rem 0 1rem; }
.schedule-copy p { font-size: 0.98rem; margin: 0 0 1.6rem; }
.schedule-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.schedule-photos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}
.schedule-photos img:first-child { object-fit: contain; background: var(--black); padding: 1rem; }

@media (max-width: 860px) {
  .schedule-strip { grid-template-columns: 1fr; }
}

.hero-links-secondary {
  margin-top: 1.1rem;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) forwards;
  animation-delay: 0.9s;
}
.hero-links-secondary a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hero-links-secondary a:hover { color: var(--khaki-bright); border-color: var(--khaki); }

/* ---------------- Testimonials ---------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.testimonial-card { background: var(--black); padding: 2.4rem; }
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0 0 1.2rem;
  font-style: italic;
}
.testimonial-card .stars { color: var(--khaki); letter-spacing: 0.15em; font-size: 0.9rem; margin-bottom: 1rem; display: block; }
.testimonial-card cite { font-size: 0.85rem; color: var(--cream-dim); font-style: normal; font-weight: 600; }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------------- Instagram band ---------------- */
.insta-band { background: var(--charcoal); }
.insta-head { max-width: 60ch; margin-bottom: 2.4rem; }
.insta-head .kicker { display: inline-flex; align-items: center; gap: 0.5rem; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.insta-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.insta-tile:hover img { transform: scale(1.06); }
.insta-tile .cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(14,15,12,0.9), transparent);
  font-size: 0.8rem;
  color: var(--cream-dim);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.insta-tile:hover .cap { opacity: 1; }
@media (max-width: 700px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------------- Partners strip ---------------- */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  align-items: center;
}
.partner-strip a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream-dim);
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.partner-strip a:hover { border-color: var(--khaki); color: var(--khaki-bright); }

/* ---------------- Facility split ---------------- */
.facility-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  align-items: stretch;
}
.facility-copy {
  background: var(--charcoal);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.facility-copy h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 1.8rem; }
.fact-block { margin-bottom: 1.6rem; }
.fact-block h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--khaki);
  margin-bottom: 0.5rem;
}
.fact-block p, .fact-block ul { margin: 0; font-size: 0.98rem; }
.fact-block ul { padding-left: 1.1rem; }
.fact-block li { margin-bottom: 0.4rem; }
.fact-block a { color: var(--cream); border-bottom: 1px solid var(--khaki-deep); }
.fact-block a:hover { color: var(--khaki-bright); border-color: var(--khaki-bright); }

.facility-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 480px;
}
.facility-gallery img { width: 100%; height: 100%; object-fit: cover; }
.facility-gallery .g1 { grid-row: 1 / 3; }

@media (max-width: 860px) {
  .facility-split { grid-template-columns: 1fr; }
  .facility-gallery { min-height: 320px; }
}

/* ---------------- Stats counter ---------------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 2.6rem 1.5rem;
  text-align: left;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat .num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--khaki-bright);
  display: block;
  font-variant-numeric: tabular-nums;
}
.stat .label { font-size: 0.85rem; color: var(--cream-dim); margin-top: 0.4rem; }

@media (max-width: 700px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
}

/* ---------------- Service area ---------------- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
}
.area-list span {
  font-size: 0.95rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  color: var(--cream-dim);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.area-list span:hover { border-color: var(--khaki); color: var(--cream); }

/* ---------------- CTA band ---------------- */
.cta-band {
  background: var(--khaki);
  color: var(--black);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: left;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--black); font-size: clamp(1.7rem, 3vw, 2.4rem); max-width: 22ch; }
.cta-band .btn-primary { background: var(--black); color: var(--khaki-bright); }
.cta-band .btn-primary:hover { background: var(--charcoal); }

/* ---------------- Footer ---------------- */
footer {
  padding: 4rem 0 2.2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-grid h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--khaki);
  margin: 0 0 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.7rem; }
.footer-grid a { font-size: 0.92rem; color: var(--cream-dim); transition: color 0.25s var(--ease); }
.footer-grid a:hover { color: var(--khaki-bright); }
.footer-brand p { font-size: 0.92rem; margin-top: 1rem; }
.footer-verse {
  font-size: 0.85rem;
  color: var(--cream-dim);
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  margin-top: 0.5rem;
  font-style: italic;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-top: 2rem;
}
.footer-social { display: flex; gap: 1rem; }

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------- Page header (facilities etc.) ---------------- */
.page-header {
  padding: calc(84px + 4.5rem) 0 3.5rem;
}
.page-header .kicker {
  font-size: 0.85rem; font-weight: 600; color: var(--khaki); margin-bottom: 1rem;
}
.page-header h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); max-width: 20ch; }
.page-header p.lead { margin-top: 1.4rem; font-size: 1.08rem; max-width: 52ch; }

/* ---------------- Facility cards (facilities.html) ---------------- */
.facility-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.facility-card {
  border: 1px solid var(--line);
  background: var(--charcoal);
  overflow: hidden;
}
.facility-card .photo {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.facility-card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.facility-card:hover .photo img { transform: scale(1.05); }
.facility-card .status {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(14,15,12,0.85);
  border: 1px solid var(--khaki);
  color: var(--khaki-bright);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.8rem;
}
.facility-card .body { padding: 1.8rem; }
.facility-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.facility-card .addr { font-size: 0.88rem; color: var(--khaki); margin-bottom: 0.9rem; }
.facility-card p { font-size: 0.95rem; margin: 0 0 1.2rem; }
.facility-card .amenities {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none; padding: 0; margin: 0 0 1.4rem;
}
.facility-card .amenities li {
  font-size: 0.8rem; color: var(--cream-dim);
  border: 1px solid var(--line); padding: 0.35rem 0.7rem;
}

.facility-card.coming-soon {
  display: flex; align-items: center; justify-content: center;
  min-height: 100%;
  position: relative;
  background:
    repeating-linear-gradient(135deg, var(--charcoal) 0px, var(--charcoal) 22px, var(--charcoal-2) 22px, var(--charcoal-2) 44px);
}
.coming-soon-inner { text-align: left; padding: 3rem; }
.coming-soon-inner .kicker { color: var(--khaki); font-weight: 600; font-size: 0.85rem; margin-bottom: 0.8rem; }
.coming-soon-inner h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.coming-soon-inner p { margin-bottom: 1.4rem; }

@media (max-width: 860px) {
  .facility-cards { grid-template-columns: 1fr; }
}
