:root {
  --cream: #fbf5e9;
  --cream-deep: #f1e5cf;
  --forest: #244536;
  --forest-dark: #173126;
  --moss: #6f8f63;
  --brown: #866b4e;
  --clay: #b06d45;
  --charcoal: #262925;
  --muted: #66685f;
  --white: #fffdf8;
  --line: rgba(36, 69, 54, 0.16);
  --shadow: 0 18px 44px rgba(31, 42, 35, 0.12);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  padding: 0.65rem 1rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(251, 245, 233, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--forest-dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 8px 18px rgba(36, 69, 54, 0.18);
  font-size: 0.82rem;
}

.brand-text {
  font-size: 1.22rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  color: var(--forest-dark);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(111, 143, 99, 0.18);
  color: var(--forest);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--forest);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - var(--header-height) - 64px);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--clay);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--forest-dark);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 5.7rem;
  max-width: 820px;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 620px;
  margin: 1.35rem 0 2rem;
  color: #4e554d;
  font-size: 1.22rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(36, 69, 54, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 12px 24px rgba(23, 49, 38, 0.18);
}

.hero-art {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 253, 248, 0.95) 0 18%, transparent 19%),
    linear-gradient(145deg, #efe1c6, #d7e0c5 54%, #fbf5e9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(36, 69, 54, 0.16);
  border-radius: 26px;
}

.book-stack {
  position: absolute;
  right: 11%;
  bottom: 22%;
  width: 52%;
  max-width: 300px;
}

.book {
  display: block;
  height: 38px;
  margin-top: 12px;
  border-radius: 9px 14px 14px 9px;
  box-shadow: 0 10px 18px rgba(38, 41, 37, 0.14);
}

.book::after {
  content: "";
  display: block;
  width: 82%;
  height: 5px;
  margin: 16px 0 0 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.45);
}

.book-one {
  width: 92%;
  margin-left: 8%;
  background: var(--forest);
}

.book-two {
  width: 100%;
  background: var(--clay);
}

.book-three {
  width: 88%;
  margin-left: 4%;
  background: var(--brown);
}

.book-four {
  width: 96%;
  margin-left: 1%;
  background: var(--moss);
}

.open-book {
  position: absolute;
  left: 11%;
  bottom: 25%;
  display: flex;
  width: 210px;
  height: 130px;
  transform: rotate(-8deg);
}

.open-book span {
  flex: 1;
  border: 2px solid rgba(36, 69, 54, 0.28);
  background: var(--white);
  box-shadow: 0 14px 20px rgba(38, 41, 37, 0.12);
}

.open-book span:first-child {
  border-radius: 12px 4px 18px 12px;
}

.open-book span:last-child {
  border-radius: 4px 12px 12px 18px;
}

.leaf {
  position: absolute;
  width: 80px;
  height: 44px;
  border-radius: 100% 0 100% 0;
  background: var(--moss);
  opacity: 0.82;
}

.leaf-one {
  top: 18%;
  right: 18%;
  transform: rotate(22deg);
}

.leaf-two {
  left: 22%;
  top: 23%;
  transform: rotate(-30deg) scale(0.75);
  background: #9aaa79;
}

.section {
  padding: 6rem 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.flow p,
.section-copy,
.contact-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.intro-section,
.benefits-section {
  background: var(--white);
}

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

.situation-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 245, 233, 0.72);
  padding: 0.85rem 1rem;
  color: var(--forest-dark);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.4rem;
}

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

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

.step-card,
.benefit-card,
.pickup-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-card,
.benefit-card {
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
}

.step-card p,
.benefit-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.icon-circle {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
}

.accept-section {
  background:
    linear-gradient(180deg, rgba(111, 143, 99, 0.1), transparent 55%),
    var(--cream);
}

.accept-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accept-list li {
  position: relative;
  border-radius: 13px;
  background: var(--white);
  padding: 0.82rem 1rem 0.82rem 2.35rem;
  box-shadow: 0 8px 18px rgba(38, 41, 37, 0.07);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
}

.accept-list li::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--moss);
}

.benefit-icon {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(111, 143, 99, 0.16);
  color: var(--forest);
  padding: 0.32rem 0.65rem;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-area {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--forest);
  color: var(--white);
}

.service-area-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.service-area h2 {
  max-width: 760px;
  color: var(--white);
}

.faq-section {
  background: var(--white);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
  box-shadow: 0 10px 24px rgba(31, 42, 35, 0.07);
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.contact-intro p {
  margin-top: 1rem;
  max-width: 440px;
}

.pickup-form {
  padding: clamp(1.2rem, 3vw, 2rem);
}

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

.field {
  margin-bottom: 1.05rem;
}

label {
  display: inline-block;
  margin-bottom: 0.42rem;
  color: var(--forest-dark);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 69, 54, 0.24);
  border-radius: 12px;
  background: #fffefa;
  color: var(--charcoal);
  padding: 0.82rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(36, 69, 54, 0.14);
  outline: none;
}

.is-invalid {
  border-color: #a33d31;
  background: #fff8f5;
}

.error-message {
  min-height: 1.3rem;
  margin: 0.3rem 0 0;
  color: #8e3027;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  margin: 0.2rem 0 1.2rem;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin: 0.15rem 0 0;
  accent-color: var(--forest);
}

.checkbox-field label {
  margin: 0;
  line-height: 1.45;
}

.form-button {
  width: 100%;
}

.form-status {
  margin-bottom: 1.2rem;
  border: 1px solid rgba(111, 143, 99, 0.44);
  border-radius: 14px;
  background: rgba(111, 143, 99, 0.14);
  color: var(--forest-dark);
  padding: 1rem;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
}

.form-status-error {
  border-color: rgba(142, 48, 39, 0.32);
  background: #fff1ed;
  color: #8e3027;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer p {
  margin: 0.3rem 0 0;
  color: rgba(251, 245, 233, 0.82);
}

.site-footer a {
  color: var(--cream);
  font-weight: 800;
}

@media (max-width: 920px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 360px;
  }

  .contact-intro {
    position: static;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0.4rem;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    padding: 1rem 16px 1.25rem;
    box-shadow: 0 18px 30px rgba(31, 42, 35, 0.12);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.24s ease, visibility 0.24s ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-menu a {
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 253, 248, 0.78);
    padding: 0.8rem 1rem;
  }

  .hero {
    gap: 1.4rem;
    padding-top: 2.35rem;
    padding-bottom: 2.15rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .situation-grid,
  .accept-list,
  .steps-grid,
  .benefits-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-area-inner,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .service-area-inner .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-art {
    min-height: 205px;
    border-radius: 24px;
  }

  .open-book {
    left: 8%;
    width: 140px;
    height: 90px;
  }

  .book-stack {
    right: 7%;
    width: 58%;
  }

  .book {
    height: 27px;
  }

  h1 {
    font-size: 2.82rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .section {
    padding: 3.4rem 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
