:root {
  --bg: #f6f3ee;
  --bg-dark: #0b0f1a;
  --card: #ffffff;
  --ink: #0f1114;
  --muted: #6b6f76;
  --accent: #9b6a2f;
  --accent-2: #c08a3f;
  --accent-3: #0d1b3a;
  --line: rgba(15, 17, 20, 0.12);
  --shadow: 0 24px 60px rgba(11, 15, 26, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  position: relative;
  min-height: 100vh;
}

.page-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(13, 27, 58, 0.18), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(192, 138, 63, 0.2), transparent 40%),
    linear-gradient(135deg, #f6f3ee 0%, #f1ebe2 55%, #e9e0d6 100%);
  z-index: -1;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(246, 242, 236, 0.88);
  border-bottom: 1px solid rgba(31, 26, 22, 0.06);
  z-index: 10;
}

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

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

.brand-title {
  font-weight: 700;
  margin: 0;
}

.brand-tag {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

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

.nav a {
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 1rem;
}

main {
  padding: 32px 56px 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
  padding: 24px 0 40px;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.16);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.25);
}

.btn.ghost {
  border-color: rgba(31, 26, 22, 0.2);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-points {
  display: grid;
  gap: 16px;
}

.hero-points h3 {
  font-size: 1.2rem;
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-card-text {
  color: var(--muted);
}

.hero-stats {
  display: grid;
  gap: 12px;
  margin: 18px 0 16px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-value {
  font-weight: 600;
}

.hero-quote {
  padding-top: 12px;
  border-top: 1px solid rgba(31, 26, 22, 0.08);
  color: var(--accent-2);
  font-weight: 600;
}

.section {
  padding: 48px 0;
}

.section-header {
  max-width: 700px;
  margin-bottom: 26px;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--accent-2);
  font-weight: 700;
}

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

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(16, 18, 22, 0.08);
}

.card.slim {
  padding: 18px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

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

.pill-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.highlight-panel {
  background: #0d1b3a;
  color: #f8fafc;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(13, 27, 58, 0.35);
}

.highlight-panel ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.highlight-panel li {
  margin-bottom: 8px;
}

.highlight {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 42px 32px;
  border: 1px solid var(--line);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(120deg, #0d1b3a, #0b0f1a);
  color: #fff;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(13, 27, 58, 0.32);
}

.videos .video-card {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.videos iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list span {
  display: block;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 22, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.honeypot {
  display: none;
}

.footer {
  padding: 32px 56px 40px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(31, 26, 22, 0.08);
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--ink);
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 15, 20, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1000;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: min(520px, 100%);
  background: #0f172a;
  color: #f8fafc;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(248, 250, 252, 0.08);
  position: relative;
}

.modal-title {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.modal-text {
  margin: 0;
  color: rgba(248, 250, 252, 0.82);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: rgba(248, 250, 252, 0.08);
  color: #f8fafc;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 24px;
  }

  main {
    padding: 24px 24px 60px;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
    padding: 24px;
  }

  .nav {
    position: fixed;
    top: 74px;
    right: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px 16px;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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