:root {
  --mint: #8bc9bf;
  --mint-soft: #d9f1ec;
  --mint-deep: #2f8b7f;
  --paper: #f8faf9;
  --card: #ffffff;
  --ink: #1b2b2b;
  --muted: #536363;
  --line: #deece8;
  --shadow: 0 20px 60px rgba(24, 51, 47, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, #eff8f5 0%, rgba(239, 248, 245, 0) 30%),
    radial-gradient(circle at 85% 10%, #f4fcfa 0%, rgba(244, 252, 250, 0) 25%),
    var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

.bg-orb-one {
  width: 260px;
  height: 260px;
  background: #c6ebe3;
  top: -70px;
  right: -30px;
}

.bg-orb-two {
  width: 210px;
  height: 210px;
  background: #e8f7f2;
  bottom: 90px;
  left: -80px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 228, 221, 0.5);
  background: rgba(248, 250, 249, 0.86);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--mint);
  color: var(--mint-deep);
  font-family: "Fraunces", serif;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-text {
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--mint-deep);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 600;
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  color: var(--mint-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.74rem;
  margin-bottom: 0.95rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--muted);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.88rem 1.3rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--mint);
  color: #10302e;
  box-shadow: 0 12px 28px rgba(74, 156, 144, 0.25);
}

.btn-primary:hover {
  background: #7cbfb4;
}

.btn-secondary {
  border-color: var(--mint);
  color: var(--mint-deep);
  background: #f5fbf9;
}

.hero-art {
  display: grid;
  place-items: center;
}

.hero-art img {
  width: min(430px, 100%);
  height: auto;
  display: block;
  border-radius: 50%;
  animation: floatIn 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.services {
  padding: 0.5rem 0 3.8rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.about {
  padding: 4.5rem 0;
  background: linear-gradient(120deg, #eff8f5 0%, #f8faf9 55%, #eef8f4 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: center;
}

.about h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
}

.about p {
  color: var(--muted);
}

.resources {
  padding: 4rem 0;
}

.resource-list {
  display: grid;
  gap: 0.8rem;
  max-width: 860px;
  margin: 0 auto;
}

.resource {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 1rem 1.1rem;
  font-weight: 500;
  color: #264a45;
  transition: border-color 0.2s ease, transform 0.25s ease;
}

.resource:hover {
  border-color: var(--mint);
  transform: translateX(4px);
}

.contact {
  padding: 0.5rem 0 4.8rem;
}

.contact-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 4vw, 2.4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  margin-bottom: 0.4rem;
}

.contact-box p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 700ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

.delay-3 {
  animation-delay: 320ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 4.2rem;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: none;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav.open {
    display: flex;
  }

  .brand-text {
    font-size: 0.82rem;
    max-width: 44vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
