:root {
  color-scheme: light;
  --ink: #142521;
  --ink-soft: #52635e;
  --forest: #0d332c;
  --forest-deep: #071f1b;
  --forest-light: #e7efeb;
  --gold: #b67a25;
  --gold-bright: #e2b65e;
  --cranberry: #8b2f32;
  --cranberry-deep: #652124;
  --cream: #f6f1e8;
  --paper: #fffdf9;
  --line: #d8ded9;
  --error: #a52d2d;
  --success: #176a4b;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --shadow: 0 1.5rem 4rem rgba(7, 31, 27, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  content: "";
  background: linear-gradient(90deg, var(--cranberry) 0 25%, var(--gold) 25% 50%, var(--forest) 50% 75%, var(--gold-bright) 75%);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.625rem 0.875rem;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--forest);
  font-weight: 700;
}

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

.site-header {
  display: flex;
  width: min(100% - 2rem, 76rem);
  min-height: 5rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--forest);
  text-decoration: none;
}

.brand svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  letter-spacing: 0.055em;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-cta {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold);
  color: var(--forest);
  font-size: 0.8125rem;
  font-weight: 750;
  text-decoration: none;
}

.hero {
  display: grid;
  width: min(100% - 2rem, 76rem);
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}

.hero-copy {
  min-width: 0;
  align-self: center;
}

.eyebrow {
  margin: 0 0 0.875rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  margin: 0 0.5rem 0.25rem 0;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
.success-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.75rem, 11vw, 5.75rem);
}

