:root {
  --navy: #16233b;
  --navy-dark: #0d1626;
  --navy-light: #2c4066;
  --gold: #c8a24d;
  --gold-light: #e3c67f;
  --cream: #f8f6f1;
  --gray: #5b6472;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(13, 22, 38, 0.12);
  font-size: 16px;
}

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

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--navy-dark);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; color: var(--gray); }

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6em;
}
.eyebrow.center { text-align: center; }
h2.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9em 1.8em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(200, 162, 77, 0.35);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-call {
  background: var(--navy);
  color: var(--white);
  padding: 0.6em 1.3em;
  font-size: 0.9rem;
}
.btn-call:hover { background: var(--navy-light); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(22, 35, 59, 0.92);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo { width: 42px; height: 42px; object-fit: contain; }
.brand-name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}
.main-nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,22,38,0.75) 0%, rgba(13,22,38,0.55) 45%, rgba(13,22,38,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
  color: var(--white);
}
.hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.45));
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.8em;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 0.3em;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 2em;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--white); }

.about-grid { max-width: 820px; margin: 0 auto; text-align: center; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.about-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(22,35,59,0.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-6px); }
.card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.card p { font-size: 0.95rem; margin: 0; }

.facility-grid { max-width: 720px; margin: 0 auto; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  position: relative;
  padding-left: 32px;
  color: var(--navy-dark);
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.cta-band { background: var(--navy); }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 2em; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.02rem;
}
.contact-list a { color: var(--navy); font-weight: 600; }
.contact-list a:hover { color: var(--gold); }
.contact-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-weight: 700;
}
.footer-logo { width: 30px; height: 30px; object-fit: contain; }
.footer-social { display: flex; gap: 20px; }
.footer-social a:hover { color: var(--gold-light); }

/* Mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  font-weight: 700;
  padding: 14px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 260px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-call { display: none; }
  .nav-toggle { display: flex; }
  .mobile-call-bar { display: block; }
  .section { padding: 72px 0 64px; }
  body { padding-bottom: 56px; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    gap: 16px;
  }
}
