:root {
  --bg: #f6f1e8;
  --bg-soft: #efe7da;
  --ink: #1c1b19;
  --muted: #5b5750;
  --accent: #0f766e;
  --accent-strong: #0a5b55;
  --accent-warm: #f2c14e;
  --card: #ffffff;
  --line: #e2d8c7;
  --shadow: 0 18px 40px rgba(36, 30, 22, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8ec 10%, var(--bg) 45%, #efe3d1 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(15, 118, 110, 0.08), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(242, 193, 78, 0.12), transparent 42%),
    radial-gradient(circle at 85% 85%, rgba(15, 118, 110, 0.08), transparent 42%);
  pointer-events: none;
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 220px;
}

.site-nav {
  display: flex;
  gap: 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.2s ease;
}

.site-nav a.active::after,
.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
}

main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  padding: 3rem 0 4rem;
  align-items: center;
}

.hero-content {
  grid-column: span 7;
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 0.8rem 0 1.2rem;
  line-height: 1.1;
}

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

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.25);
}

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

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.hero-stats strong {
  font-size: 1.4rem;
  display: block;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  grid-column: span 5;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.hero-card h2 {
  font-family: "Fraunces", Georgia, serif;
  margin-top: 0;
}

.hero-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.section {
  padding: 4rem 0 2rem;
}

.section-heading h2 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0.5rem 0 1.4rem;
  font-size: 2.1rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.value-tags span {
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

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

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-warm);
}

.service-card h3 {
  margin-top: 0;
}

.service-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.highlight {
  margin: 3rem 0;
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.12), rgba(242, 193, 78, 0.18));
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.highlight h2 {
  font-family: "Fraunces", Georgia, serif;
  margin-top: 0;
}

.highlight-metric {
  background: var(--card);
  border-radius: 20px;
  padding: 1.4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.highlight-metric strong {
  font-size: 2rem;
  display: block;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.news-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.news-image {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-date {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
}

.cta {
  margin: 4rem 0;
  padding: 2.6rem;
  background: var(--card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  gap: 2rem;
}

.cta h2 {
  font-family: "Fraunces", Georgia, serif;
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 1.5rem 1rem;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--muted);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  max-width: 640px;
}

.footer-logo {
  width: 70px;
  padding-bottom: 15px;
}

.footer-info {
  display: grid;
  gap: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  font-weight: 600;
}

.footer-links a {
  color: var(--muted);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  width: 100%;
}

.policy {
  max-width: 780px;
}

.policy h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.policy h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.7;
}

.scroll-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(2px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-section,
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-card {
    grid-column: auto;
  }

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

  .highlight,
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: var(--card);
    border-radius: 18px;
    padding: 1rem 1.4rem;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
