:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #5b6472;
  --accent: #2f7d6f;
  --accent-dark: #205d51;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #eef7f5, #f9fcff);
  padding-bottom: 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.brand {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-dark);
  text-decoration: none;
}

.phone-number {
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 1rem 0 0;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 1rem;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 24px rgba(47, 125, 111, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--border);
}

.hero-image-card {
  background: var(--surface);
  padding: 1.7rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.hero-image-card img {
  border-radius: 18px;
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: #edf6f4;
}

.section-hosting {
  text-align: center;
  padding: 3rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.about-badge {
  background: var(--accent-dark);
  color: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.about-badge span {
  font-size: 2.4rem;
  font-weight: 800;
}

.footer {
  background: #122126;
  color: white;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 800px) {
  .hero-grid,
  .about-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-image-card img {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem 0.9rem;
  }

  .hero {
    padding-bottom: 2.5rem;
  }

  .hero-actions,
  .footer-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .footer-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-image-card img {
    height: 250px;
  }

  .about-badge {
    padding: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }
}
