:root {
  --accent: #c9943a;
  --ink: #1e3054;
  --paper: #faf5eb;
  --line: #dcd8cb;
  --body: #5e6b7a;
  --navy: #1e3054;
  --cream-text: #f5f2e9;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

.landing-nav {
  border-bottom: 1px solid rgba(250, 245, 235, 0.2);
  background: linear-gradient(180deg, rgba(250, 245, 235, 0.95) 0%, rgba(250, 245, 235, 0.85) 68%, rgba(250, 245, 235, 0) 100%);
  box-shadow: 0 6px 18px rgba(30, 48, 84, 0.08);
  backdrop-filter: blur(14px);
}

.nav-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.hero-shell {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(30, 48, 84, 0.25), rgba(27, 46, 79, 0.74) 34%, rgba(19, 43, 79, 0.94) 66%, rgba(11, 23, 48, 0.98)),
    url("./assets/landing-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-panel {
  position: relative;
  z-index: 1;
  min-height: 680px;
}

.hero-content {
  display: flex;
  min-height: 680px;
  width: min(700px, 100%);
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 0 144px;
}

.hero-title {
  margin: 0;
  width: min(700px, 100%);
  color: #fff9f0;
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.15;
  text-shadow: 0 8px 26px rgba(7, 16, 31, 0.72);
}

.hero-subtitle {
  margin: 0;
  width: min(520px, 100%);
  color: #fff7ec;
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 0 6px 18px rgba(8, 17, 32, 0.69);
}

.cta-pill {
  display: inline-flex;
  min-height: 48px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 12px 26px rgba(8, 17, 32, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  padding: 12px 24px;
  text-decoration: none;
}

.section-block {
  padding: 120px;
}

.section-cream {
  background: var(--paper);
}

.section-navy {
  background: var(--navy);
}

.intro-grid,
.contact-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.body-copy {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.number-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.number-tag {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.number-copy {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.stat-card {
  padding: 24px 16px;
}

.stat-value {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
}

.stat-copy {
  margin: 12px 0 0;
  color: rgba(245, 242, 233, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.benefit-card {
  padding: 40px;
}

.benefit-number {
  margin: 0;
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
}

.benefit-title {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
}

.benefit-copy {
  margin: 16px 0 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
}

.field-shell,
.field-textarea {
  display: flex;
  align-items: center;
  border: 1px solid #cbccc9;
  background: var(--paper);
  color: var(--body);
  font-size: 14px;
  line-height: 1.43;
}

.field-shell {
  min-height: 40px;
  border-radius: 999px;
  padding: 8px 16px;
}

.field-textarea {
  min-height: 80px;
  border-radius: 16px;
  padding: 12px 16px;
}

.section-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--navy);
  padding: 80px 120px;
}

.service-cell {
  padding: 2rem 0;
}

.field {
  display: block;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 0.9rem 1rem;
}

.field::placeholder {
  color: var(--body);
}

.field:focus {
  border-color: var(--accent);
}

textarea.field {
  line-height: 1.5;
  resize: vertical;
  overflow-wrap: break-word;
}

.calendar-day {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-size: 0.95rem;
}

.calendar-day.muted {
  color: #a3acb7;
}

.calendar-day.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.time-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
}

.time-pill.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.post-card,
.resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.post-image,
.resource-image {
  min-height: 220px;
  background-position: center;
  background-size: cover;
}

.post-image.one {
  background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=900&q=80");
}

.post-image.two {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=900&q=80");
}

.post-image.three {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=80");
}

.post-image.four {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
}

.post-image.five {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=900&q=80");
}

.post-image.six {
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=900&q=80");
}

.resource-image.one {
  background-image: url("https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=900&q=80");
}

.resource-image.two {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=900&q=80");
}

.resource-image.three {
  background-image: url("https://images.unsplash.com/photo-1516321165247-4aa89a48be28?auto=format&fit=crop&w=900&q=80");
}

.resource-image.four {
  background-image: url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=900&q=80");
}

.resource-image.five {
  background-image: url("https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?auto=format&fit=crop&w=900&q=80");
}

.resource-image.six {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80");
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 72px 32px;
  }

  .hero-title {
    font-size: 44px;
  }

  .section-block,
  .section-trust {
    padding: 72px 32px;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .hero-shell,
  .hero-panel,
  .hero-content {
    min-height: 560px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .benefit-card,
  .stat-card {
    padding: 28px 0;
  }
}
