:root {
  --accent: #d02e2e;
  --accent-dark: #a82424;
  --accent-tint: #f7e8e8;
  --dark: #0b2a8e;
  --dark-deep: #081e5e;
  --light: #faf7f2;
  --light-tint: #f3efe5;
  --text: #1a1a1a;
  --text-muted: #6b6862;
  --text-on-dark: #faf7f2;
  --border: #e0dcd2;
  --radius: 10px;
  --radius-lg: 14px;
  --max-width: 1180px;
  --nav-height: 68px;
  --banner-offset: 42px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 150ms var(--ease);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow-center {
  display: block;
  text-align: center;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-heading {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.section-heading-left {
  text-align: left;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 150ms var(--ease);
  text-decoration: none;
  min-height: 44px;
}

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

.btn-filled {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-filled:hover {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

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

.btn-lg {
  font-size: 1.05rem;
  padding: 0.9rem 2.25rem;
}

/* ===== NAVIGATION ===== */

.site-header {
  position: sticky;
  top: var(--banner-offset);
  z-index: 100;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.wordmark:hover {
  color: var(--text);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms var(--ease);
  min-height: 44px;
  display: flex;
  align-items: center;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 24px 1.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin-top: 1.25rem;
    width: 100%;
  }
}

/* ===== HERO ===== */

.hero {
  position: relative;
  background: var(--light);
  min-height: calc(100vh - var(--banner-offset) - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 24px 6rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--accent-tint) 0%, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-title {
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  font-weight: 400;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  pointer-events: none;
}

.wave-hero {
  bottom: 0;
  color: var(--light-tint);
}

/* ===== SECTIONS ===== */

.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6.5rem 0;
  }
}

section[id] {
  scroll-margin-top: calc(var(--banner-offset) + var(--nav-height) + 16px);
}

/* ===== TRUST ===== */

.trust {
  background: var(--light-tint);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.proof-sentence {
  font-size: clamp(1.35rem, 3.8vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text);
}

/* ===== SPIRITS ===== */

.spirits {
  background: var(--light);
}

.spirit-rows {
  margin-bottom: 4rem;
}

.spirit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.spirit-row:nth-child(even) .spirit-text {
  order: 2;
}

.spirit-row:nth-child(even) .spirit-image {
  order: 1;
}

.spirit-number {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.spirit-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.spirit-text p {
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.55;
}

.spirit-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}