:root {
  --navy: #08233f;
  --navy-dark: #03182d;
  --cream: #fbf7f1;
  --pink: #d77797;
  --green: #6f956e;
  --purple: #a675a8;
  --orange: #ed9b37;
  --blue: #4e91b8;
  --text: #182538;
  --muted: #5e6572;
  --border: rgba(215, 119, 151, 0.45);
  --shadow: 0 24px 60px rgba(8, 35, 63, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7vw;
  background: var(--cream);
  border-bottom: 1px solid rgba(8, 35, 63, 0.12);
}

.nav-logo {
  width: 145px;
  max-width: 42vw;
  display: block;
}

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

nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

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

.socials a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 36px;
  padding: 70px 7vw 80px;
  background:
    radial-gradient(circle at 50% 20%, rgba(215,119,151,0.12), transparent 34%),
    linear-gradient(135deg, var(--cream), #fffaf5);
  color: var(--navy);
  text-align: center;
}

.eyebrow {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  font-size: 0.78rem;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  max-width: 680px;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 640px;
  margin: 24px auto;
}
.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.primary {
  background: var(--pink);
  color: white;
}

.secondary {
  border: 1px solid rgba(8, 35, 63, 0.25);
  color: var(--navy);
  background: rgba(255,255,255,0.55);
}

.hero-image {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-image img {
  width: min(100%, 280px);
  max-height: 360px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.focus-section {
  padding: 70px 7vw 40px;
}

.centered {
  text-align: center;
}

.focus-section h2 {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  min-height: 175px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.featured {
  background: linear-gradient(135deg, rgba(215,119,151,0.12), rgba(111,149,110,0.12));
}

.coming-soon {
  margin: 40px 7vw 70px;
  padding: 34px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.coming-soon img {
  width: 100%;
}

.coming-soon h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
}

.coming-soon p {
  line-height: 1.65;
  color: var(--muted);
}

footer {
  padding: 34px 7vw;
  background: var(--navy-dark);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .coming-soon {
    grid-template-columns: 1fr;
  }

  .coming-soon img {
    max-width: 220px;
  }
}
