*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1931;
  --navy-mid: #132a4e;
  --navy-light: #1e3d6e;
  --gold: #c8973a;
  --gold-light: #e8b96a;
  --gold-pale: #fdf3e3;
  --cream: #faf8f4;
  --text: #1a1a2e;
  --text-muted: #5a6070;
  --white: #ffffff;
  --border: rgba(200,151,58,0.2);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); text-decoration: none; }
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar-contact { display: flex; gap: 24px; flex-wrap: wrap; }

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(10,25,49,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-area { display: flex; align-items: center; gap: 16px; }
.logo-emblem {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.logo-emblem svg { width: 34px; height: 34px; fill: var(--gold); }
.logo-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.logo-text p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-top: 2px;
}

nav { display: flex; gap: 4px; }
nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
nav a:hover,
nav a.active {
  color: var(--navy);
  background: var(--gold-pale);
}

.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .hamburger { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 2px;
  }
  nav.open { display: flex; }
  nav a { padding: 10px 16px; border-radius: 8px; }
  .topbar { font-size: 11px; padding: 6px 16px; }
  .header-inner { padding: 12px 20px; position: relative; }
}

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0f2a50 100%);
  color: var(--white);
  padding: 100px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-copy { flex: 1; min-width: 200px; }
.hero-media {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
}
.hero-media img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(34,30,69,0.08);
  object-fit: cover;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8973a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-block;
  background: rgba(200,151,58,0.15);
  border: 1px solid rgba(200,151,58,0.4);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h2 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  padding: 13px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.stats-bar {
  background: var(--gold);
  padding: 24px 32px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 8px 48px;
  border-right: 1px solid rgba(10,25,49,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy-mid);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .stat-item {
    padding: 12px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(10,25,49,0.15);
  }
  .stat-item:last-child { border-bottom: none; }
}

.home-carousel {
  position: relative;
  height: min(72vh, 720px);
  min-height: 380px;
  overflow: hidden;
  background: var(--navy);
  padding: 0;
}
.home-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.home-carousel-slide.active {
  opacity: 1;
  visibility: visible;
}
.home-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,25,49,0.18) 0%, rgba(10,25,49,0.36) 50%, rgba(10,25,49,0.55) 100%);
  pointer-events: none;
}
.home-carousel-controls {
  position: absolute;
  inset: 50% 24px auto;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.home-carousel-btn {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background: rgba(10,25,49,0.45);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.home-carousel-btn:hover {
  background: rgba(10,25,49,0.7);
  transform: scale(1.04);
}
.home-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.home-carousel-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.home-carousel-dot.active {
  background: var(--gold-light);
  transform: scale(1.15);
}
@media (max-width: 700px) {
  .home-carousel { height: 48vh; min-height: 280px; }
  .home-carousel-controls { inset: 50% 14px auto; }
  .home-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .home-carousel-dots { bottom: 16px; }
}

section { padding: 80px 32px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-label-muted { color: rgba(200,151,58,0.8); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.highlight-emphasis { font-style: italic; color: var(--gold-light); }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
}
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 20px 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(200,151,58,0.3);
  border-radius: 50%;
}
.about-visual blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.about-visual blockquote::before {
  content: '\201C';
  font-size: 80px;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: -24px;
  opacity: 0.6;
}
.about-founder { margin-top: 24px; color: var(--gold-light); font-size: 13px; letter-spacing: 0.5px; }
.about-text p { font-size: 15px; line-height: 1.9; color: var(--text-muted); margin-bottom: 20px; }
.about-snapshot-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(34,30,69,0.07);
}
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.info-grid-wide { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.info-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.info-pill .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.info-pill .val { font-size: 14px; font-weight: 500; color: var(--navy); }

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.features-section { background: var(--navy); }
.features-section .section-title { color: var(--white); }
.features-section .section-sub { color: rgba(255,255,255,0.65); }
.features-section .divider { background: var(--gold); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,151,58,0.15);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
}
.feature-card:hover { background: rgba(200,151,58,0.08); border-color: rgba(200,151,58,0.35); transform: translateY(-3px); }
.feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,151,58,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.feature-card h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.features-section-split { display: flex; gap: 48px; align-items: stretch; }
.features-grid-column { flex: 1; }
.features-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(34,30,69,0.09);
  object-fit: cover;
}

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.vm-card {
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.vm-card.vision { background: var(--navy); color: var(--white); }
.vm-card.mission { background: var(--gold-pale); border: 1px solid var(--border); }
.vm-card .tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.vm-card.vision .tag { background: rgba(200,151,58,0.2); color: var(--gold-light); }
.vm-card.mission .tag { background: rgba(10,25,49,0.08); color: var(--navy); }
.vm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.vm-card.vision h3 { color: var(--white); }
.vm-card.mission h3 { color: var(--navy); }
.vm-card p { font-size: 15px; line-height: 1.85; }
.vm-card.vision p { color: rgba(255,255,255,0.75); }
.vm-card.mission p { color: var(--text-muted); }
.vm-card-padded { padding: 48px; }

@media (max-width: 700px) {
  .vm-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .features-section-split { flex-direction: column; gap: 32px; }
}

.centered-section-heading { text-align: center; margin-bottom: 48px; }
.centered-divider { margin: 16px auto; }
.education-philosophy {
  margin-top: 64px;
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
}
.education-philosophy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}
.education-philosophy p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  max-width: 800px;
}

