:root {
  --ink: #080909;
  --charcoal: #111313;
  --charcoal-2: #1b1d1d;
  --paper: #f5f1e8;
  --paper-soft: #ebe5d8;
  --muted: #a9aaa4;
  --muted-dark: #5d625d;
  --gold: #c4a15f;
  --gold-dark: #8f713f;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(8, 9, 9, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
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;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 40px, 1240px);
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(8, 9, 9, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.scrolled {
  background: rgba(8, 9, 9, 0.94);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 0.93rem;
  font-weight: 680;
  color: var(--paper);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(196, 161, 95, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 18px);
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.84rem;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  padding: 96px 20px 34px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.95), rgba(8, 9, 9, 0.61) 42%, rgba(8, 9, 9, 0.34)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2400&q=80") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(196, 161, 95, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(8, 9, 9, 0.18), rgba(8, 9, 9, 0.94));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 430px);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-copy {
  max-width: 680px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
}

h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.4rem);
}

h3 {
  font-size: 1.03rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(245, 241, 232, 0.82);
  font-size: clamp(1.03rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #12110e;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d5b372;
}

.button-secondary {
  border-color: rgba(245, 241, 232, 0.42);
  background: rgba(245, 241, 232, 0.08);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(245, 241, 232, 0.72);
  background: rgba(245, 241, 232, 0.13);
}

.button-dark {
  background: var(--charcoal);
  color: var(--paper);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.brand-line {
  max-width: 560px;
  color: rgba(245, 241, 232, 0.64);
  font-size: 0.92rem;
}

.intake-card,
.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(12, 14, 14, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.intake-card {
  padding: 18px;
}

.form-heading {
  margin-bottom: 18px;
}

.form-heading h2 {
  margin-bottom: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 760;
  line-height: 1.2;
}

.form-heading p {
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.68);
  font-size: 0.92rem;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
}

label span {
  color: rgba(245, 241, 232, 0.76);
  font-size: 0.78rem;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  outline: none;
  min-height: 42px;
  padding: 9px 12px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

input[type="date"] {
  color-scheme: dark;
}

textarea {
  resize: vertical;
}

select {
  color-scheme: dark;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 241, 232, 0.38);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(196, 161, 95, 0.78);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(196, 161, 95, 0.13);
}

.field-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
}

.form-status {
  margin: 8px 0 0;
  color: #e9d29a;
  font-size: 0.84rem;
}

.form-status:empty {
  display: none;
}

.section {
  scroll-margin-top: 94px;
  padding: clamp(74px, 10vw, 128px) 20px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.steps-section,
.request-section,
.credit-section,
.faq-section {
  background: var(--paper);
  color: var(--ink);
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 44px;
}

.section-lead h2,
.split-section h2,
.quote-copy h2,
.schedule-box h2,
.faq-layout h2 {
  margin-bottom: 0;
}

.section-lead p,
.split-section p,
.quote-copy p,
.schedule-box p,
.faq-list p,
.site-footer p {
  color: var(--muted-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.steps article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
}

.steps span {
  display: block;
  margin-bottom: 62px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.brands-section {
  background: var(--charcoal);
  color: var(--paper);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.55fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.split-section p {
  max-width: 680px;
  color: rgba(245, 241, 232, 0.68);
}

.opportunity-panel {
  border-top: 1px solid var(--line);
}

.opportunity-panel div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.opportunity-panel h3 {
  margin-bottom: 8px;
}

.opportunity-panel p {
  margin-bottom: 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.quiet-note {
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.quote-form {
  padding: 28px;
  background: var(--charcoal);
}

.credit-layout {
  align-items: start;
}

.credit-form {
  display: grid;
  gap: 18px;
}

.form-group-title {
  padding-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.form-group-title:first-child {
  border-top: 0;
  padding-top: 0;
}

.form-group-title h3 {
  margin-bottom: 4px;
  color: var(--paper);
}

.form-group-title p {
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.88rem;
}

.full-span {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 0;
}

.checkbox-field input {
  flex: 0 0 auto;
  width: 17px;
  min-height: 17px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.checkbox-field span {
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.quote-form label span {
  color: rgba(245, 241, 232, 0.76);
}

.schedule-section {
  background: #22251f;
  color: var(--paper);
}

.schedule-box {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 280px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(8, 9, 9, 0.46), rgba(8, 9, 9, 0.08)),
    linear-gradient(90deg, rgba(196, 161, 95, 0.18), transparent);
}

.schedule-box p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.72);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.72fr);
  gap: clamp(30px, 6vw, 78px);
}

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

details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 760;
}

details p {
  padding: 0 20px 18px;
  margin-bottom: 0;
}

.site-footer {
  padding: 42px 20px;
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.68fr);
  gap: 28px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.9rem;
}

.site-footer a {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 720;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(8, 9, 9, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-inner,
  .section-lead,
  .split-section,
  .quote-layout,
  .schedule-box,
  .faq-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: auto;
  }

  .steps span {
    margin-bottom: 36px;
  }

  .schedule-box {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 24px, 1240px);
    margin-top: 10px;
  }

  .brand {
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding: 92px 14px 32px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(8, 9, 9, 0.86), rgba(8, 9, 9, 0.64) 48%, rgba(8, 9, 9, 0.96)),
      url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1400&q=78") center / cover;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intake-card,
  .quote-form {
    padding: 20px;
  }

  .field-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .full-span {
    grid-column: auto;
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .steps article {
    padding: 22px;
  }
}
