:root {
  --violet: #313261;
  --violet-deep: #22234a;
  --apricot: #f2a06c;
  --apricot-deep: #d87948;
  --lime: #d8e58d;
  --lilac: #e9e6f3;
  --blush: #fff0e7;
  --paper: #fff;
  --ink: #28294f;
  --muted: #6b6d80;
  --line: #dddde6;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { overflow-wrap: break-word; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--violet-deep);
  border-radius: .4rem;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a { color: var(--muted); font-size: .9rem; font-weight: 780; text-decoration: none; }
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--apricot-deep); }
.brand { width: 102px; margin-left: auto; display: block; text-decoration: none; }
.brand-logo { width: 100%; height: auto; }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid #c9cad8;
  border-radius: .7rem;
  background: #fff;
}
.menu-button > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px auto; background: var(--violet); }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--blush);
}
.image-frame { position: relative; margin: 0; overflow: hidden; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame figcaption {
  position: absolute;
  right: .65rem;
  bottom: .6rem;
  padding: .22rem .42rem;
  color: #fff;
  background: rgba(34,35,74,.78);
  font-size: .62rem;
  line-height: 1.2;
}
.hero-image { min-height: 700px; }
.hero-copy {
  padding: clamp(3rem, 7vw, 7rem) clamp(2.2rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.domain-label,
.eyebrow,
.contact-kicker {
  margin: 0 0 .9rem;
  color: var(--apricot-deep);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1,
.decision-section h2,
.ways-section h2,
.home-copy h2,
.message-section h2,
.contact-heading h2,
.personal-contact h2 {
  margin: 0;
  font-weight: 830;
  line-height: .98;
  letter-spacing: -.05em;
}
.hero h1 { max-width: 700px; font-size: clamp(3.6rem, 6.7vw, 7.2rem); }
.hero-copy > p:not(.domain-label) { max-width: 610px; margin: 2rem 0 0; color: #5f6076; font-size: 1.1rem; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.button {
  min-height: 50px;
  padding: .82rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: .45rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button-primary,
.button-submit { color: #fff; background: var(--violet); }
.button-primary:hover,
.button-primary:focus-visible,
.button-submit:hover,
.button-submit:focus-visible { background: var(--violet-deep); }
.button-secondary { color: var(--violet); border: 1px solid #cfc7cf; background: #fff; }

.decision-section {
  width: min(calc(100% - 3rem), var(--max));
  margin: clamp(5rem, 9vw, 9rem) auto;
  display: grid;
  grid-template-columns: 1.05fr .7fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
}
.decision-section h2,
.home-copy h2 { font-size: clamp(3rem, 5vw, 5.3rem); }
.decision-statement {
  padding: 2.4rem;
  color: var(--violet-deep);
  background: var(--lime);
  border-radius: 0 4rem 0 0;
}
.decision-statement p { margin: 0; font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 750; }
.decision-statement span { display: block; margin-top: 1.4rem; font-size: 2.4rem; }

.ways-section { background: var(--violet); }
.ways-section article {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 390px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.ways-section article:last-child { border-bottom: 0; }
.way-number { color: var(--lime); font-size: .76rem; font-weight: 900; letter-spacing: .15em; }
.ways-section .eyebrow { color: var(--apricot); }
.ways-section h2 { max-width: 850px; font-size: clamp(2.8rem, 5vw, 5.1rem); }
.ways-section article p:not(.eyebrow) { max-width: 680px; color: #d7d7e5; }
.ways-section article a { display: inline-block; margin-top: .8rem; color: var(--lime); font-weight: 900; text-underline-offset: .25rem; }

.home-section {
  width: min(calc(100% - 3rem), 1320px);
  margin: clamp(5rem, 10vw, 10rem) auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
}
.home-copy { padding: clamp(3rem, 7vw, 7rem); background: var(--lilac); }
.home-copy > p:not(.eyebrow) { color: #62637a; font-size: 1.07rem; }
.home-copy dl { margin: 2rem 0 0; }
.home-copy dl > div { padding: .8rem 0; display: grid; grid-template-columns: 90px 1fr; border-bottom: 1px solid #cbc8da; }
.home-copy dt { color: var(--apricot-deep); font-weight: 900; }
.home-copy dd { margin: 0; }
.home-image { min-height: 660px; }

.message-section {
  padding: clamp(4rem, 8vw, 7rem) max(1.5rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: .7fr 1.4fr .7fr;
  gap: 2rem;
  align-items: center;
  background: var(--lime);
}
.message-section .eyebrow { margin: 0; color: var(--violet); }
.message-section h2 { font-size: clamp(3rem, 5vw, 5rem); }
.message-section > p:not(.eyebrow) { margin: 0; font-weight: 750; }

.contact-section {
  padding: clamp(4.5rem, 9vw, 9rem) max(1.5rem, calc((100vw - var(--max)) / 2));
  background: var(--blush);
}
.contact-heading { margin-bottom: 2.5rem; }
.contact-heading h2 { font-size: clamp(3.3rem, 6vw, 6rem); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
form { padding: clamp(1.5rem, 4vw, 3.2rem); background: #fff; border-radius: 0 3.5rem 0 0; }
fieldset { margin: 0 0 1.6rem; padding: 0; border: 0; }
legend { margin-bottom: .75rem; font-size: .9rem; font-weight: 850; }
.choice-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.choice-row label { cursor: pointer; }
.choice-row input { position: absolute; opacity: 0; pointer-events: none; }
.choice-row span {
  min-height: 44px;
  padding: .62rem .9rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d1cfdf;
  border-radius: .35rem;
  background: #fff;
  font-size: .88rem;
  font-weight: 750;
}
.choice-row input:checked + span { color: #fff; border-color: var(--violet); background: var(--violet); }
.choice-row input:focus-visible + span { outline: 3px solid var(--apricot); outline-offset: 2px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field-grid label { display: grid; gap: .4rem; font-size: .9rem; font-weight: 800; }
.field-grid small { color: var(--muted); font-weight: 500; }
.message-field { grid-column: 1 / -1; }
input[type="email"],
input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  min-height: 50px;
  padding: .78rem .85rem;
  color: var(--ink);
  border: 1px solid #cacada;
  border-radius: .35rem;
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
input:focus,
textarea:focus { outline: 3px solid rgba(242,160,108,.3); border-color: var(--apricot-deep); }
.honeypot { position: absolute; left: -9999px; }
.privacy-check { margin: 1.25rem 0 .3rem; display: flex; gap: .7rem; align-items: flex-start; font-size: .89rem; }
.privacy-check input { width: 18px; height: 18px; margin-top: .2rem; flex: 0 0 auto; }
.privacy-check a,
.legal-link a { color: var(--violet); font-weight: 850; }
.legal-link { margin: .35rem 0 1.2rem; font-size: .89rem; }
.form-status { min-height: 1.5rem; margin: .9rem 0 0; color: var(--violet); font-size: .9rem; font-weight: 700; }
.personal-contact { margin-top: 2rem; padding: 2.2rem; color: #fff; background: var(--violet); border-radius: 0 3.5rem 0 0; }
.personal-contact .contact-kicker { color: var(--apricot); }
.personal-contact h2 { font-size: 2.4rem; }
.personal-contact > p { margin: .3rem 0; color: #dddded; }
.personal-contact > a { display: block; margin-top: .65rem; font-weight: 850; }
.contact-line { display: block; width: 52px; height: 3px; margin: 1.5rem 0; background: var(--lime); }

.site-footer {
  padding: 2rem max(1.5rem, calc((100vw - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  color: #dedfed;
  background: var(--violet-deep);
  font-size: .78rem;
}
.site-footer nav { display: flex; gap: 1.2rem; }

@media (max-width: 960px) {
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 1.1rem 1.5rem 1.4rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { min-height: 46px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .brand { width: 86px; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 480px; }
  .hero-copy { padding: 4rem clamp(2rem, 8vw, 5rem); }
  .decision-section { grid-template-columns: 1fr; }
  .home-section { grid-template-columns: 1fr; }
  .home-image { min-height: 580px; }
  .message-section { grid-template-columns: 1fr 1fr; }
  .message-section .eyebrow { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .header-inner { width: calc(100% - 2rem); min-height: 74px; }
  .hero-image { min-height: 330px; }
  .hero-copy { padding: 3rem 1rem 4rem; }
  .hero h1 { font-size: clamp(3.1rem, 14vw, 4.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .decision-section { width: calc(100% - 2rem); margin: 4.5rem auto; gap: 2rem; }
  .ways-section article { width: calc(100% - 2rem); padding: 4rem 0; grid-template-columns: 1fr; gap: 1.1rem; }
  .home-section { width: 100%; margin: 0; }
  .home-copy { padding: 4rem 1rem; }
  .home-copy dl > div { grid-template-columns: 75px 1fr; }
  .home-image { min-height: 440px; }
  .message-section { padding-left: 1rem; padding-right: 1rem; grid-template-columns: 1fr; }
  .message-section .eyebrow { grid-column: auto; }
  .message-section .button { width: 100%; }
  .contact-section { padding-left: 1rem; padding-right: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  form { padding: 1.25rem; border-radius: 0 2rem 0 0; }
  .field-grid { grid-template-columns: 1fr; }
  .message-field { grid-column: auto; }
  .choice-row { flex-direction: column; }
  .choice-row span { width: 100%; }
  .button-submit { width: 100%; }
  .personal-contact { margin-top: 0; border-radius: 0 2rem 0 0; }
  .site-footer { flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 2.8rem; }
  .decision-section h2,
  .ways-section h2,
  .home-copy h2,
  .message-section h2 { font-size: 2.35rem; }
  .contact-heading h2 { font-size: 2.85rem; }
  .site-footer nav { gap: .8rem; }
}

