/* ========================================
   STOCK PHOTO SOURCES — SAVE FOR PURCHASE
   ========================================
   1. Mother holding baby (hero):
      https://www.pexels.com/photo/mother-holding-her-baby-3270224/
      Photographer: Kristina Paukshtite

   2. Child blowing birthday candles:
      https://www.pexels.com/photo/little-birthday-girl-blowing-out-candles-6343199/
      Photographer: Arina Krasnikova

   3. Teenager smiling portrait:
      https://www.pexels.com/photo/a-young-teenager-smiling-16160800/
      Photographer: (Pexels contributor)

   4. Family looking at pictures together:
      https://www.pexels.com/photo/a-family-looking-at-pictures-8848790/
      Photographer: cottonbro studio

   5. Father with graduate daughter:
      https://www.pexels.com/photo/portrait-of-father-with-graduate-daughter-18547249/
      Photographer: (Pexels contributor)

   6. Family looking at photo album:
      https://www.pexels.com/photo/photograph-of-a-family-looking-at-a-photo-album-6667307/
      Photographer: cottonbro studio

   7. Happy children playing:
      https://www.pexels.com/photo/photograph-of-happy-children-1815257/
      Photographer: (Pexels contributor)

   8. Couple happy about positive pregnancy test:
      https://www.pexels.com/photo/a-couple-happy-about-positive-pregnancy-test-6463177/
      Photographer: Tima Miroshnichenko

   9. Teenage girl running in a track race:
      https://www.pexels.com/photo/teenage-girl-running-in-a-race-23371782/
      Photographer: Raphaël David
   ======================================== */

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

:root {
  --cream: #FDF8F3;
  --warm-white: #FFFCF9;
  --blush: #C9A090;
  --blush-light: #E4CFC7;
  --blush-wash: #F3E8E3;
  --sage: #7E9474;
  --sage-light: #C0CEAB;
  --charcoal: #2F2926;
  --warm-brown: #5C4E44;
  --warm-gray: #8A7C73;
  --gold: #BFA16E;
  --gold-light: #DBC99E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Grain Overlay ---- */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ---- Selection ---- */
::selection {
  background: var(--blush-light);
  color: var(--charcoal);
}

/* ---- Utility ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.4s ease;
}

.site-header.scrolled {
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(47, 41, 38, 0.06);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.logo span {
  color: var(--blush);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-brown);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blush);
  transition: width 0.4s var(--ease-out-expo);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
  filter: saturate(0.7);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(47, 41, 38, 0.3) 0%,
      rgba(47, 41, 38, 0.1) 40%,
      rgba(47, 41, 38, 0.5) 80%,
      rgba(47, 41, 38, 0.85) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s var(--ease-out-expo) forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--ease-out-expo) forwards;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush-light);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s var(--ease-out-expo) forwards;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0;
  animation: fadeUp 1s 0.9s var(--ease-out-expo) forwards;
  cursor: pointer;
  background: none;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s var(--ease-out-expo) forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   SECTION SHARED
   =========================== */
section {
  padding: 7rem 2rem;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.section-heading em {
  font-style: italic;
  font-weight: 400;
}

.section-body {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300;
}

/* ===========================
   INTRO / STORY
   =========================== */
.intro {
  background: var(--warm-white);
  text-align: center;
  padding: 8rem 2rem;
}

.intro .section-body {
  margin: 0 auto 4rem;
  max-width: 600px;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.moment-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.moment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(47, 41, 38, 0.1);
}

.moment-card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.moment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.moment-card:hover .moment-card-img img {
  transform: scale(1.04);
}

.moment-card-body {
  padding: 1.75rem 1.5rem;
}

.moment-card-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.5rem;
}

.moment-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.moment-card-text {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================
   JOURNEY / TIMELINE
   =========================== */
.journey {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.journey-header {
  text-align: center;
  margin-bottom: 5rem;
}

.journey-header .section-body {
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--blush-light) 10%, var(--blush-light) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blush);
  border: 3px solid var(--cream);
  z-index: 2;
  box-shadow: 0 0 0 4px var(--blush-light);
}

.timeline-content {
  width: calc(50% - 3rem);
  padding: 0 1rem;
}

.timeline-content .timeline-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.75;
  font-weight: 300;
}

.timeline-image {
  width: calc(50% - 3rem);
  padding: 0 1rem;
}

.timeline-image img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(47, 41, 38, 0.08);
}

/* ===========================
   TRUST / SECURITY
   =========================== */
.trust {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 144, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.trust-content .section-eyebrow {
  color: var(--gold);
}

.trust-content .section-heading {
  color: #fff;
}

.trust-content .section-body {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.trust-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: #fff;
}

.trust-feature p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  font-weight: 300;
}

.trust-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.trust-image-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.85);
}

.trust-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(47, 41, 38, 0.6) 100%);
}

.trust-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.trust-badge-text small {
  display: block;
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  background: var(--warm-white);
  text-align: center;
}

.how-it-works .section-body {
  margin: 0 auto 4rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blush-light), transparent);
}

.step {
  position: relative;
}

.step-number {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--blush-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-number span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blush);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
  margin: 0 auto;
}

/* ===========================
   EMOTIONAL QUOTE BREAK
   =========================== */
.quote-break {
  background: var(--blush-wash);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-break::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--blush-light);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.quote-attr {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  position: relative;
  z-index: 1;
}

/* ===========================
   CTA / BETA SIGNUP
   =========================== */
.cta {
  background: var(--cream);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--blush-wash);
  border-radius: 100px;
  margin-bottom: 2rem;
  border: 1px solid var(--blush-light);
}

.cta-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(126, 148, 116, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(126, 148, 116, 0); }
}

.cta-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

.cta .section-heading {
  margin-bottom: 1rem;
}

.cta .section-body {
  margin: 0 auto 3rem;
  text-align: center;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid var(--blush-light);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--warm-white);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.signup-form input[type="email"]::placeholder {
  color: var(--warm-gray);
  font-weight: 300;
}

.signup-form input[type="email"]:focus {
  border-color: var(--blush);
  box-shadow: 0 0 0 4px rgba(201, 160, 144, 0.15);
}

.signup-form button {
  padding: 1rem 2rem;
  background: var(--charcoal);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  white-space: nowrap;
}

.signup-form button:hover {
  background: var(--warm-brown);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47, 41, 38, 0.2);
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--warm-gray);
  font-weight: 300;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--charcoal);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  color: var(--blush);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  margin-bottom: 2rem;
}

.footer-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .moments-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 4.5rem;
  }

  .timeline-dot {
    left: 2rem;
    top: 0;
    transform: translateX(-50%);
  }

  .timeline-content,
  .timeline-image {
    width: 100%;
    padding: 0;
  }

  .timeline-image {
    margin-top: 1.5rem;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trust-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps::before {
    display: none;
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-form button {
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  section {
    padding: 5rem 1.25rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .site-header {
    padding: 1rem 1.25rem;
  }
}
