


*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  line-height: inherit;
  min-height: 100%;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

p, figure, blockquote, dl, dd, pre {
  margin: 0;
}

ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

b, strong {
  font-weight: bolder;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, [type='button'], [type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

::placeholder {
  opacity: 1;
  color: var(--ink-faint);
}

img, svg, video, canvas, iframe, object, embed {
  display: block;
  vertical-align: middle;
}

img, video {
  max-width: 100%;
  height: auto;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

summary {
  display: list-item;
}


:root {
  --page: #fff8f2;
  --page-warm: #ffefe2;
  --page-deep: #ffe2cc;
  --surface: #ffffff;
  --ash: #17110e;
  --ash-soft: #241a14;
  --ash-line: rgba(255, 255, 255, 0.14);
  --ink: #2a1712;
  --ink-soft: #6b4426;
  --ink-faint: #9c7355;
  --ink-invert: #fdf4ec;
  --ink-invert-soft: #d6bda9;
  --accent: #c2410c;
  --accent-strong: #9a3308;
  --ember: #f26a1b;
  --ember-glow: #ffab5e;
  --line: rgba(42, 23, 18, 0.14);
  --line-strong: rgba(42, 23, 18, 0.28);
  --shade-soft: 0 2px 10px rgba(72, 26, 4, 0.08);
  --shade-lift: 0 14px 34px rgba(72, 26, 4, 0.18);
  --edge: 0;
  --edge-soft: 2px;
  --step-1: 0.5rem;
  --step-2: 1rem;
  --step-3: 1.75rem;
  --step-4: 3rem;
  --step-5: 6rem;
  --glide: 0.3s ease;
}

[data-theme="dark"] {
  --page: #17110e;
  --page-warm: #1e1611;
  --page-deep: #241a14;
  --surface: #241a14;
  --ink: #f7ede6;
  --ink-soft: #cbb2a1;
  --ink-faint: #9b8273;
  --accent: #f97c2e;
  --accent-strong: #ffa05c;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --shade-soft: 0 2px 10px rgba(0, 0, 0, 0.5);
  --shade-lift: 0 14px 34px rgba(0, 0, 0, 0.6);
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #17110e;
    --page-warm: #1e1611;
    --page-deep: #241a14;
    --surface: #241a14;
    --ink: #f7ede6;
    --ink-soft: #cbb2a1;
    --ink-faint: #9b8273;
    --accent: #f97c2e;
    --accent-strong: #ffa05c;
    --line: rgba(255, 255, 255, 0.14);
    --line-strong: rgba(255, 255, 255, 0.26);
    --shade-soft: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shade-lift: 0 14px 34px rgba(0, 0, 0, 0.6);
  }
}


body,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: var(--page);
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.005em;
  overflow-wrap: break-word;
  hyphens: auto;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
}

p {
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
}

strong {
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.375rem; }
}


.page-root {
  width: 100%;
  overflow-x: clip;
}

.page-wrapper {
  width: 100%;
}

.page-container {
  width: 100%;
}

.page-shell {
  width: 92%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.text-column {
  width: 100%;
  max-width: 900px;
}

.main-area {
  width: 100%;
}

.main-wrapper {
  width: 100%;
}


.main-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  width: 100%;
}

.content-section {
  flex: 1 1 100%;
  min-width: 18.75rem;
  width: 100%;
  padding: var(--step-4) 6%;
  background: var(--page);
  
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-section:nth-of-type(even):not(.dark-band) {
  background: var(--page-warm);
}

.section-wrapper {
  width: 100%;
}

.section-container {
  width: 92%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.section-module {
  width: 100%;
}

.section-head {
  margin-bottom: var(--step-3);
}

.section-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--step-1);
}

.section-title {
  margin-bottom: var(--step-2);
}

.section-lede {
  color: var(--ink-soft);
  max-width: 44em;
}

.dark-band {
  background: var(--ash);
  color: var(--ink-invert);
}

.dark-band .section-lede,
.dark-band .section-title {
  color: var(--ink-invert);
}

.dark-band .section-lede {
  color: var(--ink-invert-soft);
}

.dark-band .section-kicker {
  color: var(--ember-glow);
}

@media (min-width: 768px) {
  .content-section {
    min-height: 0;
    display: block;
    padding: var(--step-5) 4%;
  }
  .section-head {
    margin-bottom: var(--step-4);
  }
  .paired-section {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}


.primary-button {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: var(--edge);
  padding: 0.95rem 1.9rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  transition: background var(--glide), transform var(--glide), box-shadow var(--glide);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: var(--shade-lift);
}

.ghost-button {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
  border-radius: var(--edge);
  padding: 0.85rem 1.7rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color var(--glide), color var(--glide), background var(--glide);
}

.ghost-button:hover,
.ghost-button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(242, 106, 27, 0.06);
}

.dark-band .ghost-button,
.welcome-band .ghost-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.dark-band .ghost-button:hover,
.welcome-band .ghost-button:hover {
  border-color: var(--ember-glow);
  color: var(--ember-glow);
  background: rgba(255, 171, 94, 0.12);
}

.large-button {
  width: 100%;
  padding: 1.1rem 1.9rem;
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .large-button {
    width: auto;
  }
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color var(--glide);
}

.dark-band .text-link {
  color: var(--ember-glow);
}

.dark-band .contact-form-card .text-link {
  color: var(--accent);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-strong);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.fx { display: flex; }
.fx-col { flex-direction: column; }
.fx-wrap { flex-wrap: wrap; }
.fx-mid { align-items: center; }
.fx-between { justify-content: space-between; }
.fx-center { justify-content: center; }
.gap-1 { gap: var(--step-1); }
.gap-2 { gap: var(--step-2); }
.gap-3 { gap: var(--step-3); }
.gap-4 { gap: var(--step-4); }
.w-100 { width: 100%; }
.w-half { width: 100%; }
.tc { text-align: center; }
.uc { text-transform: uppercase; letter-spacing: 0.14em; }
.bold { font-weight: 700; }
.heavy { font-weight: 900; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.9375rem; }
.tiny { font-size: 0.8125rem; }
.mb-1 { margin-bottom: var(--step-1); }
.mb-2 { margin-bottom: var(--step-2); }
.mb-3 { margin-bottom: var(--step-3); }
.mb-4 { margin-bottom: var(--step-4); }
.mt-2 { margin-top: var(--step-2); }
.mt-3 { margin-top: var(--step-3); }
.rel { position: relative; }

@media (min-width: 768px) {
  .w-half { width: 48%; }
}
