:root {
  --berry: #742f4a;
  --berry-dark: #512033;
  --sage: #dfe7dc;
  --sage-deep: #556554;
  --cream: #f7f2ed;
  --paper: #fffdf9;
  --ink: #252520;
  --muted: #5f5d57;
  --line: #d9d1c9;
  --white: #fff;
  --max: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  transform: translateY(-180%);
  padding: 10px 15px;
  color: var(--white);
  background: var(--berry-dark);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 82px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto 126px;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(37, 37, 32, 0.13);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(14px);
}
.site-name {
  justify-self: start;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.site-name b {
  color: var(--berry);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  padding: 28px 0 25px;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover, .main-nav a:focus-visible { border-bottom-color: var(--berry); }
.brand { justify-self: end; width: 118px; }
.brand img { width: 100%; height: auto; }
.menu-button { display: none; }
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(410px, 0.92fr);
  background: var(--sage);
}
.image-frame { position: relative; margin: 0; overflow: hidden; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-image img { object-position: center; }
figcaption {
  position: absolute;
  right: 9px;
  bottom: 8px;
  padding: 3px 7px;
  color: var(--white);
  background: rgba(33, 34, 29, 0.67);
  font-size: 10px;
  line-height: 1.25;
}
.hero-copy {
  align-self: center;
  width: min(100%, 640px);
  padding: 82px max(34px, calc((100vw - var(--max)) / 2)) 82px clamp(46px, 6vw, 92px);
}
.overline {
  margin: 0 0 18px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  word-break: normal;
  overflow-wrap: normal;
}
h1 { margin-bottom: 28px; font-size: clamp(48px, 5.2vw, 78px); }
.hero-copy > p:not(.overline) {
  max-width: 560px;
  margin: 0;
  color: #4d594c;
  font-size: 19px;
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.primary-link, .secondary-link, .light-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
}
.primary-link { color: var(--white); background: var(--berry); }
.primary-link:hover, .primary-link:focus-visible { background: var(--berry-dark); }
.secondary-link { border: 1px solid var(--sage-deep); color: #344334; }
.secondary-link:hover, .secondary-link:focus-visible { color: var(--white); background: var(--sage-deep); }
.decision-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 104px 0 116px;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(55px, 9vw, 130px);
}
.section-title { align-self: start; position: sticky; top: 120px; }
.section-title h2, .future-copy h2, .contact-heading h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.2vw, 62px);
}
.decision-list { border-top: 1px solid var(--line); }
.decision-list article {
  padding: 34px 0 38px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}
