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

:root {
  --sand: #f6f1e8;
  --ink: #1b1e21;
  --muted: #5a6168;
  --accent: #2f5d57;
  --accent-soft: #c7d7d3;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(24, 27, 30, 0.12);
}

body {
  font-family: "Space Grotesk", "Noto Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(140deg, #fff6ea 0%, #f3efe6 55%, #edf2f1 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 93, 87, 0.16), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(192, 107, 42, 0.18), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(47, 93, 87, 0.12), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 18px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "Newsreader", "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
}

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

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--accent-soft);
  color: var(--ink);
}

.hero {
  padding: 70px 0 40px;
  display: grid;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Newsreader", "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

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

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.services {
  padding: 40px 0 80px;
  display: grid;
  gap: 28px;
}

.section-head h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.section-head p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  min-height: 150px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.card p {
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(27, 30, 33, 0.08);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.1s;
}

.reveal:nth-child(3) {
  animation-delay: 0.2s;
}

.reveal:nth-child(4) {
  animation-delay: 0.3s;
}

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

@media (max-width: 720px) {
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 40px;
  }

  .footer-row {
    flex-direction: column;
  }
}
