:root {
  --stone: #ece7da;
  --stone-lt: #f4f0e6;
  --stone-dk: #ddd7c8;
  --green: #072b00;
  --green-md: #143d0a;
  --terra: #b8734a;
  --terra-action: #a45e38;
  --terra-h: #934f2f;
  --terra-text: #9f5a35;
  --terra-m: rgba(184, 115, 74, 0.07);
  --text: #1c1c1a;
  --text-mid: #3e3e38;
  --text-light: #68685f;
  --border: rgba(7, 43, 0, 0.1);
  --white: #faf8f2;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Source Sans 3", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --content: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--stone);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

p + p {
  margin-top: 0.7rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

h1,
h2 {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

h3 {
  color: var(--green);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
}

.skip-link {
  background: var(--white);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.8rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 1000;
}

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

.honeypot {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.wrapper {
  margin: 0 auto;
  max-width: var(--content);
  padding-left: clamp(1.5rem, 4vw, 2.5rem);
  padding-right: clamp(1.5rem, 4vw, 2.5rem);
}

.section {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.section--light {
  background: var(--stone-lt);
}

.section--green {
  background: var(--green);
  border-top: 0;
  color: var(--stone-lt);
}

.tag {
  color: var(--terra-text);
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.lede {
  color: var(--text-mid);
  font-size: 1.08rem;
  margin-top: 0.55rem;
  max-width: 58ch;
}

.text-link {
  color: var(--terra-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--green);
}

.button {
  border: 0;
  cursor: pointer;
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.72rem 1.5rem;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button--terra {
  background: var(--terra-action);
  color: var(--white);
}

.button--terra:hover {
  background: var(--terra-h);
}

.button--green {
  background: var(--green);
  color: var(--stone);
}

.button--green:hover {
  background: var(--green-md);
}

.button--outline {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}

.button--outline:hover {
  background: var(--green);
  color: var(--stone);
}

.button--light-outline {
  background: transparent;
  border: 1px solid rgba(236, 231, 218, 0.45);
  color: var(--stone);
}

.button--light-outline:hover {
  background: var(--stone);
  color: var(--green);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-nav {
  backdrop-filter: blur(16px);
  background: rgba(236, 231, 218, 0.92);
  border-bottom: 1px solid var(--border);
  left: 0;
  padding: 0.7rem 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 0.25s ease, padding 0.25s ease;
  z-index: 100;
}

.site-nav.is-scrolled {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  padding: 0.45rem 0;
}

.nav-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--content);
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
}

.brand {
  align-items: baseline;
  color: var(--green);
  display: flex;
  font-family: var(--serif);
  font-size: 1.15rem;
  gap: 0.4rem;
  white-space: nowrap;
}

.brand small {
  color: var(--text-light);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.nav-list a,
.services-toggle {
  background: transparent;
  border: 0;
  color: var(--text-mid);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-list a:hover,
.services-toggle:hover,
.nav-list a[aria-current="page"] {
  color: var(--green);
}

.nav-list .button {
  color: var(--white);
  font-size: 0.66rem;
  padding: 0.43rem 0.85rem;
}

.nav-list a.button--terra {
  background: var(--terra-action);
  color: var(--white);
}

.nav-list a.button--terra:hover {
  background: var(--terra-h);
  color: var(--white);
}

.services-menu {
  position: relative;
}

.services-toggle::after {
  content: "+";
  margin-left: 0.35rem;
}

.services-toggle[aria-expanded="true"]::after {
  content: "−";
}

.services-dropdown {
  background: var(--stone-lt);
  border: 1px solid var(--border);
  display: none;
  left: -1rem;
  list-style: none;
  min-width: 230px;
  padding: 0.55rem;
  position: absolute;
  top: calc(100% + 0.75rem);
}

.services-dropdown.is-open {
  display: grid;
}

.services-dropdown a {
  display: block;
  padding: 0.43rem 0.55rem;
}

.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  position: relative;
  width: 44px;
}

.menu-button span {
  background: var(--green);
  height: 1.5px;
  left: 12px;
  position: absolute;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 20px;
}

.menu-button span:nth-child(1) { top: 14px; }
.menu-button span:nth-child(2) { top: 21px; }
.menu-button span:nth-child(3) { top: 28px; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
  background: rgba(0, 0, 0, 0.25);
  display: none;
  inset: 0;
  position: fixed;
  z-index: 98;
}

.menu-overlay.is-open {
  display: block;
}

.hero {
  background: var(--green);
  padding: 7rem 0 3rem;
}

.hero-grid {
  align-items: end;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 300px;
}

.hero-copy {
  padding-bottom: 0.8rem;
}

.hero h1 {
  color: var(--stone);
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: rgba(236, 231, 218, 0.72);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 48ch;
}

.hero-meta {
  color: rgba(236, 231, 218, 0.72);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  text-transform: uppercase;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  height: 380px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.photo-label {
  background: var(--green);
  bottom: 0.7rem;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.65rem;
  left: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  position: absolute;
  text-transform: uppercase;
}

.breadcrumb {
  color: var(--text-light);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero .breadcrumb {
  color: rgba(236, 231, 218, 0.65);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
}

.trust-bar {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.trust-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: space-between;
}

.trust-item {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.trust-item img {
  height: 38px;
  object-fit: contain;
  width: auto;
}

.trust-title,
.trust-subtitle {
  display: block;
  font-family: var(--mono);
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-title {
  color: var(--green);
  font-size: 0.7rem;
}

.trust-subtitle {
  color: var(--text-light);
  font-size: 0.6rem;
}

.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.3rem;
}

.recognition-item {
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  padding: 1rem 1.2rem;
  position: relative;
}

.recognition-item:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.recognition-item::before {
  background: var(--terra);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.25s ease;
  width: 2px;
}

.recognition-item:hover {
  background: var(--stone-lt);
}

.recognition-item:hover::before {
  opacity: 1;
}

.recognition-close {
  background: var(--stone-dk);
  grid-column: 1 / -1;
  margin-top: 0.45rem;
  padding: 1.45rem 1.5rem;
  text-align: center;
}

.recognition-close p {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0 auto 0.85rem;
  max-width: 44ch;
}

.card-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.3rem;
}

.service-groups {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.3rem;
}

.service-group {
  background: var(--stone-lt);
  border-top: 2px solid var(--green);
  padding: 1.4rem;
}

.service-group h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.service-group p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.service-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  list-style: none;
  margin-top: 0.85rem;
  padding: 0;
}

.service-group a {
  color: var(--terra-text);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.card {
  background: var(--stone-lt);
  padding: 1.35rem 1.2rem;
}

.card-number {
  color: var(--terra);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.card h3 {
  font-size: 0.94rem;
  margin-bottom: 0.35rem;
}

.card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.55;
}

.card .text-link {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  margin-top: 0.65rem;
  text-transform: uppercase;
}

.steps {
  counter-reset: step;
  margin-top: 1.3rem;
}

.step {
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 34px 1fr;
  padding: 0.75rem 0;
}

.step::before {
  color: var(--terra);
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.step h3 {
  font-size: 0.94rem;
  margin-bottom: 0.1rem;
}

.step p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.editorial-grid {
  align-items: start;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.3rem;
}

.content-copy {
  color: var(--text-mid);
}

.content-copy h3 {
  margin: 1.25rem 0 0.4rem;
}

.content-copy ul {
  margin-top: 0.75rem;
}

.content-copy li {
  margin: 0.3rem 0;
}

.feature-panel {
  background: var(--green);
  border-left: 3px solid var(--terra);
  color: var(--stone-lt);
  margin-top: 1.2rem;
  padding: 1.3rem 1.4rem;
}

.feature-panel h3,
.feature-panel h4 {
  color: var(--terra);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.feature-panel a {
  color: var(--terra-h);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.3rem;
}

.price-card {
  background: var(--stone);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1rem;
  position: relative;
  text-align: center;
}

.price-card--featured {
  background: var(--white);
  border-color: var(--terra);
}

.price-card--featured::before {
  background: var(--terra);
  color: var(--white);
  content: "Most Common";
  font-family: var(--mono);
  font-size: 0.58rem;
  left: 50%;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.5rem;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.price-card h3 {
  font-size: 0.88rem;
}

.price-duration {
  color: var(--text-light);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.price-amount {
  align-items: center;
  color: var(--green);
  display: flex;
  flex: 0 0 2.75rem;
  font-family: var(--serif);
  font-size: 2.2rem;
  justify-content: center;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.price-amount sup {
  font-size: 0.55em;
  line-height: 1;
  transform: translateY(-0.35em);
}

.price-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.price-card .button {
  margin-top: auto;
  width: 100%;
}

.notice {
  background: var(--terra-m);
  border-left: 2px solid var(--terra);
  margin-top: 1.3rem;
  padding: 0.95rem 1.1rem;
}

.notice h3,
.notice h4 {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.notice p {
  color: var(--text-mid);
  font-size: 0.9rem;
}

.about-grid {
  align-items: start;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 220px 1fr;
  margin-top: 1.3rem;
}

.about-photo {
  position: relative;
}

.about-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  width: 100%;
}

.about-photo::after {
  border: 1.5px solid var(--terra);
  content: "";
  inset: 5px -5px -5px 5px;
  position: absolute;
  z-index: -1;
}

.first-line {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.35;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  color: var(--text-mid);
  padding: 0.32rem 0 0.32rem 1rem;
  position: relative;
}

.check-list li::before {
  background: var(--terra);
  content: "";
  height: 1.5px;
  left: 0;
  position: absolute;
  top: 0.85em;
  width: 5px;
}

.faq-list {
  border-top: 1px solid var(--border);
  margin-top: 1.3rem;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  color: var(--green);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 1rem 2.5rem 1rem 0;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--terra);
  content: "+";
  font-family: var(--mono);
  position: absolute;
  right: 0.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  color: var(--text-mid);
  max-width: 72ch;
  padding: 0 2rem 1rem 0;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.form-row {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.field label,
.form-consent {
  color: var(--text-light);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: var(--stone-lt);
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
  padding: 0.58rem 0.65rem;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-consent {
  align-items: start;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: auto 1fr;
  line-height: 1.4;
  text-transform: none;
}

.form-consent input {
  margin-top: 0.2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-block h3 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}

.contact-block p,
.contact-block a {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.contact-block a:hover {
  color: var(--terra);
}

.booking-panel {
  background: var(--stone-lt);
  padding: 1rem;
  text-align: center;
}

.crisis-panel {
  background: var(--stone-dk);
  border-left: 3px solid var(--terra);
  padding: 1.15rem 1.25rem;
}

.crisis-panel h2,
.crisis-panel h3 {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.crisis-panel p,
.crisis-panel li {
  color: var(--text-mid);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  justify-content: space-between;
}

.footer-copy,
.footer-links a,
.footer-meta {
  color: var(--text-light);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.footer-links a {
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--green);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    background: var(--stone);
    flex-direction: column;
    gap: 1rem;
    height: 100dvh;
    justify-content: center;
    max-width: 290px;
    padding: 2rem;
    position: fixed;
    right: -100%;
    top: 0;
    transition: right 0.35s ease;
    width: 78%;
    z-index: 99;
  }

  .nav-list.is-open {
    right: 0;
  }

  .nav-list a,
  .services-toggle {
    font-size: 0.83rem;
  }

  .services-dropdown {
    background: transparent;
    border: 0;
    left: 0;
    margin-top: 0.5rem;
    max-height: 38vh;
    overflow-y: auto;
    padding: 0 0 0 0.5rem;
    position: static;
  }

  .services-dropdown a {
    font-size: 0.72rem;
  }

  .hero-grid,
  .editorial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    max-width: 260px;
  }

  .hero-photo img {
    height: 300px;
  }

  .about-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 180px;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 1.05rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .recognition-grid,
  .card-grid,
  .service-groups,
  .form-row {
    grid-template-columns: 1fr;
  }

  .recognition-item:nth-child(odd) {
    border-right: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

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

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