:root {
  --cream: #f7f3ee;
  --cream-deep: #efe6da;
  --white: #ffffff;
  --text: #2d2a26;
  --muted: #6f6961;
  --line: #e3d8c9;
  --sage: #aab7a5;
  --sage-deep: #7c8f80;
  --sand: #d8c3ad;
  --accent: #6f8a73;
  --accent-dark: #5f7662;
  --max: 1180px;
  --shadow: 0 16px 40px rgba(58, 49, 40, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, textarea, button { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  background: var(--sage-deep);
  color: #fff;
  font-size: 0.92rem;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-inner p { margin: 0; }
.topbar-inner a { font-weight: 600; }

.site-header {
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(111, 105, 97, 0.12);
}
.site-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #dfe7dc 0%, #a6b4a1 100%);
  box-shadow: inset 0 0 0 1px rgba(95, 118, 98, 0.16);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-family: "Libre Baskerville", serif;
  font-size: 1.2rem;
}
.brand-text span {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  background: linear-gradient(180deg, rgba(239,230,218,0.9) 0%, rgba(247,243,238,1) 100%);
  padding: 42px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 40px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}
.hero h1,
.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  line-height: 1.12;
}
.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5.5vw, 4.9rem);
}
.hero-lead {
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}
.button-primary {
  background: var(--accent);
  color: #fff;
}
.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(45,42,38,0.16);
}
.button-full { width: 100%; }

.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-photo,
.section-image {
  width: 100%;
  min-height: 460px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.hero-photo {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.75), transparent 28%),
    linear-gradient(135deg, #c8d3c3 0%, #9dae9c 40%, #dccab5 100%);
}
.image-soft-1 {
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.7), transparent 20%),
    linear-gradient(135deg, #d9c7b4 0%, #f3e7d8 50%, #b7c4b1 100%);
}
.image-soft-2 {
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,0.72), transparent 20%),
    linear-gradient(135deg, #b9c5b3 0%, #ece2d6 48%, #d4bca3 100%);
}

.intro-strip {
  background: var(--white);
  border-top: 1px solid rgba(111, 105, 97, 0.08);
  border-bottom: 1px solid rgba(111, 105, 97, 0.08);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 0;
}
.intro-grid p { margin: 0; }
.intro-number {
  margin-bottom: 6px !important;
  font-family: "Libre Baskerville", serif;
  font-size: 1.65rem;
  color: var(--accent-dark);
}
.intro-grid div p:last-child { color: var(--muted); }

.about-section,
.team-section,
.contact-section {
  padding: 84px 0;
}
.services-section,
.testimonial-section {
  padding: 84px 0;
  background: var(--white);
}
.section-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}
.section-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
}
.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}
.section-copy p,
.contact-copy p {
  color: var(--muted);
}
.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-dark);
  font-weight: 600;
}

.section-heading.center,
.testimonial-wrap,
.contact-copy {
  text-align: center;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.services-grid article {
  padding: 28px 24px;
  background: #fcfaf7;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.services-grid h3 {
  margin: 0 0 10px;
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  font-weight: 400;
}
.services-grid p,
.team-points {
  color: var(--muted);
}

.team-points {
  margin: 20px 0 0;
  padding-left: 18px;
}
.team-points li + li { margin-top: 8px; }

.testimonial-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.testimonial-wrap blockquote {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.4;
  color: var(--text);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 480px);
}
.contact-form {
  padding: 32px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form span {
  font-size: 0.92rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px 15px;
  color: var(--text);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(111, 138, 115, 0.12);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .section-grid.reverse,
  .contact-grid,
  .services-grid,
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-grid,
  .section-grid.reverse,
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .site-header-inner,
  .site-nav,
  .hero-actions,
  .intro-grid,
  .services-grid {
    display: grid;
  }
  .topbar-inner,
  .site-header-inner,
  .site-nav {
    gap: 12px;
  }
  .site-header-inner {
    padding: 18px 0;
  }
  .site-nav {
    justify-items: start;
  }
  .hero,
  .about-section,
  .team-section,
  .services-section,
  .testimonial-section,
  .contact-section {
    padding: 56px 0;
  }
  .hero-photo,
  .section-image {
    min-height: 320px;
  }
  .contact-form {
    padding: 22px;
  }
}
