﻿:root {
  --ink: #1e2421;
  --moss: #143b36;
  --teal: #1d6c63;
  --sand: #f4efe5;
  --mist: #e8f0ec;
  --parchment: #f8f3e9;
  --brass: #b88a3b;
  --line: #d4caba;
  --pine: #0f4c46;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(30, 36, 33, 0.08);
  --shadow-tight: 0 10px 22px rgba(15, 76, 70, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --site-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 85% 10%, rgba(184, 138, 59, 0.16), transparent 24%),
    radial-gradient(circle at 10% 14%, rgba(29, 108, 99, 0.14), transparent 22%),
    linear-gradient(180deg, var(--sand), #efe7d7 100%);
}

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

img {
  max-width: 100%;
}

button {
  font: inherit;
}

.site-shell {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 229, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 202, 186, 0.72);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--pine));
  box-shadow: var(--shadow-tight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.22rem;
}

.brand-copy span {
  color: rgba(30, 36, 33, 0.64);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.site-nav button {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(30, 36, 33, 0.78);
  font-weight: 700;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav button:hover {
  background: rgba(232, 240, 236, 0.9);
  color: var(--pine);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--pine);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
}

main section {
  padding: 28px 0;
}

.hero {
  padding: 52px 0 36px;
}

.hero-grid,
.contact-strip,
.footer-simple,
.feature-grid,
.metric-grid,
.duo-grid,
.faq-grid,
.profile-grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: start;
}

.hero-copy h1,
.page-hero h1,
.section-title,
.quote-band p {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 11ch;
}

.page-hero h1 {
  max-width: 15ch;
}

.hero-copy p,
.page-hero p,
.lead,
.card-copy,
.list-copy,
.contact-copy,
.simple-list li {
  color: rgba(30, 36, 33, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-copy p,
.page-hero p,
.lead {
  max-width: 62ch;
}

.kicker {
  margin: 0 0 14px;
  color: rgba(30, 36, 33, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.inline-actions,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 26px 0 16px;
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--pine), var(--moss));
  box-shadow: var(--shadow-tight);
}

.btn-secondary {
  color: var(--pine);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.btn-ghost {
  color: var(--pine);
  background: rgba(232, 240, 236, 0.82);
  border-color: rgba(15, 76, 70, 0.14);
}

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

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(248, 243, 233, 0.95);
  border: 1px solid var(--line);
  color: rgba(30, 36, 33, 0.82);
  font-weight: 700;
}

.hero-proof,
.page-hero,
.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 233, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-proof,
.page-hero,
.contact-card {
  padding: 28px;
}

.hero-proof {
  display: grid;
  gap: 18px;
}

.proof-accent {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--pine), var(--moss));
  color: var(--white);
}

.proof-accent h2,
.quote-band p,
.contact-card h3,
.feature-block h3,
.metric-block h3,
.copy-block h3,
.faq-block h3,
.profile-block h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.proof-accent h2 {
  font-size: 2rem;
  line-height: 1.05;
}

.proof-accent p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-item {
  border-top: 1px solid rgba(212, 202, 186, 0.8);
  padding-top: 12px;
}

.proof-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.proof-item strong,
.contact-mail,
.simple-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

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

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

.duo-grid,
.contact-strip,
.footer-simple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.profile-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.feature-block,
.metric-block,
.copy-block,
.faq-block,
.profile-block {
  padding: 8px 0;
}

.feature-block h3,
.metric-block h3,
.copy-block h3,
.faq-block h3,
.profile-block h3,
.contact-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.1;
}

.metric-block h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  max-width: 13ch;
}

.section-copy {
  max-width: 56ch;
}

.simple-list {
  margin: 0;
  padding-left: 20px;
}

.simple-list li {
  margin: 0 0 10px;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(232, 240, 236, 0.9);
  color: var(--pine);
  font-weight: 800;
}

.quote-band {
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--pine), var(--moss));
  color: var(--white);
}

.quote-band p {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.16;
}

.page-hero p {
  margin-bottom: 0;
}

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

.contact-mail {
  color: var(--pine);
  font-size: 1.18rem;
}

.copy-button {
  width: fit-content;
}

.copy-feedback {
  color: rgba(30, 36, 33, 0.62);
  font-size: 0.94rem;
  min-height: 1.2em;
}

.footer {
  padding: 18px 0 40px;
}

.footer-simple {
  align-items: end;
  border-top: 1px solid rgba(212, 202, 186, 0.7);
  padding-top: 18px;
}

.footer-meta,
.footer-nav,
.footer-nav a {
  color: rgba(30, 36, 33, 0.68);
  font-size: 0.96rem;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .profile-grid,
  .feature-grid,
  .metric-grid,
  .duo-grid,
  .faq-grid,
  .contact-strip,
  .footer-simple {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .section-title,
  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(248, 243, 233, 0.98);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav button {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(var(--site-width), calc(100% - 24px));
  }

  .hero,
  main section,
  .footer {
    padding-top: 18px;
  }

  .hero-actions,
  .inline-actions,
  .tag-row {
    flex-direction: column;
  }

  .btn,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
  }

  .site-header__inner,
  .footer-simple {
    align-items: start;
    flex-direction: column;
  }

  .page-hero,
  .hero-proof,
  .contact-card {
    padding: 22px;
  }

  .footer-nav {
    justify-content: start;
  }
}
