:root {
  --bg: #0c1413;
  --bg-2: #0f1b1a;
  --ink: #f3efe6;
  --muted: rgba(243, 239, 230, 0.72);
  --accent: #19b89b;
  --accent-2: #8bd892;
  --highlight: #f5c46a;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #1d2a27 0%, #0f1b1a 45%, #0a0e0f 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  color: var(--highlight);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw 60px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  background: rgba(12, 20, 19, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 70px 0 40px;
}

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

h1, h2, h3 {
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 18px 0 16px;
}

.section {
  padding: 70px 0 20px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

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

.btn.primary {
  background: linear-gradient(135deg, #1fbfa5, #86d88d);
  color: #0c1413;
  box-shadow: 0 16px 40px rgba(31, 191, 165, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(31, 191, 165, 0.35);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--ink);
}

.btn.link {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 16px;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
}

.panel-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.duration {
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 10px;
}

.grid {
  display: grid;
  gap: 20px;
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.steps {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step span {
  color: var(--highlight);
  font-weight: 700;
  font-size: 1.1rem;
}

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

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
}

.list li::before {
  content: "•";
  color: var(--accent-2);
  margin-right: 10px;
}

.list li {
  display: flex;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  border-radius: 18px;
}

.contact-card a {
  color: #ffffff;
  font-weight: 700;
}

.note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 191, 165, 0.5);
  outline-offset: 2px;
}

.footer {
  padding: 40px 0 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 40px;
  }

  .btn {
    width: 100%;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }
}
