:root {
  --ink: #17201c;
  --dark: #18231e;
  --dark-2: #223028;
  --green: #2e4136;
  --green-soft: #415748;
  --gold: #c18a39;
  --gold-light: #d7aa66;
  --cream: #f0eee6;
  --paper: #faf9f5;
  --white: #ffffff;
  --muted: #667069;
  --line: rgba(23, 32, 28, 0.14);
  --shadow: 0 24px 80px rgba(18, 28, 23, 0.14);
  --radius: 22px;
  --container: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

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

.notice { color: rgba(255,255,255,.86); background: #0f1713; font-size: .78rem; letter-spacing: .02em; }
.notice__inner { display: flex; justify-content: center; gap: 12px; padding: 7px 0; }
.notice strong { color: var(--gold-light); font-weight: 600; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 245, .94);
  backdrop-filter: blur(18px);
}

.header__inner { display: flex; align-items: center; min-height: 80px; gap: 30px; }

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 11px; }
.brand__mark { width: 42px; height: 42px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 1.08rem; letter-spacing: .07em; }
.brand__text small { margin-top: 6px; color: var(--muted); font-size: .71rem; }

.desktop-nav { display: flex; align-items: center; justify-content: center; flex: 1 1 auto; gap: 27px; }
.desktop-nav a { position: relative; font-size: .93rem; font-weight: 650; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 18px; }
.phone { display: flex; flex-direction: column; text-align: right; line-height: 1.15; }
.phone strong { font-size: .94rem; }
.phone small { margin-top: 5px; color: var(--muted); font-size: .7rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(193, 138, 57, .38); outline-offset: 3px; }
.button--small { min-height: 46px; padding: 0 18px; border-radius: 10px; font-size: .88rem; }
.button--gold { color: #151a17; background: var(--gold); }
.button--gold:hover { background: var(--gold-light); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.03); }
.button--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button--light { color: var(--ink); background: var(--paper); }
.button--full { width: 100%; }

.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 10px; background: var(--cream); }
.menu-button span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 111px 0 0; background: var(--paper); }
.mobile-menu__inner { display: flex; flex-direction: column; padding-top: 28px; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.2rem; font-weight: 700; }

.hero { position: relative; min-height: 690px; overflow: hidden; color: var(--white); background: var(--dark); }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,14,11,.93) 0%, rgba(9,14,11,.76) 43%, rgba(9,14,11,.18) 76%, rgba(9,14,11,.1) 100%), linear-gradient(0deg, rgba(9,14,11,.55) 0%, transparent 45%); }
.hero__content { position: relative; display: flex; align-items: center; min-height: 690px; padding-top: 72px; padding-bottom: 115px; }
.hero__copy { max-width: 770px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 21px; color: var(--gold-light); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 2px; background: currentColor; }
.eyebrow--dark { color: #8b6328; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(2.7rem, 5.4vw, 5.5rem); line-height: .99; letter-spacing: -.055em; }
.hero__copy > p { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: 1.15rem; line-height: 1.65; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__fineprint { font-size: .78rem !important; margin-top: 20px !important; color: rgba(255,255,255,.57) !important; }

.quick-facts { position: relative; z-index: 5; margin-top: -80px; }
.quick-facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); background: var(--green); box-shadow: var(--shadow); }
.fact { min-height: 155px; padding: 34px; color: var(--white); }
.fact + .fact { border-left: 1px solid rgba(255,255,255,.13); }
.fact strong { display: block; margin-bottom: 9px; font-size: 1.5rem; line-height: 1.05; }
.fact span { display: block; color: rgba(255,255,255,.64); font-size: .9rem; }