.shahidians-section { background: var(--white); }
.ideal-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.ideal-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border-radius: 10px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
}
.ideal-letter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ideal-item p { font-size: 13px; line-height: 1.6; color: var(--text-muted); }

.contact-section { background: var(--navy); }
.contact-section .section-title { color: var(--white); }
.contact-section .divider { background: var(--gold); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200,151,58,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item .details .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.contact-item .details p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.contact-item .details a { color: rgba(255,255,255,0.8); text-decoration: none; }
.contact-item .details a:hover { color: var(--gold-light); }
.disclosure-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: 14px;
  padding: 32px;
}
.disclosure-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}
.disclosure-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.disclosure-row:last-child { border-bottom: none; }
.disclosure-row .key { color: rgba(255,255,255,0.5); }
.disclosure-row .val { color: rgba(255,255,255,0.9); font-weight: 500; text-align: right; max-width: 55%; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.salient-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; margin-top: 48px; }
.salient-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.25s;
}
.salient-item:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(200,151,58,0.12); }
.salient-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.salient-item p { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.sport-icon { font-size: 36px; margin-bottom: 12px; }
.facility-sections { margin-top: 64px; display: flex; flex-direction: column; gap: 36px; }
.facility-vertical-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--navy);
}
.facility-vertical-section p { font-size: 15px; line-height: 1.85; color: var(--text-muted); }
.facility-icon-large { font-size: 2rem; margin-bottom: 8px; }
.narrow-divider { margin: 8px 0 16px; width: 40px; }
.image-gallery {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}
.image-gallery img {
  width: calc(25% - 12px);
  min-width: 140px;
  border-radius: 10px;
  object-fit: cover;
  max-width: 220px;
}

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

.transport-content { max-width: 800px; margin: 0 auto; }
.transport-quote {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 48px;
  margin: 48px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  border-left: 4px solid var(--gold);
}
.transport-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.t-stat { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; }
.t-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.t-stat .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 8px; }
.transport-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.transport-enquiry {
  margin-top: 40px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.transport-enquiry h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}
.transport-enquiry p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.transport-enquiry .contact-line {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 0;
}
.transport-enquiry .contact-line + .contact-line { margin-top: 8px; }
.transport-enquiry a { color: var(--navy); }

@media (max-width: 600px) {
  .transport-stats { grid-template-columns: 1fr; }
}

.disclosure-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.disclosure-table thead { background: var(--navy); }
.disclosure-table thead th { color: var(--white); padding: 16px 20px; text-align: left; font-size: 13px; font-weight: 500; }
.disclosure-table tbody td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.disclosure-table tbody tr:last-child td { border-bottom: none; }
.disclosure-table tbody tr:nth-child(even) td { background: var(--cream); }
.disclosure-table tbody td:first-child { color: var(--text-muted); font-size: 13px; }
.disclosure-table tbody td a { color: var(--gold); text-decoration: none; }
.details-block { margin-top: 64px; }
.small-section-title { font-size: 28px; }
.disclosure-table-compact { margin-top: 24px; }

footer {
  background: #060e1c;
  padding: 48px 32px 24px;
  color: rgba(255,255,255,0.5);
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; }
.footer-links h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; margin-bottom: 8px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; font-size: 12px; text-align: center; }

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 32px;
  color: var(--white);
}
.page-hero-inner { max-width: 1140px; margin: 0 auto; }
.page-hero .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.page-hero .breadcrumb span { color: var(--gold-light); }
.page-hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
}
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.65); margin-top: 10px; max-width: 600px; }

.contact-page-section { padding-top: 64px; }

@media (max-width: 950px) {
  .features-section-split {
    flex-direction: column;
    gap: 32px;
  }
  .features-image { margin-top: 20px; }
}

@media (max-width: 600px) {
  section { padding: 60px 20px; }
  .hero { padding: 72px 20px 60px; }
  .stats-bar { padding: 16px; }
  .stat-item { padding: 10px 20px; }
}
