*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink:       #102A43;
    --slate:     #102A43;
    --canvas:    #FFFFFF;
    --warm:      #FFFFFF;
    --brass:     #FF7A1A;
    --accent-text: #B44400;
    --muted:     #526475;
    --rule:      #DCE5ED;
    --serif:     'DM Serif Display', Georgia, serif;
    --sans:      'Inter', system-ui, sans-serif;
  }

  html { font-size: 16px; scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--canvas);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ── HEADER ── */
  header {
    background: var(--slate);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
  }

  .header-contact {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
  }

  .header-contact a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
  }

  .header-contact a:hover { color: #fff; }

  /* ── HERO ── */
  .hero {
    background: var(--slate);
    color: #fff;
    padding: 5rem 2rem 5.5rem;
    border-bottom: 3px solid var(--brass);
  }

  .hero-inner {
    max-width: 780px;
    margin: 0 auto;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 1.6rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--brass);
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }

  .btn-primary {
    display: inline-block;
    background: var(--brass);
    color: #fff;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1.6rem;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.15s;
  }

  .btn-primary:hover { background: #FF963D; }

  .hero-phone {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
  }

  .hero-phone a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
  }

  .hero-phone a:hover { color: #fff; }

  /* ── COMMITMENT BAND ── */
  .commitment {
    background: var(--warm);
    border-bottom: 1px solid var(--rule);
    padding: 1.5rem 2rem;
  }

  .commitment-inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .commitment-mark {
    flex-shrink: 0;
    width: 3px;
    height: 100%;
    min-height: 2.5rem;
    background: var(--brass);
    border-radius: 2px;
    align-self: stretch;
  }

  .commitment-text {
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.65;
  }

  .commitment-text strong {
    font-weight: 600;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--rule);
  }

  .section-inner {
    max-width: 780px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--brass);
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: var(--slate);
  }

  .body-text {
    font-size: 1rem;
    color: #334E68;
    line-height: 1.75;
    max-width: 620px;
  }

  .body-text + .body-text { margin-top: 1rem; }

  /* ── WHAT WE BUY ── */
  .buy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    margin-top: 2.5rem;
  }

  .buy-item h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--slate);
    margin-bottom: 0.5rem;
  }

  .buy-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
  }

  .rule { width: 2.5rem; height: 2px; background: var(--brass); margin-bottom: 1.2rem; }

  /* ── HOW IT WORKS ── */
  .steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .step {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--rule);
  }

  .step:last-child { border-bottom: none; }

  .step-num {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--brass);
    padding-top: 0.15rem;
  }

  .step-body h3 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
  }

  .step-body p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── GEOGRAPHY ── */
  .geo-list {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2rem;
    max-width: 600px;
  }

  .geo-list li {
    list-style: none;
    font-size: 0.9rem;
    color: var(--muted);
    padding-left: 1rem;
    position: relative;
  }

  .geo-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brass);
  }

  /* ── FORM ── */
  .form-section {
    background: var(--slate);
    color: #fff;
    padding: 4.5rem 2rem 5rem;
  }

  .form-inner {
    max-width: 680px;
    margin: 0 auto;
  }

  .form-section .section-label { color: var(--brass); }

  .form-section h2 {
    color: #fff;
    margin-bottom: 0.6rem;
  }

  .form-section .body-text {
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.2rem;
  }

  .form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-row-2 { grid-template-columns: 1fr 1fr; }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
  }

  input, select, textarea {
    font-family: var(--sans);
    font-size: 0.95rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.7rem 0.9rem;
    border-radius: 2px;
    outline: none;
    width: 100%;
    transition: border-color 0.15s;
    -webkit-appearance: none;
  }

  input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.58); }

  input:focus, select:focus, textarea:focus {
    border-color: var(--brass);
    background: rgba(255,255,255,0.1);
  }

  select option { background: var(--slate); color: #fff; }

  textarea { resize: vertical; min-height: 100px; }

  .submit-row {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
  }

  .btn-submit {
    background: var(--brass);
    color: #fff;
    border: none;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.15s;
  }

  .btn-submit:hover { background: #FF963D; }

  .form-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.5;
  }

  /* ── FOOTER ── */
  footer {
    background: #0B1F33;
    padding: 2.5rem 2rem;
  }

  .footer-inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-brand .logo { margin-bottom: 0.4rem; }

  .footer-brand p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }

  .footer-contact {
    font-size: 0.85rem;
    text-align: right;
  }

  .footer-contact a {
    display: block;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    margin-bottom: 0.25rem;
  }

  .footer-contact a:hover { color: rgba(255,255,255,0.85); }

  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    header { padding: 1rem; }
    .hero { padding: 3.5rem 1.25rem 4rem; }
    .section { padding: 3rem 1.25rem; }
    .buy-grid { grid-template-columns: 1fr; gap: 2rem; }
    .geo-list { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .form-section { padding: 3rem 1.25rem; }
    .footer-contact { text-align: left; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
  }

  .logo { text-decoration: none; display: inline-flex; align-items: center; gap: .8rem; }
  .logo-mark { display: block; width: 48px; height: 48px; flex-shrink: 0; }
  .footer-brand .logo { margin-bottom: .8rem; }
  .eyebrow { color: var(--brass); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.4rem; }
  .hero-sub strong { display: block; color: #fff; font-weight: 500; margin-bottom: .65rem; }
  .btn-primary, .btn-submit { color: var(--slate); font-weight: 600; min-height: 44px; }
  .btn-primary:hover, .btn-submit:hover { background: #FF963D; }
  .section-label, .step-num { color: var(--accent-text); }
  .form-section .section-label { color: var(--brass); }
  input, select, textarea { font-size: 1rem; }
  .form-row, .field-group, input, select, textarea { min-width: 0; }
  .body-link { color: var(--slate); text-underline-offset: .2em; }
  .contact-links { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
  .contact-links a { color: var(--slate); font-size: .95rem; text-underline-offset: .2em; }
  .form-section a { color: #fff; text-underline-offset: .2em; }
  .optional-details { margin: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
  .optional-details summary { cursor: pointer; padding: 1rem 0; font-size: .9rem; color: #FF963D; }
  .optional-details[open] summary { margin-bottom: .4rem; }
  .optional-details .form-row:last-child { margin-bottom: 1.3rem; }
  .privacy-note { margin-top: 1.4rem; font-size: .8rem; line-height: 1.6; color: rgba(255,255,255,.68); max-width: 520px; }
  .footer-address { color: rgba(255,255,255,.72); font-style: normal; font-size: .8rem; margin-top: .7rem; }
  :focus-visible { outline: 3px solid var(--brass); outline-offset: 4px; }
  input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
  .skip-link { position: absolute; top: -100px; left: 1rem; z-index: 10; background: #fff; color: var(--slate); padding: .7rem 1rem; }
  .skip-link:focus { top: 1rem; }
  .confirmation { min-height: 65vh; padding: 5rem 2rem; display: flex; align-items: center; }
  .confirmation-inner { width: 100%; max-width: 680px; margin: 0 auto; }
  .confirmation h1 { color: var(--slate); font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.3rem; }
  .confirmation .btn-primary { margin-top: 2rem; }
  @media (max-width: 640px) { .commitment { padding: 1.3rem 1.25rem; } .confirmation { padding: 3.5rem 1.25rem; } }
