:root {
  --bg: #eef3fb;
  --surface: #ffffff;
  --surface-2: #e7eefb;
  --text: #0f2140;
  --muted: #53657f;
  --primary: #123d8c;
  --primary-dark: #0a2459;
  --primary-deep: #071733;
  --accent: #d4a437;
  --accent-strong: #b88414;
  --accent-soft: #fff4d6;
  --border: rgba(10, 36, 89, 0.12);
  --shadow: 0 16px 40px rgba(7, 23, 51, 0.15);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.top-contact-bar {
  background: linear-gradient(90deg, var(--accent-strong), var(--accent), #f2d27a);
  color: #fff;
  font-size: 14px;
}
.top-contact-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-contact-wrap a { color: #fff; font-weight: 700; }
.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 3px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
}
.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10,36,89,0.94);
  border-bottom: 1px solid var(--border);
}
.header-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; font-size: 14px; }
.brand strong { display: block; font-size: 16px; }
.brand small { color: rgba(255,255,255,.78); }
.nav-links { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  padding: 10px 14px; border-radius: 999px; color: rgba(255,255,255,.82);
  font-size: 14px; font-weight: 600;
}
.nav-links a:hover, .nav-links a.active { background: linear-gradient(90deg, rgba(212,164,55,.18), rgba(255,255,255,.08)); color: #fff0c7; }
.menu-toggle { display: none; }
.hero {
  position: relative; min-height: 88vh; display: grid; place-items: center;
  overflow: hidden; color: #fff;
}
.hero-media, .hero-media img, .hero-overlay {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-media img { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(180deg, rgba(8,18,34,.32), rgba(8,18,34,.8));
}
.hero-content { position: relative; z-index: 1; padding: 120px 0 68px; }
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  background: rgba(255,255,255,0.14); color: #fff;
}
.section-kicker { background: var(--accent-soft); color: #8a6710; }
.section-kicker.light { background: rgba(255,255,255,.14); color: #fff; }
.hero h1 {
  margin: 18px 0 14px; max-width: 820px; font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02; font-family: 'Cormorant Garamond', serif; font-weight: 700;
}
.hero p { max-width: 720px; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; border: none; border-radius: 14px; cursor: pointer;
  padding: 14px 18px; font-weight: 700; font-size: 15px; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #2f2500; }
.btn-secondary { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost { background: var(--surface-2); color: var(--primary-dark); }
.btn-danger { background: #ffe6e6; color: #8a1f1f; }
.full-width { width: 100%; }
.stats-grid {
  margin-top: 34px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
}
.stat-card {
  padding: 22px; border-radius: 20px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.stat-card strong { display: block; font-size: 24px; margin-bottom: 8px; }
.stat-card span { color: rgba(255,255,255,.78); }
.section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, #f8fbff 0%, #e5eefb 100%); }
.section-dark { background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 48%, var(--primary) 100%); color: #fff; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.section-head h2, .split-grid h2, .footer-grid h2, .founder-grid h2 { margin: 16px 0 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
.section-head p, .split-grid p, .footer-grid p, .founder-grid p { color: var(--muted); line-height: 1.8; font-size: 16px; }
.section-dark p { color: rgba(255,255,255,.82); }
.split-grid, .founder-grid, .footer-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center;
}
.image-stack { position: relative; min-height: 520px; }
.stack-main, .stack-float, .image-card img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow);
}
.stack-main { height: 500px; }
.stack-float {
  position: absolute; width: 54%; right: -12px; bottom: -24px; height: 240px; border: 6px solid #fff;
}
.info-cards, .pill-list, .check-list, .contact-list, .steps { display: grid; gap: 14px; }
.info-cards { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.info-card, .quote-card, .contact-card, .table-card, .facility-card, .feature-card, .gallery-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.info-card { padding: 20px; }
.info-card span, .contact-list span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.info-card strong, .contact-list strong { font-size: 16px; }
.quote-card { padding: 30px; background: linear-gradient(135deg, #fff6da, #ffffff 72%); border-top: 4px solid var(--accent); }
.pill-list { grid-template-columns: repeat(2, max-content); gap: 12px; margin-top: 18px; }
.pill {
  display: inline-flex; padding: 12px 14px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--border); font-weight: 700;
}
.feature-grid, .facility-grid, .gallery-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.feature-card, .facility-card { padding: 24px; }
.feature-card h3, .facility-card h3 { margin: 0 0 10px; }
.feature-card p, .facility-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.facility-card img, .gallery-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; margin-bottom: 16px; }
.image-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.full-height img { min-height: 460px; object-fit: cover; }
.check-list .check-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
}
.check-icon {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(226,185,59,.16);
  display: inline-flex; align-items: center; justify-content: center; color: var(--accent); font-weight: 800;
  flex: 0 0 auto;
}
.contact-card, .table-card { padding: 24px; }
.contact-list { margin-top: 18px; }
.steps { margin-top: 22px; }
.step-item {
  display: flex; gap: 16px; background: #fff; border-radius: 18px; padding: 16px 18px; box-shadow: var(--shadow);
}
.step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; flex: 0 0 auto;
}
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px; border-bottom: 1px solid var(--border); }
th { background: var(--surface-2); font-size: 14px; }
.gallery-card { overflow: hidden; }
.gallery-card .gallery-copy { padding: 0 18px 18px; }
.gallery-card p { color: var(--muted); margin: 6px 0 0; line-height: 1.6; }
.video-shell {
  border-radius: 26px; overflow: hidden; background: linear-gradient(135deg, var(--primary-deep), var(--primary-dark)); padding: 16px; box-shadow: var(--shadow);
}
.video-shell video { width: 100%; border-radius: 16px; }
.light-card { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.12); }
.admin-link {
  display: inline-flex; padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.16);
}
.site-footer { padding: 20px 0 42px; background: linear-gradient(180deg, var(--primary-deep), #061226); color: rgba(255,255,255,.7); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.hidden, [data-hidden="true"], .section-hidden { display: none !important; }

/* Admin */
.admin-body { background: linear-gradient(180deg, #edf3fb, #e5ecf7); }
.admin-shell { display: grid; grid-template-columns: 320px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: linear-gradient(180deg, var(--primary-deep), var(--primary-dark), var(--primary)); color: #fff; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; border-right: 4px solid var(--accent);
}
.admin-brand small, .admin-note { color: rgba(255,255,255,.74); }
.admin-main { padding: 28px; }
.login-panel { display: grid; place-items: center; min-height: calc(100vh - 56px); }
.login-card, .admin-section {
  background: #fff; border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.login-card { width: min(480px, 100%); padding: 30px; }
.login-card h1, .admin-header-row h1 { margin-top: 0; }
.form-grid { display: grid; gap: 16px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.one-col { grid-template-columns: 1fr; }
label { display: grid; gap: 8px; font-size: 14px; font-weight: 600; }
input[type="text"], input[type="password"], textarea {
  width: 100%; padding: 13px 14px; border-radius: 14px; border: 1px solid var(--border);
  font: inherit; background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.full-span { grid-column: 1 / -1; }
.admin-header-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 22px; }
.admin-section { padding: 24px; margin-bottom: 20px; }
.admin-section h2 { margin: 0 0 18px; }
.helper-text, .message { font-size: 14px; color: var(--muted); }
.message.success { color: #0f6a32; }
.toggle-grid, .repeat-editor { display: grid; gap: 14px; }
.toggle-item, .repeat-item {
  background: #f8fbff; border-radius: 18px; border: 1px solid var(--border); padding: 16px;
}
.toggle-item { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.toggle-item input { width: 22px; height: 22px; }
.repeat-item .repeat-actions { display: flex; justify-content: end; margin-top: 12px; }
.upload-label { cursor: pointer; }
.side-actions { align-items: stretch; }
.side-actions .btn { width: 100%; }

@media (max-width: 980px) {
  .stats-grid, .info-cards, .feature-grid, .facility-grid, .gallery-grid,
  .split-grid, .founder-grid, .footer-grid, .admin-shell, .two-col {
    grid-template-columns: 1fr;
  }
  .stack-float { position: static; width: 100%; margin-top: 16px; height: 220px; }
  .image-stack { min-height: auto; }
  .section-head { display: block; }
  .admin-sidebar { position: sticky; top: 0; }
}
@media (max-width: 760px) {
  .top-contact-wrap { justify-content: center; text-align: center; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border);
    background: #fff; border-radius: 12px; width: 44px; height: 44px; cursor: pointer;
  }
  .nav-links {
    position: absolute; right: 16px; top: 78px; background: rgba(255,255,255,.98); padding: 14px;
    border-radius: 18px; box-shadow: var(--shadow); width: min(320px, calc(100vw - 32px)); display: none;
  }
  .nav-links.open { display: grid; }
  .hero { min-height: 78vh; }
  .hero p { font-size: 16px; }
  .pill-list { grid-template-columns: 1fr; }
}


.site-header .brand strong,
.site-header .brand,
.site-header .menu-toggle {
  color: #ffffff;
}

.brand-logo {
  border: 2px solid rgba(212,164,55,.45);
}

.btn-primary {
  background: linear-gradient(135deg, #f1cb6f, var(--accent), var(--accent-strong));
  color: #2d2100;
  box-shadow: 0 10px 24px rgba(212,164,55,.28);
}

.btn-ghost {
  background: rgba(18,61,140,.08);
  color: var(--primary-dark);
}

.section-kicker {
  background: linear-gradient(90deg, #fff3cf, #ffe7a1);
  color: #7a5700;
}

.info-card, .quote-card, .contact-card, .table-card, .facility-card, .feature-card, .gallery-card {
  border-top: 4px solid rgba(212,164,55,.9);
}

.info-card strong, .contact-list strong, .feature-card h3, .facility-card h3, .gallery-card h3, .section-head h2, .split-grid h2, .footer-grid h2, .founder-grid h2 {
  color: var(--primary-dark);
}

.table-card thead th {
  background: linear-gradient(90deg, #fdf1c9, #fff7de);
  color: var(--primary-dark);
}

.step-num {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #2d2100;
}

.admin-section {
  border-top: 4px solid var(--accent);
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(10,36,89,0.98);
  }
}
