:root {
  --bg: #f7f2ea;
  --bg-muted: #eee6db;
  --text: #18221f;
  --text-muted: #61706a;
  --line: rgba(24, 34, 31, 0.12);
  --card: rgba(255, 252, 247, 0.78);
  --accent: #4f6f63;
  --accent-dark: #263d36;
  --accent-soft: #dfe8df;
  --shadow: 0 24px 80px rgba(24, 34, 31, 0.1);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(223, 232, 223, 0.75), transparent 32rem),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 42%, #f4eee6 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

p {
  color: var(--text-muted);
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.7rem, 6.2vw, 4.9rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.section-muted {
  background: rgba(255, 252, 247, 0.48);
  border-block: 1px solid var(--line);
}

.skip-link {
  background: var(--text);
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-140%);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  backdrop-filter: blur(20px);
  background: rgba(247, 242, 234, 0.78);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 720;
  gap: 10px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--text);
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  height: 34px;
  justify-content: center;
  letter-spacing: -0.06em;
  width: 34px;
}

.brand-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: block;
  height: 34px;
  object-fit: cover;
  width: 34px;
}

.nav-links,
.nav-actions {
  align-items: center;
  display: flex;
  gap: 22px;
}

.nav-links a,
.language-link {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.nav-links a:hover,
.language-link:hover {
  color: var(--text);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(79, 111, 99, 0.28);
  text-underline-offset: 5px;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.button {
  align-items: center;
  background: var(--text);
  border: 1px solid var(--text);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(24, 34, 31, 0.16);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.hero {
  padding-top: clamp(72px, 9vw, 124px);
}

.hero-grid {
  align-items: end;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.hero-copy {
  display: grid;
  gap: 26px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-text {
  color: #40504a;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  max-width: 740px;
}

.location {
  color: var(--text-muted);
}

.location-card {
  background: rgba(223, 232, 223, 0.62);
  border: 1px solid rgba(79, 111, 99, 0.16);
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 720;
  margin-bottom: 18px;
  padding: 8px 12px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 10px;
}

.hero-card,
.quiet-panel,
.approach-card,
.cta-panel,
.service-card,
.outcome-card,
.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius);
  padding: 24px;
}

.portrait-card {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(223, 232, 223, 0.8)),
    radial-gradient(circle at 50% 20%, rgba(79, 111, 99, 0.35), transparent 54%);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.portrait-card img {
  filter: saturate(0.92) contrast(1.02);
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.portrait-glow {
  background: rgba(79, 111, 99, 0.16);
  border-radius: 999px;
  filter: blur(26px);
  height: 160px;
  position: absolute;
  width: 160px;
}

.portrait-initials {
  color: var(--accent-dark);
  font-size: 4.2rem;
  font-weight: 780;
  letter-spacing: -0.12em;
  position: relative;
}

.proof-list,
.check-list,
.pill-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.proof-list li,
.check-list li {
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
}

.proof-list li::before,
.check-list li::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 4px;
  position: absolute;
  top: 0.78em;
  width: 8px;
}

.split {
  align-items: start;
  display: grid;
  gap: clamp(36px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.split > div:first-child,
.section-heading {
  display: grid;
  gap: 18px;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.narrow {
  max-width: 680px;
}

.outcome-grid,
.service-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.outcome-card,
.service-card,
.stat-card {
  border-radius: var(--radius-sm);
  padding: 24px;
}

.outcome-card span {
  color: var(--accent);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.service-card {
  display: grid;
  gap: 16px;
  min-height: 240px;
}

.ai-section {
  background:
    linear-gradient(135deg, rgba(24, 34, 31, 0.96), rgba(38, 61, 54, 0.95)),
    var(--text);
  color: #fff;
}

.ai-section p,
.ai-section .check-list li {
  color: rgba(255, 255, 255, 0.74);
}

.ai-section .eyebrow {
  color: #a8c3b8;
}

.quiet-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 28px;
}

.approach-card {
  align-items: start;
  border-radius: var(--radius);
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 0.8fr;
  padding: clamp(28px, 6vw, 58px);
}

.approach-card > div {
  display: grid;
  gap: 18px;
}

.pill-list {
  align-content: start;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.pill-list li {
  background: var(--accent-soft);
  border: 1px solid rgba(79, 111, 99, 0.18);
  border-radius: 999px;
  color: var(--accent-dark);
  font-weight: 700;
  padding: 10px 14px;
}

.stat-card {
  display: grid;
  gap: 10px;
}

.stat-card strong {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.08em;
  line-height: 1;
}

.stat-card span {
  color: var(--text-muted);
}

.about-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.skills-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: 24px;
}

.faq-section {
  padding-top: clamp(24px, 6vw, 72px);
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.faq-card {
  background: rgba(255, 252, 247, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: grid;
  gap: 12px;
  padding: 24px;
}

.faq-card h3 {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.faq-card h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.final-cta {
  padding-bottom: clamp(84px, 12vw, 160px);
}

.cta-panel {
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  justify-items: start;
  max-width: calc(var(--container) - 48px);
  padding: clamp(32px, 7vw, 72px);
}

.cta-panel p {
  max-width: 660px;
}

.site-footer {
  background: var(--text);
  color: #fff;
  padding: 42px 0;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  align-items: start;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.footer-brand {
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand .brand-logo {
  border-color: rgba(255, 255, 255, 0.18);
}

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

.footer-partner-badge {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  display: block;
  height: 34px;
  object-fit: cover;
  opacity: 0.9;
  width: 34px;
}

.legal-hero {
  padding-bottom: 40px;
}

.narrow-page {
  max-width: 840px;
}

.legal-content {
  padding-top: 24px;
}

.legal-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding: 32px 0;
}

.legal-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.legal-section p {
  color: #42524d;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 18px;
    padding-top: 18px;
  }

  .nav-links {
    display: none;
  }

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

  .hero-grid,
  .split,
  .approach-card,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 420px;
  }

  .outcome-grid,
  .service-grid,
  .faq-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 64px 0;
  }

  .button-row,
  .button {
    width: 100%;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
