@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Garamond', serif;
  background: #FAF9F6;
  color: #202972;
  min-height: 100vh;
}

/* ── Disclaimer Banner ──────────────────────── */
.disclaimer-banner {
  background: #F0EDE6;
  border-bottom: 1px solid rgba(32, 41, 114, 0.1);
  padding: 10px 24px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #5A4F3A;
}

/* ── Header ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FAF9F6;
  border-bottom: 1px solid rgba(32, 41, 114, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 249, 246, 0.97);
  box-shadow: 0 2px 20px rgba(32, 41, 114, 0.07);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: 'Cormorant Garamond', 'Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.22em;
  font-size: 1.65rem;
  text-transform: uppercase;
  color: #202972;
  line-height: 1.1;
}

.nav-btn {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #202972;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #C0392B;
  transition: width 0.3s ease;
}

.nav-btn:hover { color: #C0392B; }
.nav-btn:hover::after { width: 100%; }

/* ── Hero ────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FAF9F6 0%, #F0ECE4 60%, #EAE4DC 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 32px;
}

.hero-orb-1 {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(32, 41, 114, 0.04);
  pointer-events: none;
}

.hero-orb-2 {
  position: absolute;
  right: 80px;
  top: 20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.04);
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #202972;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
}

.hero-rule {
  width: 64px;
  height: 2px;
  background: #C0392B;
  margin: 32px 0;
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #4A5568;
  max-width: 600px;
}

.cta-btn {
  display: inline-block;
  margin-top: 44px;
  background: #C0392B;
  color: #FAF9F6;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 44px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.25);
  text-decoration: none;
}

.cta-btn:hover {
  background: #A93226;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.35);
}

/* ── Divider ─────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 41, 114, 0.12), transparent);
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
  background: #202972;
  padding: 80px 32px 48px;
  color: #FAF9F6;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  margin-bottom: 60px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', 'Garamond', serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FAF9F6;
  line-height: 1.25;
}

.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.84rem;
  line-height: 1.85;
  color: rgba(250, 249, 246, 0.6);
  letter-spacing: 0.03em;
}

.footer-contact-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #F8B7BD;
  margin-bottom: 20px;
}

.footer-address {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.84rem;
  line-height: 1.9;
  color: rgba(250, 249, 246, 0.75);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  margin-bottom: 8px;
  color: rgba(250, 249, 246, 0.65);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover { color: #F8B7BD; }

.footer-bottom {
  border-top: 1px solid rgba(250, 249, 246, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(250, 249, 246, 0.4);
}

/* ── Animations ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 640px) {
  .header-inner { padding: 0 20px; }
  .hero { padding: 60px 20px; }
  .brand-name { font-size: 1.25rem; }
  .site-footer { padding: 60px 20px 36px; }
  .footer-grid { gap: 36px; }
}
