:root {
  --green: #1A3A35;
  --green-deep: #15302A;
  --green-soft: #3A5B52;
  --rose: #B08A8A;
  --rose-deep: #8C6868;
  --cream: #EFEAE3;
  --cream-deep: #E3DCD2;
  --ink: #26231F;
  --ink-soft: rgba(38, 35, 31, 0.72);
  --ink-light: rgba(38, 35, 31, 0.55);
  --line: rgba(38, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

.nav {
  background: var(--green);
  color: var(--cream);
  padding: 22px clamp(24px, 5vw, 72px);
}

.nav-inner,
.section,
.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.brand-top {
  color: #fff;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: lowercase;
}

.brand-bottom {
  margin-top: 3px;
  color: #A68A8F;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  color: rgba(244, 239, 234, 0.9);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  text-decoration: none;
}

.nav-links a:last-child {
  background: var(--rose);
  color: #fff;
}

.hero {
  background: var(--green);
  color: var(--cream);
  padding: clamp(52px, 8vw, 96px) clamp(24px, 5vw, 72px) clamp(48px, 7vw, 84px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(230, 201, 208, 0.9);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  color: var(--green);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

h3 {
  color: var(--green);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16;
}

.accent {
  color: #A68A8F;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(244, 239, 234, 0.82);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-card,
.card,
.area-card {
  border: 1px solid var(--line);
  border-radius: 28px;
}

.hero-card {
  background: var(--cream);
  color: var(--green);
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.hero-card p,
.section p,
.card p,
.area-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.hero-card p {
  margin: 12px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 52px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: var(--rose);
  color: #fff;
}

.button.secondary {
  border: 1px solid rgba(244, 239, 234, 0.24);
  color: var(--cream);
}

.section-wrap {
  padding: clamp(44px, 8vw, 84px) clamp(24px, 5vw, 72px);
}

.section-intro {
  max-width: 760px;
}

.section-intro p {
  margin: 18px 0 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.card {
  background: #fff;
  padding: 28px;
}

.card.dark {
  background: var(--green);
  color: var(--cream);
}

.card.dark h3 {
  color: var(--cream);
}

.card.dark p {
  color: rgba(244, 239, 234, 0.78);
}

.area-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: center;
  margin-top: 34px;
  background: var(--cream-deep);
  padding: 34px;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}

.quote {
  background: var(--green-deep);
  color: var(--cream);
}

.quote .section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: center;
}

.quote p {
  color: rgba(244, 239, 234, 0.84);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.35;
}

.footer {
  background: var(--green);
  color: var(--cream);
  padding: 38px clamp(24px, 5vw, 72px);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(244, 239, 234, 0.68);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(244, 239, 234, 0.78);
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav-inner,
  .hero-grid,
  .area-card,
  .quote .section {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

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

  .hero-card,
  .card,
  .area-card {
    border-radius: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
