﻿@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #1f2a3a;
  --navy: #1c2a44;
  --navy-soft: #23344f;
  --gold: #c9a44b;
  --gold-dark: #ad8939;
  --sand: #f3ede4;
  --cream: #fbf8f2;
  --teal: #2f6d7a;
  --shadow: 0 16px 40px rgba(24, 35, 52, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fdfaf4 0%, #ffffff 60%, #f7f2e9 100%);
  line-height: 1.6;
}

.page {
  position: relative;
  overflow: hidden;
}

.page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top left, rgba(201, 164, 75, 0.14), transparent 45%),
    radial-gradient(circle at 30% 20%, rgba(47, 109, 122, 0.12), transparent 40%),
    repeating-linear-gradient(135deg, rgba(28, 42, 68, 0.06) 0 1px, transparent 1px 12px);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(253, 250, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 42, 68, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--gold-dark);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(28, 42, 68, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(28, 42, 68, 0.3);
}

.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 42, 68, 0.08);
}

.hero h1 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  color: #3c4a63;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 30px;
}

.badge {
  background: var(--sand);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 680px;
  color: #465470;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(28, 42, 68, 0.08);
  box-shadow: 0 14px 28px rgba(24, 35, 52, 0.08);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
  color: var(--navy);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat {
  background: var(--navy);
  color: #fff;
  padding: 18px 20px;
  border-radius: 16px;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
}

.image-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(28, 42, 68, 0.1);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  display: block;
}

.callout {
  background: linear-gradient(120deg, rgba(28, 42, 68, 0.96), rgba(47, 109, 122, 0.92));
  color: #fff;
  padding: 40px;
  border-radius: 26px;
  display: grid;
  gap: 16px;
}

.callout h2 {
  margin: 0;
  font-family: 'Fraunces', 'Times New Roman', serif;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(28, 42, 68, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  background: var(--navy);
  color: #d6dde7;
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-grid h4 {
  color: #fff;
  margin-top: 0;
}

.footer-grid a {
  color: #d6dde7;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 30px;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 4%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 60px;
  }

  .hero-card {
    padding: 22px;
  }

  .callout {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}