.section { padding: 116px 0; }
.section--light { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--dark { color: var(--white); background: var(--dark); }
.quick-facts + .section { padding-top: 145px; }

.section-heading { margin-bottom: 50px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .62fr); align-items: end; gap: 60px; }
.section-heading--center { max-width: 720px; margin-right: auto; margin-bottom: 58px; margin-left: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2, .section-copy h2 { margin: 0; max-width: 780px; font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p, .section-heading--split > p, .section-heading--center > p, .section-copy > p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.section-heading--center > p { margin-top: 20px; }
.section-heading--inverse > p { color: rgba(255,255,255,.62); }
.section-copy .lead { margin-top: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; color: #76531e; border-bottom: 1px solid currentColor; font-weight: 750; }

.important-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { min-height: 330px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.info-card--dark { color: var(--white); background: var(--dark); }
.info-card--gold { color: #1d1e1b; border-color: transparent; background: var(--gold); }
.card-number { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 90px; border: 1px solid currentColor; border-radius: 50%; opacity: .7; font-size: .79rem; font-weight: 800; }
.info-card h3 { margin: 0 0 13px; font-size: 1.45rem; }
.info-card p { margin: 0; color: var(--muted); }
.info-card--dark p { color: rgba(255,255,255,.65); }
.info-card--gold p { color: rgba(29,30,27,.72); }

.two-column { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 100px; }
.section-copy { position: sticky; top: 130px; }
.check-list { display: grid; gap: 2px; }
.check-list article { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid rgba(23,32,28,.18); }
.check-list article:first-child { padding-top: 0; }
.check-icon { display: inline-flex; align-items: center; justify-content: center; width: 43px; height: 43px; border-radius: 50%; color: var(--white); background: var(--green); font-weight: 800; }
.check-list h3 { margin: 0 0 6px; font-size: 1.18rem; }
.check-list p { margin: 0; color: var(--muted); }

.direction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.direction-card { min-height: 310px; padding: 30px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.035); transition: transform .25s ease, background .25s ease; }
.direction-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.direction-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; margin-bottom: 67px; border-radius: 50%; color: var(--gold-light); background: rgba(193,138,57,.14); font-size: .78rem; font-weight: 800; }
.direction-card h3 { margin: 0 0 11px; font-size: 1.35rem; }
.direction-card p { margin: 0; color: rgba(255,255,255,.59); }
.tag { display: inline-flex; margin-top: 22px; padding: 7px 10px; border-radius: 999px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.08); font-size: .76rem; }
.direction-card--cta { display: flex; flex-direction: column; justify-content: flex-end; color: var(--ink); background: var(--gold); }
.direction-card--cta:hover { background: var(--gold-light); }
.direction-card--cta .direction-card__kicker { margin-bottom: 9px; color: rgba(23,32,28,.64); font-size: .8rem; font-weight: 750; text-transform: uppercase; }
.direction-card--cta h3 { max-width: 270px; margin-bottom: 25px; font-size: 1.6rem; }
.direction-card--cta .button { align-self: flex-start; }

.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.support-card { min-height: 285px; padding: 27px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.support-card > span { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin-bottom: 32px; border-radius: 50%; color: var(--white); background: var(--green); font-size: .72rem; font-weight: 800; }
.support-card__value { display: block; margin-bottom: 9px; color: #76531e; font-size: 1.48rem; line-height: 1.05; letter-spacing: -.035em; }
.support-card h3 { margin: 0 0 12px; font-size: 1.17rem; line-height: 1.3; }
.support-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.estimate { display: grid; grid-template-columns: .85fr 1.15fr .85fr; gap: 32px; margin-top: 54px; padding: 38px; border-radius: var(--radius); color: var(--white); background: var(--green); }
.estimate h3 { margin: 0; font-size: 1.7rem; line-height: 1.15; }
.estimate__intro p { margin: 17px 0 0; color: rgba(255,255,255,.63); }
.estimate__form { display: grid; gap: 13px; }
.estimate label, .request-form label { display: grid; gap: 8px; font-size: .83rem; font-weight: 700; }
input, select { width: 100%; height: 54px; padding: 0 15px; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; color: var(--ink); background: var(--white); }
.estimate__result { display: flex; flex-direction: column; justify-content: center; padding: 25px; border: 1px solid rgba(255,255,255,.15); border-radius: 15px; background: rgba(0,0,0,.12); }
.estimate__result span { color: var(--gold-light); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.estimate__result strong { margin-top: 14px; font-size: 1.25rem; line-height: 1.25; }
.estimate__result p { margin: 13px 0 0; color: rgba(255,255,255,.57); font-size: .83rem; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 28px; right: 10%; left: 10%; height: 1px; background: rgba(23,32,28,.25); }
.timeline li { position: relative; padding: 0 20px; text-align: center; }
.timeline li > span { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; margin-bottom: 25px; border: 1px solid rgba(23,32,28,.25); border-radius: 50%; color: var(--white); background: var(--green); font-size: .76rem; font-weight: 800; }
.timeline h3 { margin: 0 0 10px; font-size: 1.04rem; }
.timeline p { margin: 0; color: var(--muted); font-size: .87rem; }

.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; align-items: start; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 27px 0; cursor: pointer; font-size: 1.08rem; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 33px; height: 33px; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 740px; margin: -5px 55px 25px 0; color: var(--muted); }

.request { padding: 104px 0; color: var(--white); background: var(--green); }
.request__layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 100px; }
.request h2 { margin: 0; font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.05; letter-spacing: -.045em; }
.request__copy > p { max-width: 520px; margin: 25px 0 0; color: rgba(255,255,255,.66); font-size: 1.02rem; }
.request__contacts { display: flex; flex-direction: column; margin-top: 40px; }
.request__contacts a { font-size: 1.45rem; font-weight: 800; }
.request__contacts span { margin-top: 4px; color: rgba(255,255,255,.55); font-size: .84rem; }
.request-form { display: grid; gap: 18px; padding: 34px; border-radius: var(--radius); color: var(--ink); background: var(--paper); box-shadow: 0 25px 70px rgba(0,0,0,.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.request-form input, .request-form select { border-color: var(--line); background: var(--white); }
.checkbox { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; color: var(--muted); font-size: .77rem !important; font-weight: 500 !important; }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.checkbox a { color: #76531e; text-decoration: underline; }
.form-status { min-height: 24px; margin: 0; font-size: .84rem; }
.form-status.is-error { color: #a52b2b; }
.form-status.is-success { color: #27673b; }

.footer { color: rgba(255,255,255,.68); background: #101713; }
.footer__top { display: grid; grid-template-columns: .7fr 1.15fr .65fr; align-items: start; gap: 60px; padding-top: 70px; padding-bottom: 50px; }
.brand--footer { color: var(--white); }
.brand--footer .brand__text small { color: rgba(255,255,255,.5); }
.company-details { display: grid; max-width: 560px; gap: 7px; margin: 0; font-size: .84rem; font-style: normal; line-height: 1.55; }
.company-details strong { color: var(--white); font-size: .9rem; }
.company-details span { color: rgba(255,255,255,.61); }
.footer__top nav { display: grid; gap: 11px; justify-content: end; color: var(--white); font-size: .9rem; }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; padding-bottom: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

.mobile-cta { display: none; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: .82rem; }
  .phone { display: none; }
  .hero { min-height: 650px; }
  .hero__content { min-height: 650px; }
  .quick-facts__grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .fact:nth-child(4) { border-top: 1px solid rgba(255,255,255,.13); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .estimate { grid-template-columns: 1fr 1fr; }
  .estimate__intro { grid-column: 1 / -1; }
  .timeline { grid-template-columns: 1fr; gap: 18px; }
  .timeline::before { top: 20px; bottom: 20px; left: 24px; width: 1px; height: auto; }
  .timeline li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 0; text-align: left; }
  .timeline li > span { width: 49px; height: 49px; margin: 0; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .notice__inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .notice__inner span { display: none; }
  .header__inner { min-height: 70px; }
  .desktop-nav, .header__actions { display: none; }
  .menu-button { display: block; margin-left: auto; }
  .mobile-menu { inset: 101px 0 0; }
  .hero, .hero__content { min-height: 670px; }
  .hero__image { object-position: 63% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(9,14,11,.95) 0%, rgba(9,14,11,.73) 68%, rgba(9,14,11,.32) 100%), linear-gradient(0deg, rgba(9,14,11,.48), transparent); }
  .hero__content { padding-top: 65px; padding-bottom: 95px; }
  .hero h1 { max-width: 660px; font-size: clamp(2.55rem, 10vw, 4.4rem); }
  .section { padding: 85px 0; }
  .section-heading--split, .two-column, .faq-layout, .request__layout { grid-template-columns: 1fr; gap: 35px; }
  .section-heading--split { align-items: start; }
  .section-copy { position: static; }
  .important-grid, .direction-grid { grid-template-columns: repeat(2, 1fr); }
  .info-card { min-height: 290px; }
  .card-number { margin-bottom: 55px; }
  .request__layout { gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top nav { justify-content: start; }
  .company-details { grid-column: 1 / -1; grid-row: 2; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  body { padding-bottom: 66px; }
  .notice { font-size: .7rem; }
  .notice__inner { padding: 6px 0; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__text strong { font-size: 1rem; }
  .brand__text small { font-size: .65rem; }
  .mobile-menu { inset: 95px 0 66px; }
  .hero, .hero__content { min-height: 650px; }
  .hero__content { align-items: flex-end; padding-top: 45px; padding-bottom: 70px; }
  .hero__image { object-position: 69% center; }
  .hero__overlay { background: linear-gradient(0deg, rgba(8,13,10,.96) 0%, rgba(8,13,10,.78) 58%, rgba(8,13,10,.3) 100%); }
  .hero h1 { font-size: clamp(2.25rem, 11.2vw, 3.35rem); }
  .hero__copy > p { margin-top: 22px; font-size: 1rem; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .button { width: 100%; }
  .hero__fineprint { line-height: 1.45 !important; }
  .quick-facts { margin-top: 0; background: var(--green); }
  .quick-facts .container { width: 100%; }
  .quick-facts__grid { grid-template-columns: 1fr 1fr; border: 0; border-radius: 0; box-shadow: none; }
  .fact { min-height: 128px; padding: 23px 20px; }
  .fact strong { font-size: 1.12rem; }
  .fact span { font-size: .78rem; }
  .quick-facts + .section { padding-top: 86px; }
  .section { padding: 76px 0; }
  .section-heading h2, .section-copy h2 { font-size: 2.25rem; }
  .section-heading > p, .section-heading--split > p, .section-heading--center > p, .section-copy > p { font-size: .96rem; }
  .important-grid, .direction-grid, .support-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 265px; }
  .direction-card { min-height: 285px; }
  .direction-card__icon { margin-bottom: 50px; }
  .support-card { min-height: auto; }
  .support-card > span { margin-bottom: 38px; }
  .estimate { grid-template-columns: 1fr; padding: 26px 20px; }
  .estimate__intro { grid-column: auto; }
  .timeline li { grid-template-columns: 46px 1fr; gap: 15px; }
  .timeline li > span { width: 45px; height: 45px; }
  .timeline::before { left: 22px; }
  .faq-list summary { gap: 15px; padding: 23px 0; font-size: 1rem; }
  .faq-list details p { margin-right: 0; }
  .request { padding: 76px 0; }
  .request-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 35px; }
  .company-details { grid-column: auto; grid-row: auto; }
  .mobile-cta { position: fixed; z-index: 80; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1.35fr; height: 66px; border-top: 1px solid rgba(255,255,255,.15); box-shadow: 0 -8px 30px rgba(0,0,0,.2); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; padding: 0 12px; color: var(--white); background: var(--green); font-size: .86rem; font-weight: 800; }
  .mobile-cta a:last-child { color: var(--ink); background: var(--gold); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
