:root {
  --olive: #556945;
  --sage: #bdc4bc;
  --linen: #f2e4de;
  --stone: #c6c1bd;
  --mink: #84807c;
  --ink: #2f332c;
  --paper: #fffaf6;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(47, 51, 44, 0.12);
  --radius: 8px;
  --max: 1120px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.7rem 1rem;
  background: var(--olive);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 250, 246, 0.94);
  border-bottom: 1px solid rgba(132, 128, 124, 0.22);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--olive);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.4rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--olive);
}

.nav-links a.button {
  color: var(--white);
}

.nav-links a.button:hover {
  color: var(--white);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.15rem;
  border: 1px solid var(--olive);
  border-radius: var(--radius);
  background: var(--olive);
  color: var(--white);
  font: 700 0.94rem/1.2 "Inter", "Segoe UI", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.button:hover,
button:hover {
  background: #46573a;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.button.secondary:hover {
  background: rgba(85, 105, 69, 0.08);
}

.hero {
  min-height: calc(100svh - 220px);
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  align-items: center;
  background: var(--linen);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  align-self: stretch;
  min-height: calc(100svh - 220px);
  background: url("assets/picturescalendly/IMG_1942.jpeg") center / cover no-repeat;
}

.hero-copy {
  width: min(44rem, 100%);
  margin: 0 0 0 auto;
  padding: clamp(2.4rem, 5vw, 4.4rem) clamp(1.25rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--olive);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 48ch;
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero .button.secondary {
  background: rgba(255, 250, 246, 0.94);
  backdrop-filter: blur(6px);
}

.section {
  padding: clamp(3.8rem, 7vw, 6.5rem) 0;
}

.section.alt {
  background: var(--linen);
}

.section.sage {
  background: var(--sage);
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head p {
  margin-top: 1rem;
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
}

.split.reverse .image-panel {
  order: -1;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.copy-stack {
  display: grid;
  gap: 1.1rem;
}

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

.card,
.quote,
.faq-item,
.article-card {
  border: 1px solid rgba(132, 128, 124, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: 0 10px 28px rgba(47, 51, 44, 0.06);
}

.card h3,
.quote h3,
.faq-item h3,
.article-card h3 {
  margin-bottom: 0.65rem;
}

.article-card {
  display: grid;
  gap: 1rem;
  background: var(--white);
}

.quote {
  display: grid;
  gap: 0.9rem;
}

.quote p {
  font-size: 1rem;
}

.quote cite {
  font-style: normal;
  font-weight: 800;
  color: var(--olive);
}

.check-list,
.number-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.check-list li,
.number-list li {
  margin: 0.5rem 0;
}

.banner {
  padding: clamp(2rem, 5vw, 3.2rem);
  border-radius: var(--radius);
  background: var(--olive);
  color: var(--white);
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.banner h2,
.banner p {
  color: var(--white);
}

.banner .button {
  background: var(--white);
  color: var(--olive);
  border-color: var(--white);
  width: fit-content;
}

.page-hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--linen);
}

.page-hero .container {
  display: grid;
  gap: 1rem;
  max-width: 920px;
}

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

.article-body {
  max-width: 780px;
}

.article-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.article-body p + p {
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(132, 128, 124, 0.45);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.85rem 0.9rem;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  min-height: 1.5rem;
  color: var(--olive);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0;
  background: var(--ink);
  color: rgba(255, 250, 246, 0.88);
}

.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

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

  .hero,
  .split,
  .split.reverse,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 260px);
    display: grid;
    background: var(--linen);
  }

  .hero::after {
    content: "";
    min-height: 360px;
    background: url("assets/picturescalendly/IMG_1942.jpeg") center / cover no-repeat;
  }

  .hero-copy {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.4rem 0 4rem;
  }

  .split.reverse .image-panel {
    order: 0;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 0.75rem 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero-actions,
  .actions,
  .button,
  button {
    width: 100%;
  }

  h1 {
    max-width: 9ch;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero .lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-copy {
    padding: 1.8rem 0 2.4rem;
  }
}
