:root {
  color-scheme: light;
  --bg: #f7f3ea;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --ink: #24302d;
  --muted: #66736f;
  --line: #ded7c9;
  --sage: #52766c;
  --sage-dark: #2f5a52;
  --teal-soft: #dcebe4;
  --coral: #f07f5f;
  --coral-dark: #bd553c;
  --gold: #d9a84e;
  --shadow: 0 24px 70px rgba(40, 47, 42, 0.13);
  --radius: 8px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(82, 118, 108, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(82, 118, 108, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 5.7rem;
  line-height: 0.94;
  font-weight: 700;
}

.hero-title-part {
  display: inline;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 3.25rem;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  padding: 10px 12px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  color: white;
}

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

.container {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin-inline: auto;
}

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, 0.88);
  border-bottom: 1px solid rgba(222, 215, 201, 0.75);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(36, 48, 45, 0.08);
}

.nav-shell {
  width: calc(100% - 40px);
  max-width: 1120px;
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 127, 95, 0.4);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 5px 18px rgba(240, 127, 95, 0.12);
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(240, 127, 95, 0.24));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}

.site-menu a {
  text-decoration: none;
}

.site-menu a:not(.nav-cta):hover {
  color: var(--sage-dark);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  padding-top: 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  min-width: 0;
}

.hero-lede {
  max-width: 670px;
  color: #40504b;
  font-size: 1.22rem;
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--sage-dark);
  color: white;
  box-shadow: 0 12px 24px rgba(47, 90, 82, 0.18);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: #53615d;
  font-size: 0.92rem;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list li::before,
.offer-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(222, 215, 201, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -32px;
  padding: 14px 16px;
  border: 1px solid rgba(222, 215, 201, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  color: #586662;
  font-size: 0.86rem;
  box-shadow: 0 12px 32px rgba(36, 48, 45, 0.11);
}

.split,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 56px;
  align-items: start;
}

.problem {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
}

.problem-list {
  display: grid;
  gap: 10px;
}

.problem-list p {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--sage);
  background: var(--paper-strong);
  box-shadow: 0 1px 0 var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.section-action {
  margin-top: 24px;
}

.service-grid,
.notes-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.field-note-card,
.faq-grid article,
.offer-card,
.about-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-card,
.field-note-card,
.faq-grid article {
  padding: 24px;
}

.service-card h3::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--gold);
}

.workways,
.field-notes,
.staff-support,
.contact {
  background: var(--paper);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  padding: 28px;
}

.offer-card.feature {
  background: #eff6f1;
  border-color: rgba(82, 118, 108, 0.45);
  box-shadow: 0 18px 48px rgba(47, 90, 82, 0.12);
}

.offer-topline,
.note-type {
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 10px;
  align-items: baseline;
  color: #52615c;
  font-size: 0.95rem;
}

.offer-card a,
.field-note-card a,
.contact-options a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.who-layout {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 46px;
  align-items: center;
}

.who-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.who-list span {
  padding: 10px 13px;
  border: 1px solid rgba(82, 118, 108, 0.25);
  border-radius: 6px;
  background: var(--teal-soft);
  color: #354a45;
  font-size: 0.93rem;
  font-weight: 700;
}

.field-note-card {
  min-height: 230px;
}

.featured-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 20px;
  align-items: stretch;
}

.featured-note .field-note-card {
  min-height: 0;
}

.field-note-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
}

.newsletter-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eff6f1;
  padding: 24px;
}

.newsletter-card h2,
.newsletter-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
}

.newsletter-card form {
  display: grid;
  gap: 12px;
}

.newsletter-card label {
  display: grid;
  gap: 7px;
  color: #3d4d48;
  font-size: 0.9rem;
  font-weight: 800;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: 44px;
  align-items: end;
}

.page-hero-grid > *,
.article-card {
  min-width: 0;
}

.page-title-part {
  display: inline;
}

.page-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.page-note p {
  margin-bottom: 0;
}