.hero-lede {
  max-width: 37rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.instagram-link {
  border-bottom: 1px solid var(--gold);
  color: var(--forest);
  font-size: 0.8125rem;
  font-weight: 800;
  text-decoration: none;
}

.consult-copy {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(182, 122, 37, 0.38);
  outline-offset: 2px;
}

.button-primary,
.button-submit {
  background: var(--forest);
  color: #fff;
}

.button-primary:hover,
.button-submit:hover {
  background: var(--forest-deep);
}

.button-secondary {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

.trust-list {
  display: flex;
  margin: 2rem 0 0;
  padding: 0;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  list-style: none;
}

.trust-list span {
  margin-right: 0.375rem;
  color: var(--gold);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
}

.light-string {
  position: absolute;
  z-index: 3;
  top: -1rem;
  right: 0.5rem;
  left: 0.5rem;
  display: flex;
  height: 1.75rem;
  align-items: flex-start;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 253, 249, 0.8);
}

.light-string span {
  display: block;
  width: 0.5rem;
  height: 0.75rem;
  margin-top: -0.0625rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50% 50% 45% 45%;
  background: var(--gold-bright);
  box-shadow: 0 0 0.75rem rgba(226, 182, 94, 0.9);
}

.light-string span:nth-child(3n + 1) {
  background: #e9f0de;
  box-shadow: 0 0 0.75rem rgba(238, 255, 216, 0.95);
}

.light-string span:nth-child(3n + 2) {
  background: #d85c55;
  box-shadow: 0 0 0.75rem rgba(216, 92, 85, 0.9);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.hero-visual::before {
  top: -1rem;
  right: -0.75rem;
  width: 45%;
  height: 60%;
  border: 1px solid #d9bd84;
}

.hero-visual::after {
  right: -0.75rem;
  bottom: -0.75rem;
  width: 55%;
  height: 35%;
  background: var(--cream);
}

.hero-visual img {
  display: block;
  width: 100%;
  max-height: 39rem;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(82%, 23rem);
  padding: 1rem 1.25rem;
  flex-direction: column;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(0.5rem);
}

.hero-visual figcaption span {
  color: var(--gold);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  margin-top: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
}

.hero-visual figcaption a {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.625rem;
}

.territory {
  display: flex;
  padding: 1.5rem max(1rem, calc((100% - 76rem) / 2));
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.territory p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.6875rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.territory div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.territory span {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
}

.proof-section {
  display: grid;
  width: min(100% - 2rem, 76rem);
  margin: 0 auto;
  padding: 4rem 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.proof-copy h2 {
  max-width: 17ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.proof-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.instagram-proof {
  display: grid;
  min-width: 0;
  padding: 1.5rem;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--cranberry-deep);
  background: var(--cranberry);
  color: #fff;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.instagram-proof:hover {
  transform: translateY(-2px);
  background: var(--cranberry-deep);
}

.instagram-proof svg {
  width: 2.75rem;
  fill: none;
  stroke: #fff4dc;
  stroke-width: 1.5;
}

.instagram-proof > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.instagram-proof small {
  color: #f5cf93;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.instagram-proof strong {
  margin-top: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 8vw, 2.75rem);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.instagram-proof em {
  margin-top: 0.25rem;
  color: #f3dfd5;
  font-size: 0.75rem;
  font-style: normal;
}

.instagram-proof b {
  grid-column: 2;
  color: #fff4dc;
  font-size: 0.75rem;
}

.process {
  width: min(100% - 2rem, 76rem);
  margin: 0 auto;
  padding: 5rem 0;
}

.section-heading {
  display: grid;
  margin-bottom: 2.5rem;
  gap: 0.25rem 2rem;
}

.section-heading h2,
.quote-intro h2 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 7vw, 3.75rem);
}

.process ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process li {
  display: grid;
  padding: 1.25rem 0;
  grid-template-columns: 2.75rem 1fr;
  gap: 0 0.75rem;
  border-bottom: 1px solid var(--line);
}

.process li > span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 800;
}

.process li > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.process li p {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.quote-section {
  display: grid;
  padding: 4.5rem max(1rem, calc((100% - 76rem) / 2));
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.quote-intro {
  min-width: 0;
  align-self: start;
}

.quote-intro > p:not(.eyebrow) {
  max-width: 31rem;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
}

.response-note {
  display: flex;
  max-width: 29rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  align-items: flex-start;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8125rem;
}

.response-note svg {
  width: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.response-note span {
  display: flex;
  flex-direction: column;
}

.response-note strong {
  color: var(--ink);
}

.form-panel {
  min-width: 0;
  align-self: start;
  border: 1px solid var(--line);
  border-top: 0.25rem solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1rem 3rem rgba(7, 31, 27, 0.08);
}

#lead-form,
.success-panel {
  padding: 1.5rem;
}

.form-section + .form-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.form-section-heading {
  display: flex;
  margin-bottom: 1.25rem;
  align-items: center;
  gap: 0.625rem;
}

.form-section-heading > span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid #c9b489;
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 800;
}

.form-section-heading h3 {
  margin: 0;
  font-size: 1rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  min-width: 0;
}

.field label,
.choice-group legend,
.timing-group legend {
  display: block;
  margin-bottom: 0.375rem;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 750;
}

.field input,
.field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid #bdc8c2;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

.field input::placeholder {
  color: #889691;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--error);
}

.field-hint,
.field-error {
  margin: 0.25rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.4;
}

.field-hint {
  color: var(--ink-soft);
}

.field-error {
  min-height: 0;
  color: var(--error);
  font-weight: 650;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid,
.timing-grid {
  display: grid;
  gap: 0.5rem;
}

.choice-grid label,
.timing-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input,
.timing-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-grid span {
  display: flex;
  min-height: 2.75rem;
  padding: 0.625rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d1cc;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.choice-grid input:checked + span,
.timing-grid input:checked + span {
  border-color: var(--forest);
  background: var(--forest-light);
  color: var(--forest);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.choice-grid input:focus-visible + span,
.timing-grid input:focus-visible + span {
  outline: 3px solid rgba(182, 122, 37, 0.38);
  outline-offset: 2px;
}

.timing-group {
  margin-top: 1.5rem;
}

.timing-grid label > span {
  display: flex;
  min-height: 4rem;
  padding: 0.75rem;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #c9d1cc;
  border-radius: var(--radius-sm);
  color: var(--ink);
}

.timing-grid strong {
  font-size: 0.75rem;
}

.timing-grid small {
  color: var(--ink-soft);
  font-size: 0.6875rem;
}

.upload-field {
  position: relative;
  margin-top: 1.5rem;
}

.upload-field > label {
  display: flex;
  min-height: 5.25rem;
  padding: 1rem;
  align-items: center;
  gap: 0.75rem;
  border: 1px dashed #99aaa2;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.upload-field > label:hover {
  border-color: var(--gold);
  background: #fffaf0;
}

.upload-field svg {
  width: 1.5rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.upload-field label > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.upload-field strong {
  font-size: 0.75rem;
}

.upload-field small {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.6875rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-field:focus-within > label {
  outline: 3px solid rgba(182, 122, 37, 0.38);
  outline-offset: 2px;
}

.consent-field {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.625rem;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.6875rem;
  line-height: 1.5;
}

.consent-field input {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.125rem 0 0;
  accent-color: var(--forest);
}

.form-alert {
  margin-top: 1rem;
  padding: 0.75rem;
  border-left: 0.25rem solid var(--error);
  background: #fbebeb;
  color: #722020;
  font-size: 0.8125rem;
}

.button-submit {
  width: 100%;
  margin-top: 1.25rem;
}

.button-submit svg {
  width: 1.125rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-submit[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.privacy-note {
  margin: 0.625rem 0 0;
  color: var(--ink-soft);
  font-size: 0.625rem;
  text-align: center;
}

.success-panel {
  min-height: 35rem;
  text-align: center;
}

.success-panel:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.success-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-light);
  color: var(--success);
  font-size: 1.5rem;
  font-weight: 900;
}

.success-panel h3 {
  max-width: 13ch;
  font-size: 2.5rem;
}

.success-panel > p:not(.eyebrow) {
  max-width: 30rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.confirmation-number {
  display: flex;
  width: min(100%, 26rem);
  margin: 1.5rem 0;
  padding: 0.875rem;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.confirmation-number span {
  color: var(--ink-soft);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confirmation-number code {
  overflow-wrap: anywhere;
  color: var(--forest);
  font-size: 0.75rem;
}

.success-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.625rem;
}

.demo-handoff {
  display: flex;
  width: min(100%, 26rem);
  margin-top: 1.25rem;
  padding-top: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.375rem 1rem;
  border-top: 1px solid var(--line);
  text-align: left;
}

.demo-handoff span {
  color: var(--ink-soft);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-handoff a {
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 800;
}

footer {
  display: grid;
  padding: 2.5rem max(1rem, calc((100% - 76rem) / 2));
  gap: 1rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.footer-brand {
  color: var(--forest);
}

.footer-brand small {
  color: var(--ink-soft);
}

footer p {
  margin: 0;
}

footer > a {
  color: var(--forest);
}

[hidden] {
  display: none !important;
}

@media (min-width: 40rem) {
  .site-header,
  .hero,
  .proof-section,
  .process {
    width: min(100% - 3rem, 76rem);
  }

  .site-header {
    min-height: 6rem;
  }

  .header-cta {
    padding: 0.75rem 1rem;
    border: 1px solid var(--forest);
    border-radius: var(--radius-sm);
  }

  .hero {
    padding: 4rem 0 5rem;
  }

  .proof-section {
    padding: 5rem 0;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.8fr);
    gap: 4rem;
  }

  .trust-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }

  .territory {
    padding-right: max(1.5rem, calc((100% - 76rem) / 2));
    padding-left: max(1.5rem, calc((100% - 76rem) / 2));
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .territory div {
    gap: 2.5rem;
  }

  .process ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .process li:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid var(--line);
  }

  .process li:nth-child(even) {
    padding-left: 1.5rem;
  }

  .quote-section {
    padding-right: max(1.5rem, calc((100% - 76rem) / 2));
    padding-left: max(1.5rem, calc((100% - 76rem) / 2));
  }

  #lead-form,
  .success-panel {
    padding: 2.5rem;
  }

  .field-grid,
  .timing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-wide {
    grid-column: 1 / -1;
  }

  .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  footer {
    padding-right: max(1.5rem, calc((100% - 76rem) / 2));
    padding-left: max(1.5rem, calc((100% - 76rem) / 2));
    align-items: center;
    grid-template-columns: 1fr auto;
  }

  footer p {
    text-align: right;
  }
}

@media (min-width: 58rem) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.75fr);
    gap: 5rem;
  }

  .hero-visual img {
    height: 39rem;
  }

  .section-heading {
    align-items: end;
    grid-template-columns: 1fr 2fr;
  }

  .section-heading .eyebrow {
    grid-column: 1;
  }

  .section-heading h2 {
    grid-column: 2;
  }

  .process ol {
    grid-template-columns: repeat(4, 1fr);
  }

  .process li,
  .process li:nth-child(odd),
  .process li:nth-child(even) {
    padding: 1.5rem;
    border-right: 1px solid var(--line);
  }

  .process li:first-child {
    padding-left: 0;
  }

  .process li:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .quote-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    grid-template-columns: minmax(18rem, 0.7fr) minmax(31rem, 1fr);
    gap: 6rem;
  }

  .quote-intro {
    position: sticky;
    top: 3rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Holiday direction: immersive, premium, unmistakably Christmas. */
body {
  background: #f5efe3;
}

body::before {
  display: none;
}

.holiday-stage {
  position: relative;
  overflow: hidden;
  background: #061f1a;
  color: #fff8e9;
}

.season-banner {
  display: flex;
  min-height: 2.25rem;
  padding: 0.45rem 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 243, 217, 0.26);
  background: #8f2529;
  color: #fff8e9;
}

.season-banner p {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.season-banner span {
  color: #f4c76b;
  font-size: 0.75rem;
}

.holiday-stage .site-header {
  position: relative;
  z-index: 10;
  width: min(100% - 2rem, 82rem);
  min-height: 5.5rem;
  border-bottom: 1px solid rgba(255, 248, 233, 0.22);
}

.holiday-stage .brand {
  color: #fff8e9;
}

.holiday-stage .brand svg {
  filter: drop-shadow(0 0 0.4rem rgba(244, 199, 107, 0.38));
}

.holiday-stage .brand circle {
  fill: #f4c76b;
  stroke: #f4c76b;
}

.holiday-stage .brand strong {
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.2rem;
}

.holiday-stage .brand small {
  color: rgba(255, 248, 233, 0.7);
  font-size: 0.55rem;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  color: rgba(255, 248, 233, 0.82);
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  color: #f4c76b;
}

.holiday-stage .header-cta {
  padding: 0.65rem 0;
  border-color: #f4c76b;
  color: #fff8e9;
}

.holiday-stage .hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: clamp(39rem, 76vh, 54rem);
  margin: 0;
  padding: 0;
  align-items: center;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  filter: saturate(1.08) contrast(1.04);
}

.hero-media::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 22, 18, 0.98) 0%, rgba(3, 22, 18, 0.91) 38%, rgba(3, 22, 18, 0.43) 70%, rgba(3, 22, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 22, 18, 0.7) 0%, transparent 35%);
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  max-width: 18rem;
  color: rgba(255, 248, 233, 0.56);
  font-size: 0.55rem;
  line-height: 1.4;
  text-align: right;
}

.hero-media figcaption a {
  color: inherit;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  top: 9%;
  left: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(244, 199, 107, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 8rem rgba(244, 199, 107, 0.12);
}

.holiday-stage .hero::before {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1.3rem;
  content: "";
  background-image: radial-gradient(circle at 0.75rem 0.45rem, #f7d985 0 0.16rem, transparent 0.2rem);
  background-repeat: repeat-x;
  background-size: 2.25rem 1rem;
  filter: drop-shadow(0 0 0.35rem rgba(247, 217, 133, 0.92));
}

.holiday-stage .hero-copy {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, 82rem);
  margin: 0 auto;
  padding: 4.5rem 0 8rem;
}

.holiday-stage .hero .eyebrow {
  color: #f4c76b;
}

.holiday-stage h1 {
  max-width: 10.5ch;
  color: #fff8e9;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.34);
}

.holiday-stage h1 em {
  color: #f3c665;
  font-weight: 400;
}

.holiday-stage .hero-lede {
  max-width: 37rem;
  color: rgba(255, 248, 233, 0.84);
  font-size: 1.0625rem;
}

.holiday-stage .button-primary {
  border-color: rgba(255, 248, 233, 0.24);
  background: #a3292e;
  color: #fff;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.22);
}

.holiday-stage .button-primary:hover {
  background: #bd3237;
}

.holiday-stage .instagram-link {
  border-color: rgba(244, 199, 107, 0.65);
  color: #fff8e9;
}

.holiday-stage .instagram-link span {
  color: #f4c76b;
}

.holiday-stage .consult-copy {
  color: rgba(255, 248, 233, 0.64);
}

.hero-service-mark {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 3rem;
  left: 1rem;
  display: flex;
  max-width: 37rem;
  padding-top: 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 248, 233, 0.28);
  color: rgba(255, 248, 233, 0.74);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.hero-service-mark i {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #f4c76b;
  box-shadow: 0 0 0.5rem rgba(244, 199, 107, 0.9);
}

.holiday-promise {
  display: grid;
  padding: 1.5rem max(1rem, calc((100% - 82rem) / 2));
  gap: 1rem;
  border-bottom: 1px solid #d9cbb8;
  background: #fff8e9;
}

.holiday-promise p {
  display: grid;
  margin: 0;
  padding: 0.25rem 0;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0 0.625rem;
}

.holiday-promise p > span {
  grid-row: 1 / 3;
  color: #a3292e;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.125rem;
}

.holiday-promise strong {
  color: #0b3028;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
}

.holiday-promise small {
  color: #66726c;
  font-size: 0.6875rem;
}

.experience {
  display: grid;
  width: min(100% - 2rem, 82rem);
  margin: 0 auto;
  padding: 5rem 0;
  gap: 3rem;
}

.experience-heading h2,
.scope-intro h2 {
  margin: 0;
  color: #0b3028;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(2.75rem, 9vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.experience-heading h2 em {
  color: #a3292e;
  font-weight: 400;
}

.experience-lede {
  max-width: 38rem;
  margin: 0 0 2rem;
  color: #40554f;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.4;
}

.scope-list {
  border-top: 1px solid #cfc1ae;
}

.scope-list article {
  display: grid;
  padding: 1.25rem 0;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0 0.75rem;
  border-bottom: 1px solid #cfc1ae;
}

.scope-list article > span {
  grid-row: 1 / 3;
  color: #ad7a2a;
  font-size: 0.625rem;
  font-weight: 850;
}

.scope-list h3 {
  margin: 0;
  color: #0b3028;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.scope-list p {
  max-width: 38rem;
  margin: 0.375rem 0 0;
  color: #63716b;
  font-size: 0.8125rem;
}

.holiday-scopes {
  overflow: hidden;
  padding: 5rem 0 0;
  background: #0a332a;
  color: #fff8e9;
}

.scope-intro {
  width: min(100% - 2rem, 82rem);
  margin: 0 auto;
}

.holiday-scopes .eyebrow {
  color: #f4c76b;
}

.scope-intro h2 {
  max-width: 16ch;
  color: #fff8e9;
}

.scope-intro > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 248, 233, 0.72);
}

.scope-marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  margin-top: 4rem;
  padding: 1.4rem max(1rem, calc((100vw - 82rem) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 248, 233, 0.18);
  background: #8f2529;
  color: #fff8e9;
  white-space: nowrap;
}

.scope-marquee span {
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.scope-marquee i {
  color: #f4c76b;
  font-style: normal;
}

.proof-section {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0;
  padding: 5rem max(1rem, calc((100% - 82rem) / 2));
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  border: 0;
  background: #8f2529;
  color: #fff8e9;
}

.proof-star {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(244, 199, 107, 0.2);
  font-family: Georgia, serif;
  font-size: clamp(7rem, 18vw, 15rem);
  line-height: 1;
}

.proof-section .proof-copy {
  position: relative;
  z-index: 1;
}

.proof-section .eyebrow {
  color: #f4c76b;
}

.proof-section .proof-copy h2 {
  max-width: 14ch;
  color: #fff8e9;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(2.75rem, 9vw, 5rem);
  line-height: 0.98;
}

.proof-section .proof-copy > p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(255, 248, 233, 0.78);
}

.proof-copy ul {
  display: flex;
  margin: 1.5rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.proof-copy li {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 248, 233, 0.32);
  border-radius: 999px;
  color: #fff8e9;
  font-size: 0.6875rem;
  font-weight: 750;
}

.proof-section .instagram-proof {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 22rem;
  padding: 1.5rem;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 0;
  border: 1px solid #ead9b9;
  background:
    radial-gradient(circle at 80% 18%, rgba(244, 199, 107, 0.27) 0 0.35rem, transparent 0.4rem),
    radial-gradient(circle at 88% 27%, rgba(143, 37, 41, 0.25) 0 0.25rem, transparent 0.3rem),
    radial-gradient(circle at 72% 31%, rgba(11, 48, 40, 0.24) 0 0.3rem, transparent 0.35rem),
    #fff8e9;
  color: #0b3028;
  box-shadow: 0.75rem 0.75rem 0 #60191c;
}

.proof-section .instagram-proof:hover {
  background-color: #fffdf6;
  transform: translateY(-2px);
}

.instagram-proof-top {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d9c7a9;
}

.instagram-proof-top svg {
  width: 1.75rem;
  stroke: #a3292e;
}

.instagram-proof-top small {
  color: #8f2529;
}

.proof-section .instagram-proof strong {
  margin: 0;
  color: #0b3028;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(2.5rem, 9vw, 4.75rem);
  line-height: 0.95;
}

.proof-section .instagram-proof em {
  margin-top: 0.75rem;
  color: #66726c;
}

.proof-section .instagram-proof b {
  display: flex;
  width: 100%;
  margin-top: 2rem;
  padding-top: 1rem;
  align-items: center;
  justify-content: space-between;
  grid-column: auto;
  border-top: 1px solid #d9c7a9;
  color: #8f2529;
}

.proof-section .instagram-proof b span {
  font-size: 1.25rem;
}

.process {
  width: min(100% - 2rem, 82rem);
  padding: 5rem 0;
}

.process .section-heading h2 {
  max-width: 17ch;
  color: #0b3028;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(2.6rem, 8vw, 4.75rem);
  line-height: 0.98;
}

.process ol {
  border-color: #cfc1ae;
}

.process li {
  border-color: #cfc1ae;
}

.process li > span {
  color: #a3292e;
}

.process li > strong {
  color: #0b3028;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: 1.5rem;
}

.process li p {
  color: #63716b;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  border: 0;
  background: #071f1b;
}

.quote-section::before {
  position: absolute;
  top: -7rem;
  left: -7rem;
  width: 20rem;
  height: 20rem;
  content: "";
  border: 1px solid rgba(244, 199, 107, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 6rem rgba(244, 199, 107, 0.07);
}

.quote-intro {
  position: relative;
  z-index: 1;
}

.quote-section .eyebrow {
  color: #f4c76b;
}

.quote-section .quote-intro h2 {
  color: #fff8e9;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  line-height: 0.98;
}

.quote-section .quote-intro > p:not(.eyebrow) {
  color: rgba(255, 248, 233, 0.72);
}

.quote-includes {
  display: flex;
  margin: 1.5rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.quote-includes li {
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(255, 248, 233, 0.26);
  border-radius: 999px;
  color: #fff8e9;
  font-size: 0.625rem;
  font-weight: 750;
}

.quote-section .response-note {
  border-color: rgba(255, 248, 233, 0.22);
  color: rgba(255, 248, 233, 0.68);
}

.quote-section .response-note strong {
  color: #fff8e9;
}

.quote-section .form-panel {
  position: relative;
  z-index: 1;
  border-color: #e1d3be;
  border-top-color: #a3292e;
  background: #fffdf8;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
}

.quote-section .form-section-heading > span {
  border-color: #d0aa65;
  color: #a3292e;
}

.quote-section .button-submit {
  background: #a3292e;
}

.quote-section .button-submit:hover {
  background: #bd3237;
}

footer {
  border-color: rgba(255, 248, 233, 0.14);
  background: #041713;
  color: rgba(255, 248, 233, 0.62);
}

footer .footer-brand,
footer > a {
  color: #fff8e9;
}

footer .footer-brand small {
  color: rgba(255, 248, 233, 0.55);
}

@media (min-width: 40rem) {
  .holiday-stage .site-header {
    width: min(100% - 3rem, 82rem);
  }

  .site-nav {
    display: flex;
  }

  .holiday-stage .header-cta {
    padding: 0.7rem 1rem;
    border: 1px solid #f4c76b;
  }

  .holiday-stage .hero-copy {
    width: min(100% - 3rem, 82rem);
    padding-top: 6rem;
  }

  .hero-service-mark {
    right: auto;
    left: max(1.5rem, calc((100% - 82rem) / 2));
  }

  .holiday-promise {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .holiday-promise p {
    padding: 0.5rem 1.5rem;
    border-left: 1px solid #d9cbb8;
  }

  .holiday-promise p:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .experience,
  .process {
    width: min(100% - 3rem, 82rem);
  }

  .scope-intro {
    width: min(100% - 3rem, 82rem);
  }

  .proof-section {
    padding-right: max(1.5rem, calc((100% - 82rem) / 2));
    padding-left: max(1.5rem, calc((100% - 82rem) / 2));
  }
}

@media (min-width: 58rem) {
  .holiday-stage .hero-copy {
    padding-top: 7rem;
    padding-bottom: 9rem;
  }

  .hero-media img {
    object-position: center 45%;
  }

  .experience {
    padding: 7rem 0;
    grid-template-columns: minmax(22rem, 0.82fr) minmax(0, 1fr);
    gap: 7rem;
  }

  .experience-heading {
    position: sticky;
    top: 3rem;
    align-self: start;
  }

  .holiday-scopes {
    padding-top: 7rem;
  }

  .scope-intro {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.65fr);
    gap: 4rem;
  }

  .scope-intro .eyebrow {
    grid-column: 1 / -1;
  }

  .scope-intro > p:not(.eyebrow) {
    margin: 0;
  }

  .scope-marquee {
    margin-top: 6rem;
  }

  .proof-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
    grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 0.72fr);
    gap: 7rem;
  }

  .proof-section .instagram-proof {
    min-height: 29rem;
    padding: 2rem;
  }

  .instagram-proof-top {
    top: 2rem;
    right: 2rem;
    left: 2rem;
  }

  .process {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media (max-width: 31rem) {
  .holiday-stage .brand small {
    display: none;
  }

  .holiday-stage .header-cta {
    font-size: 0.6875rem;
  }

  .holiday-stage .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .holiday-stage .instagram-link {
    align-self: flex-start;
  }

  .hero-service-mark {
    font-size: 0.5rem;
    letter-spacing: 0.07em;
  }

  .scope-marquee {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .holiday-stage *,
  .holiday-stage *::before,
  .holiday-stage *::after {
    animation: none !important;
  }
}
