:root {
  --navy-950: #081326;
  --navy-900: #0d1f3f;
  --navy-800: #17315d;
  --blue-700: #234a87;
  --gold-500: #c8a96a;
  --gold-300: #ead8b0;
  --ivory: #fbf8f1;
  --paper: #fffdf8;
  --mist: #eef3fb;
  --ink: #152033;
  --muted: #58657d;
  --line: rgba(13, 31, 63, 0.12);
  --glass: rgba(255,255,255,0.7);
  --glass-dark: rgba(255,255,255,0.07);
  --shadow-xl: 0 30px 80px rgba(8,19,38,0.18);
  --shadow-lg: 0 18px 48px rgba(8,19,38,0.12);
  --shadow-md: 0 12px 28px rgba(8,19,38,0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(200,169,106,0.16), transparent 24%),
    radial-gradient(circle at 90% 0%, rgba(35,74,135,0.12), transparent 26%),
    linear-gradient(180deg, #fbf8f1 0%, #f7f5ef 40%, #f8fbff 100%);
  line-height: 1.7;
}
body.dark-page {
  background:
    radial-gradient(circle at top right, rgba(200,169,106,0.11), transparent 22%),
    linear-gradient(180deg, #091224 0%, #0d1f3f 100%);
  color: #eef3fb;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,253,248,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13,31,63,0.08);
}
.dark-page .site-header {
  background: rgba(9,18,36,0.75);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.02)),
    linear-gradient(135deg, var(--navy-950), var(--blue-700));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), var(--shadow-lg);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(200,169,106,0.55);
  border-radius: 50%;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.98rem;
}
.brand-text span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
}
.dark-page .brand-text strong,
.dark-page .brand-text span,
.dark-page .nav a { color: #eef3fb; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-700));
  transition: width .25s ease;
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--navy-900); }
.nav-cta {
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  color: white !important;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  box-shadow: var(--shadow-md);
}

