:root {
  --orange: #c2410c;
  --orange-hover: #a93609;
  --orange-soft: #fff1ea;
  --ink: #1a1a17;
  --muted: #62625c;
  --paper: #faf8f4;
  --white: #fff;
  --line: #dedbd4;
  --dark-line: #34342f;
  --display: "Montserrat", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(26, 26, 23, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); line-height: 1.55; }
body.modal-open { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.shell { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; left: 20px; top: -90px; padding: 12px 16px; color: #fff; background: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { width: min(1280px, calc(100% - 44px)); min-height: 82px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.brand { position: relative; display: inline-flex; width: 164px; height: 46px; align-items: center; overflow: hidden; }
.brand img { position: absolute; left: 50%; top: 50%; width: 270px; max-width: none; height: auto; display: block; transform: translate(-50%, -50%); }
.button { min-height: 48px; border: 0; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 0 19px; font-weight: 800; text-decoration: none; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-ghost { color: var(--ink); background: transparent; border: 1px solid var(--line); }
.button-ghost:hover { border-color: var(--ink); }
.button-primary { color: #fff; background: var(--orange); box-shadow: 0 10px 24px rgba(194, 65, 12, .22); }
.button-primary:hover { background: var(--orange-hover); }

.hero { min-height: calc(100vh - 82px); padding-block: 64px 72px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr); align-items: center; gap: clamp(42px, 7vw, 94px); }
.hero-copy { min-width: 0; }
.eyebrow { margin: 0 0 19px; color: var(--orange); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--orange); }
h1, h2, h3 { margin-top: 0; font-family: var(--display); letter-spacing: -.04em; line-height: 1.08; }
.hero h1 { max-width: 750px; margin-bottom: 23px; font-size: clamp(2.55rem, 5vw, 5rem); }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lede { max-width: 670px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.16rem); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 25px; margin: 28px 0 36px; color: #454540; font-size: .86rem; font-weight: 700; }
.trust-row b { margin-right: 5px; color: var(--orange); }

.product-window { position: relative; max-width: 650px; border: 1px solid #d4d1ca; border-radius: 16px; overflow: visible; background: #fff; box-shadow: var(--shadow); transform: rotate(-1deg); }
.window-bar { height: 35px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid #e8e6e0; }
.window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d0cec7; }
.window-bar span { margin-left: 7px; color: #8b8a83; font-size: .68rem; }
.product-window > img { width: 100%; height: auto; display: block; border-radius: 0 0 15px 15px; }
.window-tag { position: absolute; right: -22px; bottom: 22px; display: grid; padding: 13px 17px; color: #fff; background: var(--ink); border-radius: 10px; box-shadow: 0 15px 35px rgba(26,26,23,.28); }
.window-tag b { font-family: var(--display); font-size: .85rem; }
.window-tag span { color: #aaa9a2; font-size: .68rem; }

.form-card { align-self: center; padding: clamp(25px, 3vw, 37px); background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.form-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.step { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; color: #fff; background: var(--orange); border-radius: 50%; font-family: var(--display); font-size: .76rem; font-weight: 800; }
.form-heading p { margin: 0; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-heading h2 { margin: 2px 0 0; font-size: 1.6rem; }
.form-intro { margin: 0 0 23px; color: var(--muted); font-size: .9rem; }
.field { margin-bottom: 14px; }
.field label, .days-field legend { display: block; margin-bottom: 7px; color: #3a3a36; font-size: .76rem; font-weight: 800; }
.field input { width: 100%; min-height: 50px; padding: 0 14px; color: var(--ink); background: #fbfaf7; border: 1px solid var(--line); border-radius: 9px; outline: 0; }
.field input::placeholder { color: #9a9992; }
.field input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(194,65,12,.1); }
.days-field { margin: 19px 0 17px; padding: 0; border: 0; }
.day-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.day-options label { position: relative; }
.day-options input { position: absolute; opacity: 0; pointer-events: none; }
.day-options span { min-height: 54px; display: flex; align-items: baseline; justify-content: center; gap: 4px; padding: 13px 8px; color: var(--muted); background: #fbfaf7; border: 1px solid var(--line); border-radius: 9px; font-size: .73rem; cursor: pointer; }
.day-options b { color: var(--ink); font-family: var(--display); font-size: 1rem; }
.day-options input:checked + span { color: var(--orange); background: var(--orange-soft); border-color: var(--orange); box-shadow: 0 0 0 2px rgba(194,65,12,.08); }
.day-options input:focus-visible + span { outline: 3px solid rgba(194,65,12,.25); outline-offset: 2px; }
.website-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 9px; margin: 0 0 17px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.consent input { margin-top: 3px; accent-color: var(--orange); }
.button-submit { width: 100%; }
.form-note { display: grid; grid-template-columns: 16px 1fr; gap: 7px; margin: 13px 0 0; color: #7b7a73; font-size: .67rem; }
.form-note svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.form-alert { margin-bottom: 16px; padding: 11px 13px; color: #8e2505; background: #fff0ea; border: 1px solid #f3bba7; border-radius: 8px; font-size: .8rem; }
.executive-option { margin-top: 23px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.executive-option span, .executive-option strong { display: block; }
.executive-option span { color: var(--muted); font-size: .68rem; }
.executive-option strong { margin-top: 2px; font-size: .78rem; }
.circle-button { width: 40px; height: 40px; flex: 0 0 40px; color: #fff; background: var(--ink); border: 0; border-radius: 50%; font-size: 1.1rem; }

.qualities-section { padding-block: 100px; color: #f7f5f0; background: var(--ink); }
.section-heading { max-width: 700px; margin-bottom: 49px; }
.eyebrow-light { color: #ef7a46; }
.section-heading h2 { margin-bottom: 16px; font-size: clamp(2rem, 3.8vw, 3.6rem); }
.section-heading > p:last-child { margin: 0; color: #a6a69f; }
.quality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dark-line); border: 1px solid var(--dark-line); }
.quality-grid article { min-height: 320px; padding: 30px 27px; background: var(--ink); }
.quality-grid article.quality-featured { background: var(--orange); }
.quality-num { color: #74746d; font-size: .69rem; font-weight: 800; letter-spacing: .12em; }
.quality-featured .quality-num { color: rgba(255,255,255,.62); }
.quality-icon { width: 43px; height: 43px; display: grid; place-items: center; margin: 70px 0 22px; color: #f1733e; background: #272723; border-radius: 9px; font: 800 1.1rem var(--display); }
.quality-featured .quality-icon { color: var(--orange); background: #fff; }
.quality-grid h3 { margin-bottom: 12px; font-size: 1.15rem; }
.quality-grid p { margin: 0; color: #a5a59d; font-size: .84rem; }
.quality-featured p { color: rgba(255,255,255,.76); }

.choice-section { padding-block: 105px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.choice-copy h2 { max-width: 560px; margin-bottom: 0; font-size: clamp(2rem, 3.8vw, 3.5rem); }
.choice-cards { display: grid; gap: 12px; }
.choice-cards a, .choice-cards button { width: 100%; min-height: 95px; display: grid; align-content: center; gap: 5px; padding: 20px 24px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 13px; text-align: left; text-decoration: none; transition: border-color .2s, transform .2s; }
.choice-cards a:hover, .choice-cards button:hover { border-color: var(--orange); transform: translateX(4px); }
.choice-cards span { color: var(--muted); font-size: .72rem; }
.choice-cards strong { display: flex; justify-content: space-between; align-items: center; font: 700 1rem var(--display); }
.choice-cards b { color: var(--orange); font-size: 1.2rem; }

footer { padding-block: 32px; color: #8d8d85; background: #10100e; }
.footer-inner { display: flex; align-items: center; gap: 30px; }
.footer-brand { position: relative; width: 140px; height: 38px; flex: 0 0 140px; overflow: hidden; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand img { position: absolute; left: 50%; top: 50%; width: 235px; max-width: none; height: auto; transform: translate(-50%, -50%); }
.footer-inner p { margin: 0; font-size: .75rem; }
.footer-inner p:last-child { margin-left: auto; }

.calendar-modal { width: min(980px, calc(100% - 28px)); max-height: calc(100vh - 28px); padding: 0; color: var(--ink); background: #fff; border: 0; border-radius: 18px; box-shadow: 0 34px 90px rgba(0,0,0,.38); overflow: hidden; }
.calendar-modal::backdrop { background: rgba(17,17,15,.78); backdrop-filter: blur(4px); }
.modal-shell { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; max-height: calc(100vh - 28px); }
.modal-header { min-height: 78px; display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 20px; padding: 14px 19px; border-bottom: 1px solid var(--line); }
.modal-brand { position: relative; display: block; width: 150px; height: 42px; overflow: hidden; }
.modal-brand img { position: absolute; left: 50%; top: 50%; width: 248px; max-width: none; height: auto; transform: translate(-50%, -50%); }
.modal-header span { display: block; color: var(--orange); font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.modal-header .modal-brand { color: inherit; letter-spacing: normal; text-transform: none; }
.modal-header h2 { margin: 2px 0 0; font-size: 1rem; }
.modal-close { width: 40px; height: 40px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 50%; font-size: 1.55rem; line-height: 1; }
.calendar-frame-wrap { height: min(700px, calc(100vh - 160px)); min-height: 500px; overflow: auto; background: var(--paper); }
.calendar-frame-wrap .calendly-inline-widget { width: 100%; min-width: 320px; height: 700px; }
.calendar-frame-wrap iframe { width: 100%; min-height: 700px; display: block; border: 0; }
.modal-footer { min-height: 54px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 12px 19px; border-top: 1px solid var(--line); font-size: .72rem; }
.modal-footer p { margin: 0; color: var(--muted); }
.modal-footer a { color: var(--orange); font-weight: 800; text-decoration: none; }

.confirmation-page { min-height: 100vh; background: radial-gradient(circle at 50% 0, #fff 0, var(--paper) 42%, #f0ede6 100%); }
.confirmation-header { border-bottom: 0; }
.confirmation-main { width: min(920px, calc(100% - 36px)); margin-inline: auto; padding: 38px 0 80px; }
.confirmation-card { padding: clamp(29px, 6vw, 64px); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); text-align: center; }
.success-mark { width: 74px; height: 74px; margin: 0 auto 23px; display: grid; place-items: center; background: var(--orange-soft); border-radius: 50%; }
.success-mark span { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--orange); border-radius: 50%; font-size: 1.45rem; }
.confirmation-card > h1 { max-width: 680px; margin: 0 auto 17px; font-size: clamp(2rem, 5vw, 4rem); }
.confirmation-lede { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 1rem; }
.next-steps { max-width: 650px; margin: 42px auto; padding: 24px 28px; background: var(--paper); border-radius: 15px; text-align: left; }
.next-steps > p { margin: 0 0 18px; color: var(--orange); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.next-steps ol { margin: 0; padding: 0; list-style: none; }
.next-steps li { display: grid; grid-template-columns: 37px 1fr; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); }
.next-steps li > span { color: var(--orange); font: 800 .72rem var(--display); }
.next-steps strong, .next-steps small { display: block; }
.next-steps strong { margin-bottom: 3px; font-size: .86rem; }
.next-steps small { color: var(--muted); font-size: .74rem; }
.guided-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 27px 30px; color: #fff; background: var(--ink); border-radius: 15px; text-align: left; }
.guided-card p { margin: 0 0 5px; color: #ef7a46; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.guided-card h2 { margin: 0 0 7px; font-size: 1.25rem; }
.guided-card span { color: #aaa9a1; font-size: .74rem; }
.guided-card .button { white-space: nowrap; }
.back-home { display: inline-block; margin-top: 28px; color: var(--muted); font-size: .78rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lede, .product-window { margin-inline: auto; }
  .trust-row { justify-content: center; }
  .form-card { width: min(590px, 100%); margin-inline: auto; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-section { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 620px) {
  .shell, .site-header { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 70px; }
  .brand { width: 138px; }
  .button-ghost { min-height: 40px; padding-inline: 13px; font-size: .72rem; }
  .button-ghost svg { display: none; }
  .hero { min-height: auto; padding-block: 46px 58px; gap: 48px; }
  .hero h1 { font-size: 2.45rem; }
  .hero-lede { font-size: .96rem; }
  .trust-row { gap: 8px 15px; }
  .product-window { width: calc(100% - 10px); }
  .window-tag { right: -8px; bottom: 12px; }
  .form-card { padding: 24px 19px; border-radius: 16px; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-grid article { min-height: auto; }
  .quality-icon { margin-top: 42px; }
  .qualities-section, .choice-section { padding-block: 72px; }
  .footer-inner { align-items: flex-start; flex-wrap: wrap; gap: 12px; text-align: left; }
  .footer-brand { width: 100%; flex-basis: 100%; }
  .footer-inner p:last-child { width: 100%; margin-left: 0; }
  .modal-header { grid-template-columns: 120px 1fr auto; gap: 10px; padding-inline: 12px; }
  .modal-brand { width: 120px; }
  .modal-brand img { width: 205px; }
  .modal-header div { display: none; }
  .modal-footer { display: block; text-align: center; }
  .modal-footer p { display: none; }
  .guided-card { grid-template-columns: 1fr; text-align: center; }
  .guided-card .button { width: 100%; }
  .next-steps { padding: 20px; }
}

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