.decision-list article > span {
  color: var(--berry);
  font-family: var(--serif);
  font-size: 19px;
}
.decision-list h3 { margin-bottom: 12px; font-size: 31px; }
.decision-list p { margin: 0; color: var(--muted); }
.future-section {
  display: grid;
  grid-template-columns: minmax(390px, 0.8fr) minmax(560px, 1.2fr);
  color: var(--white);
  background: var(--berry-dark);
}
.future-copy {
  align-self: center;
  max-width: 610px;
  padding: 82px clamp(38px, 6vw, 92px) 82px max(34px, calc((100vw - var(--max)) / 2));
}
.future-copy .overline { color: #dcb7c5; }
.future-copy > p:not(.overline) { margin: 27px 0 34px; color: #e5dce0; }
.light-link { border: 1px solid rgba(255, 255, 255, 0.66); }
.light-link span { margin-left: 12px; }
.light-link:hover, .light-link:focus-visible { color: var(--berry-dark); background: var(--white); }
.future-image { min-height: 620px; }
.future-image img { object-position: center; }
.contact-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 108px 0 116px;
}
.contact-heading { margin-bottom: 48px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}
#contact-form {
  padding: clamp(27px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--cream);
}
fieldset { margin: 0; padding: 0; border: 0; }
legend, .field > span {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 760;
}
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.radio-group label { position: relative; cursor: pointer; }
.radio-group input { position: absolute; inset: 0; opacity: 0; }
.radio-group span {
  min-height: 52px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.25;
  background: var(--paper);
}
.radio-group input:checked + span { border-color: var(--berry); color: var(--white); background: var(--berry); }
.radio-group input:focus-visible + span { outline: 3px solid rgba(116, 47, 74, 0.22); outline-offset: 2px; }
.field-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}
.field-wide { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}
.field input { height: 50px; padding: 0 14px; }
.field textarea { min-height: 128px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field textarea:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(116, 47, 74, 0.12);
}
.honeypot { position: absolute; left: -9999px; }
.privacy {
  margin-top: 23px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 14px;
  cursor: pointer;
}
.privacy input {
  width: 17px;
  height: 17px;
  margin: 4px 0 0;
  accent-color: var(--berry);
}
.privacy a, .terms a { text-underline-offset: 3px; }
.terms { margin: 10px 0 0 28px; font-size: 14px; }
.form-status { min-height: 0; margin: 16px 0 0; color: #8a2436; font-size: 14px; font-weight: 700; }
.form-status:empty { display: none; }
#contact-form button {
  min-height: 52px;
  margin-top: 24px;
  padding: 12px 24px;
  border: 0;
  color: var(--white);
  background: var(--berry);
  font-weight: 760;
  cursor: pointer;
}
#contact-form button:hover, #contact-form button:focus-visible { background: var(--berry-dark); }
.personal-contact {
  position: sticky;
  top: 114px;
  padding: 38px 32px;
  border-top: 7px solid var(--berry);
  color: var(--ink);
  background: var(--sage);
}
.contact-kicker {
  margin: 0 0 30px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.personal-contact h2 { margin-bottom: 5px; font-size: 40px; }
.personal-contact > p:nth-of-type(2) { margin: 0 0 24px; color: #4a5848; }
.contact-links a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  font-weight: 750;
  text-underline-offset: 4px;
}
.contact-purpose {
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid #aebbaa;
  font-size: 14px;
}
footer {
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  color: #e6e0e2;
  background: var(--berry-dark);
  font-size: 13px;
}
.footer-name { display: flex; flex-direction: column; }
.footer-name span { color: var(--white); font-family: var(--serif); font-size: 18px; }
.footer-name small { color: #c8b9bf; font-size: 11px; }
footer nav { display: flex; gap: 18px; }
footer a { text-underline-offset: 4px; }

@media (max-width: 1060px) {
  .site-header { grid-template-columns: minmax(190px, 1fr) auto 108px; gap: 20px; }
  .main-nav { gap: 20px; }
  .brand { width: 104px; }
  .hero { grid-template-columns: 1fr 0.9fr; }
  .hero-copy { padding-right: 34px; padding-left: 52px; }
  .decision-section { gap: 58px; }
  .future-section { grid-template-columns: 0.9fr 1.1fr; }
  .future-copy { padding-right: 48px; }
  .contact-grid { grid-template-columns: minmax(0, 1fr) 290px; }
}

@media (max-width: 850px) {
  html { scroll-padding-top: 0; }
  .site-header {
    position: relative;
    min-height: 74px;
    padding: 0 18px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }
  .menu-button {
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: transparent;
    cursor: pointer;
  }
  .menu-button i {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }
  .menu-button[aria-expanded="true"] i:first-of-type { transform: translateY(4.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:last-of-type { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    z-index: 20;
    top: 74px;
    right: 0;
    left: 0;
    padding: 18px 24px 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 0; border-bottom: 0; font-size: 16px; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-image { min-height: 500px; }
  .hero-copy { width: min(calc(100% - 48px), 690px); margin: 0 auto; padding: 70px 0 76px; }
  .decision-section { padding: 82px 0 94px; grid-template-columns: 1fr; }
  .section-title { position: static; }
  .future-section { grid-template-columns: 1fr; }
  .future-copy { max-width: none; padding: 72px max(24px, calc((100vw - 690px) / 2)); }
  .future-image { min-height: 540px; }
  .contact-section { padding: 86px 0 94px; }
  .contact-grid { grid-template-columns: 1fr; }
  .personal-contact { position: static; }
  footer { grid-template-columns: 1fr auto; }
  footer > span:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header { padding: 0 14px; gap: 7px; }
  .site-name { font-size: 16px; }
  .site-name b { font-size: 10px; }
  .brand { width: 86px; }
  .hero-image { min-height: 360px; }
  .hero-image img { object-position: 39% center; }
  .hero-copy, .decision-section, .contact-section { width: calc(100% - 32px); }
  .hero-copy { padding: 56px 0 62px; }
  h1 { font-size: clamp(43px, 14.5vw, 58px); }
  .hero-copy > p:not(.overline) { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .primary-link, .secondary-link { justify-content: flex-start; }
  .decision-section { padding: 66px 0 74px; gap: 38px; }
  .section-title h2, .future-copy h2, .contact-heading h2 { font-size: clamp(37px, 11vw, 48px); }
  .decision-list article { grid-template-columns: 38px 1fr; gap: 13px; }
  .decision-list h3 { font-size: 27px; }
  .future-copy { padding: 60px 16px 66px; }
  .future-image { min-height: 390px; }
  .future-image img { object-position: 49% center; }
  .contact-section { padding: 70px 0 76px; }
  .contact-heading { margin-bottom: 34px; }
  #contact-form { padding: 22px 18px 24px; }
  .radio-group, .field-grid { grid-template-columns: 1fr; }
  .radio-group span { min-height: 48px; justify-content: flex-start; text-align: left; }
  .field-wide { grid-column: auto; }
  #contact-form button { width: 100%; padding-right: 14px; padding-left: 14px; }
  .personal-contact { padding: 31px 24px; }
  footer { padding: 30px 16px; grid-template-columns: 1fr; gap: 20px; }
  footer nav { flex-wrap: wrap; }
  footer > span:last-child { grid-column: auto; }
}

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