:root {
  --ink: #101417;
  --muted: #627078;
  --line: #e0e6e2;
  --paper: #fbfcf8;
  --white: #ffffff;
  --green: #087a5b;
  --green-dark: #055940;
  --soft: #eff8f3;
  --gold: #b98424;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.demo-bar {
  padding: 10px 18px;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.demo-bar a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links > a:not(.nav-cta) {
  padding: 10px;
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-dark);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.tag {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.trust-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(16, 20, 23, 0.12);
  overflow: hidden;
}

.visual {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #10221d);
}

.beauty-visual {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(185, 132, 36, 0.22), transparent 26%),
    linear-gradient(135deg, #eff8f3, #f8f0e2);
}

.portrait-card {
  width: 210px;
  height: 240px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 26%, #f1d3bd 0 24%, transparent 25%),
    linear-gradient(180deg, transparent 0 44%, #087a5b 45% 100%);
  box-shadow: 0 24px 50px rgba(16, 20, 23, 0.14);
  position: relative;
  overflow: hidden;
}

.portrait-card::before,
.portrait-card::after {
  content: "";
  position: absolute;
  background: #101417;
  opacity: 0.18;
}

.portrait-card::before {
  width: 96px;
  height: 62px;
  border-radius: 50% 50% 36% 36%;
  top: 38px;
  left: 57px;
}

.portrait-card::after {
  width: 74px;
  height: 18px;
  border-radius: 999px;
  top: 118px;
  left: 68px;
  background: #b98424;
  opacity: 0.8;
}

.mini-card {
  position: absolute;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 20, 23, 0.12);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.mini-card.top {
  top: 34px;
  right: 24px;
}

.mini-card.bottom {
  left: 24px;
  bottom: 34px;
}

.visual span {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.13);
  font-size: 4rem;
  font-weight: 900;
}

.hero-card .details {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.details div,
.service-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.details div {
  padding: 14px;
}

.details strong {
  display: block;
  margin-bottom: 4px;
}

.details span,
.section p,
.service-card p,
.quote-card p {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 0;
}

.section h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.quote-card {
  padding: 20px;
}

.service-card h3,
.quote-card h3 {
  margin-bottom: 8px;
}

.price {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 850;
}

.service-card small {
  color: var(--green-dark);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.answer-list,
.visit-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

.answer-list article,
.visit-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.answer-list strong,
.visit-grid strong {
  display: block;
  margin-bottom: 6px;
}

.answer-list span,
.visit-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.review-grid {
  grid-template-columns: repeat(2, 1fr);
}

.quote-card.small {
  display: block;
  background: var(--white);
}

.quote-card.small strong {
  display: block;
  margin-top: 14px;
}

.visit-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.quote-section {
  padding-bottom: 64px;
}

.quote-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--soft);
}

.builder-note {
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
}

.builder-note a {
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

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

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }
}
