:root {
  --ink: #17201c;
  --muted: #68746f;
  --paper: #f7f1e6;
  --surface: #fffdf8;
  --line: rgba(23, 32, 28, 0.12);
  --moss: #315f4b;
  --moss-dark: #203f34;
  --amber: #f0b43c;
  --brick: #c95f3d;
  --mint: #dcefdc;
  --shadow: 0 22px 55px rgba(23, 32, 28, 0.13);
  --radius: 20px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(240, 180, 60, 0.25), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(49, 95, 75, 0.18), transparent 28%),
    linear-gradient(140deg, #fbf7ed 0%, #f1eee6 48%, #e9f0e7 100%);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--moss-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  border-bottom: 1px solid rgba(23, 32, 28, 0.08);
  background: rgba(247, 241, 230, 0.82);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 16px 22px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
}

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

.page-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding: 32px 22px 58px;
}

.hero {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.98fr) minmax(270px, 0.44fr);
  margin: 30px 0 44px;
}

.eyebrow {
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.3vw, 5.3rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
  margin: 0 0 20px;
  max-width: 850px;
}

.hero-copy > p:not(.eyebrow),
.section-lede,
.contact-panel p {
  color: var(--muted);
  font-size: 1.07rem;
  margin: 0;
  max-width: 760px;
}

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

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

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

.btn-primary {
  background: var(--moss);
  box-shadow: 0 13px 24px rgba(49, 95, 75, 0.24);
  color: #fff;
}

.btn-primary:hover {
  background: var(--moss-dark);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.hero-card,
.contact-panel,
.feature,
.work-card,
.price-card,
.process-grid article,
.faq-item,
.content-page {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 20px;
}

.hero-card span,
.work-card span,
.price-card span,
.process-grid span {
  color: var(--brick);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.hero-card li,
.content-page li {
  color: var(--muted);
}

.section {
  margin-top: 56px;
}

.section h2,
.contact-panel h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin: 0 0 14px;
}

.feature-grid,
.work-grid,
.pricing-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.feature-grid,
.pricing-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature,
.work-card,
.price-card,
.process-grid article,
.faq-item {
  box-shadow: none;
  padding: 18px;
}

.work-card {
  color: var(--ink);
  min-height: 190px;
  text-decoration: none;
}

.work-card:hover {
  border-color: rgba(49, 95, 75, 0.4);
  transform: translateY(-2px);
}

.feature h3,
.work-card h3,
.price-card h3,
.process-grid h3,
.faq-item h3 {
  font-size: 1.08rem;
  margin: 9px 0 8px;
}

.feature p,
.work-card p,
.price-card p,
.process-grid p,
.faq-item p,
.fine-print {
  color: var(--muted);
  margin: 0;
}

.price-card {
  display: grid;
  gap: 8px;
}

.price-card strong {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.price-card.is-featured {
  background: var(--moss-dark);
  color: #fff;
}

.price-card.is-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.price-card.is-featured span {
  color: var(--amber);
}

.fine-print {
  font-size: 0.94rem;
  margin-top: 14px;
}

.process-grid span {
  align-items: center;
  background: var(--amber);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.contact-panel {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 58px;
  padding: 24px;
}

.content-page {
  margin-top: 28px;
  padding: 28px;
}

.content-page h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.055em;
  margin: 0 0 18px;
}

.content-page h2 {
  margin-top: 28px;
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(23, 32, 28, 0.1);
  color: var(--muted);
  margin-top: 48px;
  padding: 22px;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 920px) {
  .hero,
  .feature-grid,
  .work-grid,
  .pricing-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-shell {
    padding-inline: 14px;
  }

  .hero-card,
  .contact-panel,
  .content-page {
    padding: 16px;
  }
}
