@charset "utf-8";

:root {
  --cream: #f6f1e8;
  --paper: #fffcf7;
  --sand: #eadfce;
  --forest: #1f3d34;
  --moss: #2f5d4e;
  --sage: #4a7c6a;
  --ink: #24302c;
  --muted: #5d6b65;
  --line: rgba(31, 61, 52, 0.12);
  --shadow: 0 18px 50px rgba(31, 61, 52, 0.12);
  --radius: 22px;
  --header: 84px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--moss);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 0.7rem;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--forest);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 20;
}

.skip-link:focus {
  top: 0.6rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 2rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(31, 61, 52, 0.06);
}

.nav-wrap {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--forest);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 30%, #f4ead6 0 28%, transparent 29%),
    linear-gradient(160deg, #4a7c6a, #1f3d34);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--sand);
}

.nav-cta {
  background: var(--forest) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--forest);
  border-radius: 2px;
}

.hero {
  position: relative;
  padding: 2.5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 8% 8% auto auto;
  width: 42vw;
  height: 42vw;
  max-width: 460px;
  max-height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, #d8e6df, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--sage);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--moss);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  box-shadow: inset 0 0 0 1.5px var(--forest);
}

.hero-art {
  margin: 0;
  background: var(--paper);
  border-radius: 36px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.trust {
  background: var(--forest);
  color: #f4ead6;
  padding: 1.6rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.trust-title,
.trust h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 0.2rem;
}

.trust p {
  margin: 0;
  color: #d5e2db;
  font-size: 0.95rem;
}

.section {
  padding: 5rem 0;
  scroll-margin-top: calc(var(--header) + 12px);
}

.section-alt {
  background: #efe7d8;
}

.section-head,
.section-head {
  max-width: 38rem;
  margin-bottom: 2.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.quote-card,
.quote-card,
.card,
.contact-form {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card,
.quote-card {
  padding: 2rem;
}

blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--forest);
}

blockquote p {
  margin-bottom: 0.6rem;
}

blockquote footer {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--muted);
}

.pill-list,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li,
.pill-list li {
  background: var(--sand);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.card {
  padding: 1.8rem;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon,
.card-icon {
  width: 48px;
  height: 48px;
  color: var(--sage);
  margin-bottom: 1rem;
}

.card-link,
.card a {
  font-weight: 600;
  text-decoration: none;
}

.faq details {
  background: var(--paper);
  border-radius: 16px;
  margin-bottom: 0.8rem;
  padding: 0.4rem 1.1rem 0.2rem;
  box-shadow: 0 8px 24px rgba(31, 61, 52, 0.05);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.9rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--sage);
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  color: var(--muted);
  padding-bottom: 0.9rem;
}

.contact-points {
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-form {
  padding: 1.6rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--sage);
  border-color: transparent;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form-note,
.form-note {
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #dce8e2;
  color: var(--forest);
}

.form-note.is-error,
.form-note.is-error {
  background: #f3ddd6;
  color: #7a2e22;
}

.map-wrap,
.map-wrap {
  margin-top: 2.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  background: var(--forest);
  color: #d5e2db;
  padding: 2rem 0;
}

.footer-wrap,
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wrap p,
.footer-wrap p {
  margin: 0;
}

.site-footer strong {
  color: #fff;
}

@media (max-width: 860px) {
  .hero-grid,
  .split,
  .cards,
  .trust-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header);
    background: var(--cream);
    display: none;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open,
  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-art,
  .hero-art,
  .hero-art {
    order: -1;
    max-width: 360px;
  }
}