.hero {
  padding: 5.25rem 0 3rem;
  position: relative;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  right: -6rem;
  top: 2rem;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.18), transparent 62%);
  filter: blur(14px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow,
.section-tag,
.kicker {
  display: inline-block;
  padding: 0.48rem 0.92rem;
  border-radius: 999px;
  margin: 0 0 1rem;
  border: 1px solid rgba(200,169,106,0.36);
  background: rgba(234,216,176,0.34);
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 700;
}
.dark-page .eyebrow,
.dark-page .section-tag,
.dark-page .kicker {
  color: #f8f2e6;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
h1,h2,h3,h4 {
  margin-top: 0;
  line-height: 1.12;
}
h1,h2,h3,.display-title {
  font-family: 'Cormorant Garamond', serif;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  margin-bottom: 1rem;
  color: var(--navy-950);
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--navy-950);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.55rem;
  color: var(--navy-900);
  margin-bottom: 0.55rem;
}
h4 {
  font-size: 1rem;
  color: var(--navy-800);
  margin-bottom: 0.3rem;
}
.dark-page h1,
.dark-page h2,
.dark-page h3,
.dark-page h4 { color: #fff; }

.lead,
p,
li,
label,
input,
textarea {
  color: #445069;
  font-size: 1.02rem;
}
.dark-page p,
.dark-page li,
.dark-page label,
.dark-page input,
.dark-page textarea,
.dark-page .lead { color: rgba(238,243,251,0.88); }

.hero-copy .lead { max-width: 60ch; font-size: 1.08rem; }
.hero-actions,
.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover,
.nav-cta:hover,
.lift:hover {
  transform: translateY(-3px);
}
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--navy-950), var(--blue-700));
  box-shadow: var(--shadow-lg);
}
.button.secondary {
  color: var(--navy-900);
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
}
.dark-page .button.secondary {
  color: white;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.hero-media {
  position: relative;
}
.hero-frame {
  padding: 0.9rem;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(200,169,106,0.45), rgba(255,255,255,0.4));
  box-shadow: var(--shadow-xl);
}
.hero-frame img {
  width: 100%;
  min-height: 700px;
  object-fit: cover;
  border-radius: 30px;
}
.floating-badge,
.glass-card,
.surface,
.stat-card,
.feature-card,
.quote-card,
.panel,
.contact-panel,
.timeline-item,
.cta-panel,
.story-card,
.form-card,
.value-card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(13,31,63,0.10);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
}
.dark-page .floating-badge,
.dark-page .glass-card,
.dark-page .surface,
.dark-page .stat-card,
.dark-page .feature-card,
.dark-page .quote-card,
.dark-page .panel,
.dark-page .contact-panel,
.dark-page .timeline-item,
.dark-page .cta-panel,
.dark-page .story-card,
.dark-page .form-card,
.dark-page .value-card {
  background: var(--glass-dark);
  border-color: rgba(255,255,255,0.12);
}
.floating-badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  max-width: 310px;
  padding: 1.1rem 1.2rem;
  animation: float 5s ease-in-out infinite;
}
.mini-label {
  margin: 0 0 0.4rem;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dark-page .mini-label { color: #f3e5c6; }

.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(238,243,251,0.4));
  border-top: 1px solid rgba(13,31,63,0.05);
  border-bottom: 1px solid rgba(13,31,63,0.05);
}
.dark-page .section-soft {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.05);
}
.center { text-align: center; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.stats-grid,
.feature-grid,
.values-grid,
.story-grid,
.contact-grid,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.35rem;
}
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.feature-grid,
.grid-3,
.story-grid,
.values-grid { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.contact-grid { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
.stat-card,
.feature-card,
.value-card,
.story-card,
.form-card,
.contact-panel,
.timeline-item,
.panel,
.quote-card,
.cta-panel { padding: 1.55rem; }
.stat-card strong {
  display: block;
  font-size: 1.85rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy-950);
}
.dark-page .stat-card strong { color: #fff; }
.feature-card { position: relative; overflow: hidden; }
.feature-card::before,
.value-card::before,
.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-700));
}
.quote-card .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--navy-950);
}
.dark-page .quote-card .quote { color: #fff; }
.pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.pills span {
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(200,169,106,0.18);
  border: 1px solid rgba(200,169,106,0.28);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.92rem;
}
.dark-page .pills span { color: #fff; }
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-clean li {
  padding-left: 1.45rem;
  position: relative;
  margin-bottom: 0.8rem;
}
.list-clean li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.05rem;
  color: var(--gold-500);
  font-size: 1.15rem;
}
.timeline {
  display: grid;
  gap: 1rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: start;
}
.timeline-year {
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dark-page .timeline-year { color: #f3e5c6; }

.page-hero {
  padding: 4rem 0 2.2rem;
}
.page-hero .hero-shell {
  padding: 2rem;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.5));
  border: 1px solid rgba(13,31,63,0.08);
  box-shadow: var(--shadow-lg);
}
.dark-page .page-hero .hero-shell {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.hero-shell p { max-width: 70ch; }

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.field { display: grid; gap: 0.45rem; }
.field.full { grid-column: 1 / -1; }
label {
  font-weight: 700;
  color: var(--navy-900);
}
.dark-page label { color: #fff; }
input, textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(13,31,63,0.12);
  padding: 1rem 1rem;
  background: rgba(255,255,255,0.86);
  font: inherit;
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus {
  border-color: rgba(35,74,135,0.45);
  box-shadow: 0 0 0 4px rgba(35,74,135,0.08);
}
.dark-page input,
.dark-page textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.form-note {
  font-size: 0.92rem;
  color: var(--muted);
}
.dark-page .form-note { color: rgba(238,243,251,0.72); }
.inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--navy-900);
  background: rgba(200,169,106,0.18);
  border: 1px solid rgba(200,169,106,0.26);
  font-weight: 800;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.footer {
  padding: 1.4rem 0 2.2rem;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(13,31,63,0.08);
}
.dark-page .footer-wrap {
  border-top-color: rgba(255,255,255,0.08);
}
.lux-divider {
  width: 120px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin: 1.2rem auto 0;
}
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp .8s ease forwards;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .34s; }
.delay-4 { animation-delay: .46s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .contact-grid,
  .stats-grid,
  .feature-grid,
  .values-grid,
  .story-grid,
  .grid-3,
  .grid-4,
  .timeline-item {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid,
  .contact-grid,
  .split,
  .timeline-item { grid-template-columns: 1fr; }
  .hero-frame img { min-height: 520px; }
  .floating-badge { position: static; margin-top: 1rem; }
}
@media (max-width: 720px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; }
  .hero,
  .section,
  .page-hero { padding-top: 3rem; }
  .stats-grid,
  .feature-grid,
  .values-grid,
  .story-grid,
  .grid-3,
  .grid-4,
  .form-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .cta-panel { flex-direction: column; align-items: flex-start; }
}