.page-hero .hero-lede,
.page-note p,
.article-card h2,
.article-card p {
  max-width: 100%;
}

.article-list {
  display: grid;
  gap: 22px;
}

.article-card,
.legal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 32px;
}

.article-card h2,
.legal-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.article-card p,
.legal-content p {
  max-width: 820px;
  overflow-wrap: break-word;
}

.article-card a,
.article-body a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.article-body p {
  color: #465651;
  font-size: 1.08rem;
}

.article-body h2 {
  margin-top: 36px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.article-cta {
  margin-top: 42px;
  border: 1px solid rgba(82, 118, 108, 0.35);
  border-radius: var(--radius);
  background: #eff6f1;
  padding: 28px;
}

.article-cta h2 {
  margin-top: 0;
}

.legal-page {
  background: rgba(255, 253, 248, 0.58);
}

.legal-content {
  max-width: 900px;
}

.about {
  border-block: 1px solid var(--line);
}

.protection {
  border-block: 1px solid var(--line);
  background: #f2efe7;
}

.protection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.protection-list {
  display: grid;
  gap: 14px;
}

.protection-list article,
.staff-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 22px;
}

.staff-panel p {
  margin-bottom: 0;
  color: #40504b;
  font-size: 1.14rem;
}

.about-card {
  padding: 30px;
  background: var(--ink);
  color: white;
}

.about-card p {
  color: rgba(255, 255, 255, 0.78);
}

.about-logo {
  display: block;
  width: min(210px, 72%);
  height: auto;
  margin: 28px auto 0;
  border-radius: 50%;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.28));
}

.about-portrait {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin: 0 0 24px;
}

.about-headshot {
  width: 132px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid rgba(82, 118, 108, 0.24);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(36, 48, 45, 0.14);
}

.about-portrait figcaption {
  color: #40504b;
  font-size: 0.92rem;
  font-weight: 800;
}

.rabbit-line {
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--coral);
}

.about-copy p {
  color: #465651;
  font-size: 1.07rem;
}

.contact-grid {
  grid-template-columns: 0.85fr 1fr;
}

.contact-options {
  margin-top: 22px;
}

.contact-options span,
.contact-options a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #3d4d48;
  font-size: 0.9rem;
  font-weight: 800;
}

.reply-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.reply-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: #3d4d48;
  font-size: 0.9rem;
  font-weight: 800;
}

.reply-options label {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #cfc8ba;
  border-radius: 6px;
  background: white;
  font-size: 0.95rem;
}

.reply-options input {
  width: auto;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc8ba;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  padding: 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(240, 127, 95, 0.35);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

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

.site-footer {
  padding: 26px 0;
  background: var(--ink);
  color: white;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid div {
  display: flex;
  gap: 16px;
}

.footer-grid a {
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
}

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

  h2 {
    font-size: 2.75rem;
  }

  .hero-grid,
  .split,
  .about-grid,
  .contact-grid,
  .who-layout,
  .protection-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 720px;
  }

  .service-grid,
  .notes-grid,
  .featured-note,
  .faq-grid,
  .offer-grid,
  .page-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container,
  .nav-shell {
    width: calc(100% - 28px);
  }

  .section-pad {
    padding: 64px 0;
  }

  .nav-shell {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 12px;
    border-radius: 6px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-lede {
    font-size: 1.07rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-media figcaption {
    position: static;
    margin-top: 12px;
  }

  .service-grid,
  .notes-grid,
  .featured-note,
  .faq-grid,
  .offer-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .problem-list p,
  .service-card,
  .field-note-card,
  .faq-grid article,
  .offer-card,
  .about-card,
  .contact-form {
    padding: 20px;
  }

  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.62rem;
    line-height: 1;
  }

  .hero-title-part {
    display: block;
  }

  .page-title-part {
    display: block;
  }

  h2 {
    font-size: 2.15rem;
  }

  .about-portrait {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .about-headshot {
    width: 96px;
  }

  .reply-options {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
