:root {
  --ink: #080808;
  --ink-soft: #151515;
  --paper: #f1efe9;
  --white: #ffffff;
  --grey: #b9b9b6;
  --line: #d7d4cc;
  --yellow: #f5c536;
  --yellow-dark: #d4a510;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-lock { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--yellow); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--yellow);
  padding: 10px 16px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(8, 8, 8, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  white-space: nowrap;
}
.brand-group { color: #c9c9c9; font-family: Georgia, serif; font-size: 16px; }
.brand-name { color: var(--yellow); font-family: Georgia, serif; font-size: 30px; font-style: italic; font-weight: 700; letter-spacing: -1px; }
.brand-inc { color: #c9c9c9; font-family: Georgia, serif; font-size: 14px; font-style: italic; }

nav { display: flex; align-items: center; gap: 31px; }
nav > a:not(.button) {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
nav > a:not(.button):hover { color: var(--yellow); }
.menu-button { display: none; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.button:hover { background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 11px; }
.button-light { background: var(--white); border-color: var(--white); }
.button-light:hover { background: var(--yellow); border-color: var(--yellow); }
.button-outline-dark { background: transparent; border-color: var(--ink); }
.button-outline-dark:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: center;
  padding: clamp(70px, 8vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}
.hero-grid {
  position: absolute;
  inset: 0 50% 0 0;
  opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, black, transparent);
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px;
  color: var(--grey);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow > span { width: 30px; height: 2px; background: var(--yellow); }
.eyebrow.dark { color: #55544f; }
.hero h1, .section h2, .facts-section h2, .quote-section h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(50px, 6.1vw, 88px);
  line-height: .94;
  letter-spacing: -.065em;
}
.hero h1 em, .why h2 em, .quote-section h2 em {
  color: var(--yellow);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -.055em;
}
.hero-lede {
  max-width: 650px;
  margin: 32px 0 0;
  color: #c8c8c4;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  border-bottom: 1px solid #686868;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease;
}
.text-link:hover { color: var(--yellow); border-color: var(--yellow); }
.trust-note { display: flex; gap: 9px; align-items: center; margin: 26px 0 0; color: #a8a8a5; font-size: 13px; }
.trust-note span { color: var(--yellow); }

.hero-visual { align-self: stretch; min-height: 540px; display: flex; align-items: center; }
.image-frame {
  position: absolute;
  inset: 0 0 38px 28px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: #000;
}
.image-frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  width: 35%;
  height: 8px;
  background: var(--yellow);
}
.image-frame img { width: 100%; height: 100%; object-fit: contain; }
.hero-callout {
  position: absolute;
  right: -20px;
  bottom: 0;
  z-index: 3;
  min-width: 260px;
  padding: 19px 23px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.hero-callout span { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-callout a { font-size: 23px; font-weight: 900; text-decoration: none; }

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 55px);
  min-height: 84px;
  padding: 20px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-strip p { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.trust-strip > span { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow-dark); }

.section { padding: clamp(95px, 12vw, 175px) max(24px, calc((100vw - var(--max)) / 2)); }
.services, .process, .faq { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(500px, 1.35fr); column-gap: 60px; align-items: start; }
.section-heading .eyebrow { grid-column: 1; }
.section-heading h2 { grid-column: 2; grid-row: 1 / span 2; font-size: clamp(45px, 5vw, 70px); }
.section-heading > p:last-child { grid-column: 2; max-width: 560px; margin: 28px 0 0; color: #5c5a55; font-size: 18px; line-height: 1.55; }

.service-explorer { display: grid; grid-template-columns: 1.08fr .92fr; margin-top: 84px; border-top: 1px solid #aaa79f; }
.service-list { display: grid; }
.service-tab {
  min-height: 74px;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  padding: 0 22px 0 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c6c3bb;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, padding .2s ease;
}
.service-tab span { color: #7a7872; font-family: Georgia, serif; font-size: 14px; }
.service-tab strong { font-size: clamp(17px, 2vw, 22px); }
.service-tab i { font-style: normal; opacity: 0; transform: translate(-8px, 8px); transition: .2s ease; }
.service-tab:hover, .service-tab.active { padding-left: 20px; background: var(--yellow); }
.service-tab:hover i, .service-tab.active i { opacity: 1; transform: none; }
.service-panel {
  position: sticky;
  top: 105px;
  min-height: 592px;
  align-self: start;
  overflow: hidden;
  padding: 53px clamp(34px, 5vw, 70px);
  background: var(--ink-soft);
  color: var(--white);
}
.service-panel::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px; border: 60px solid rgba(245,197,54,.08); border-radius: 50%; }
.service-kicker { margin: 0; color: var(--yellow); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.service-number { margin-top: 42px; color: #343434; font-family: Georgia, serif; font-size: 110px; line-height: .8; }
.service-panel h3 { position: relative; z-index: 1; margin: 30px 0 19px; font-size: clamp(34px, 4vw, 52px); letter-spacing: -.04em; }
.service-panel > p:not(.service-kicker) { position: relative; z-index: 1; max-width: 430px; margin: 0 0 36px; color: #bcbcb8; font-size: 17px; line-height: 1.6; }
.service-panel .button { position: relative; z-index: 1; }

.why { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(65px, 10vw, 145px); background: var(--ink); color: var(--white); }
.why-intro { position: sticky; top: 135px; align-self: start; }
.why h2 { font-size: clamp(48px, 5.4vw, 75px); }
.why-intro > p:not(.eyebrow) { margin: 34px 0; color: #adadaa; font-size: 17px; line-height: 1.65; }
.why-points article { min-height: 185px; display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: start; padding: 38px 0; border-top: 1px solid #3b3b3b; }
.why-points article:last-child { border-bottom: 1px solid #3b3b3b; }
.why-points article > span { color: var(--yellow); font-family: Georgia, serif; font-size: 16px; }
.why-points h3 { margin: 0 0 15px; font-size: clamp(25px, 3vw, 36px); letter-spacing: -.035em; }
.why-points p { max-width: 540px; margin: 0; color: #aaa; font-size: 16px; line-height: 1.6; }

.section-heading.compact { grid-template-columns: .55fr 1.45fr; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 85px 0 0; padding: 0; list-style: none; background: #bdbab2; border: 1px solid #bdbab2; }
.process-list li { min-height: 320px; padding: 35px; background: var(--paper); }
.process-list li > span { display: block; margin-bottom: 80px; color: #6a6863; font-family: Georgia, serif; }
.process-list h3 { margin: 0 0 16px; font-size: 27px; letter-spacing: -.035em; }
.process-list p { margin: 0; color: #65635f; line-height: 1.55; }
.process-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 30px 35px; background: var(--white); border: 1px solid #d2cfc7; border-top: 0; }
.process-cta p { margin: 0; font-family: Georgia, serif; font-size: 22px; font-style: italic; }

.facts-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(55px, 10vw, 140px);
  padding: clamp(90px, 10vw, 145px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--yellow);
}
.facts-section h2 { font-size: clamp(45px, 5vw, 67px); }
.facts { margin: 0; border-top: 1px solid rgba(8,8,8,.45); }
.facts > div { display: grid; grid-template-columns: 1fr 1.2fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid rgba(8,8,8,.45); }
.facts dt { font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.facts dd { margin: 0; font-size: 18px; font-weight: 800; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 10vw, 140px); }
.faq-intro { align-self: start; }
.faq h2 { font-size: clamp(44px, 5vw, 67px); }
.faq-intro > p:not(.eyebrow) { margin: 28px 0; color: #66635e; line-height: 1.6; }
.dark-link { color: var(--ink); border-color: #aaa69e; }
.accordion { border-top: 1px solid #a7a49d; }
.accordion details { border-bottom: 1px solid #bbb8b0; }
.accordion summary { min-height: 83px; display: flex; align-items: center; justify-content: space-between; gap: 25px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 auto; border: 1px solid #a3a098; border-radius: 50%; font-style: normal; transition: transform .25s ease, background .25s ease; }
.accordion details[open] summary i { transform: rotate(45deg); background: var(--yellow); border-color: var(--yellow); }
.answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion details[open] .answer { grid-template-rows: 1fr; }
.answer p { overflow: hidden; max-width: 620px; margin: 0 55px 28px 0; color: #625f5a; line-height: 1.65; }

.quote-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(55px, 9vw, 130px);
  padding: clamp(95px, 12vw, 175px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink-soft);
  color: var(--white);
}
.quote-section h2 { font-size: clamp(46px, 5.6vw, 76px); }
.quote-copy > p:not(.eyebrow) { margin: 30px 0; color: #afafab; font-size: 17px; line-height: 1.6; }
.contact-card { margin-top: 45px; padding: 25px; background: var(--yellow); color: var(--ink); }
.contact-card span { display: block; margin-bottom: 6px; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-card a { font-size: clamp(25px, 3vw, 36px); font-weight: 900; text-decoration: none; }
.contact-placeholders { margin: 27px 0 0; }
.contact-placeholders > div { display: grid; grid-template-columns: 110px 1fr; gap: 15px; padding: 12px 0; border-bottom: 1px solid #363636; }
.contact-placeholders dt { color: #8f8f8b; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-placeholders dd { margin: 0; color: #d0d0cd; font-size: 13px; }
.contact-placeholders dd span { display: inline-block; margin-left: 8px; padding: 3px 6px; background: #383838; color: var(--yellow); font-size: 8px; font-weight: 800; letter-spacing: .1em; }

.quote-form-wrap { min-height: 670px; padding: clamp(30px, 5vw, 58px); background: var(--paper); color: var(--ink); }
.form-heading { display: flex; justify-content: space-between; margin-bottom: 42px; padding-bottom: 18px; border-bottom: 1px solid #aaa79f; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
form label { display: block; margin-bottom: 25px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
form input, form select, form textarea {
  width: 100%;
  display: block;
  margin-top: 9px;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9d9a93;
  border-radius: 0;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}
form textarea { resize: vertical; }
form input:focus, form select:focus, form textarea:focus { border-color: var(--yellow-dark); box-shadow: 0 2px 0 var(--yellow-dark); }
form input::placeholder, form textarea::placeholder { color: #89867f; opacity: 1; }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .65; }
.form-note { margin: 15px 0 0; color: #77746e; font-size: 11px; line-height: 1.5; text-align: center; }
.form-error { margin: 15px 0 0; color: #9a251d; font-size: 12px; font-weight: 700; line-height: 1.5; }
.is-hidden { display: none !important; }
.success-state { min-height: 550px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.success-mark { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 35px; background: var(--yellow); border-radius: 50%; font-size: 22px; }
.success-state h3 { max-width: 500px; margin: 0 0 20px; font-size: clamp(36px, 4vw, 50px); line-height: 1; letter-spacing: -.045em; }
.success-state > p:not(.eyebrow) { margin: 0 0 28px; color: #66635e; line-height: 1.6; }
.success-state .button { width: 100%; margin-top: 10px; }
.reset-button { align-self: center; margin-top: 24px; background: none; border: 0; border-bottom: 1px solid #918e86; cursor: pointer; font-size: 12px; font-weight: 800; }

footer { padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 35px; background: var(--ink); color: var(--white); border-top: 1px solid #333; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 50px; border-bottom: 1px solid #373737; }
.footer-brand .brand-group { font-size: 20px; }
.footer-brand .brand-name { font-size: 43px; }
.footer-brand .brand-inc { font-size: 18px; }
.footer-phone { color: var(--yellow); font-size: clamp(23px, 3vw, 35px); font-weight: 900; text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr 1fr; gap: 70px; padding: 45px 0; }
.footer-grid h2 { margin: 0 0 13px; color: #747474; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid p { margin: 0; color: #bababa; font-size: 13px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid #252525; color: #686868; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.mobile-cta { display: none; }

.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.why-points [data-reveal]:nth-child(2), .process-list [data-reveal]:nth-child(2) { transition-delay: .08s; }
.why-points [data-reveal]:nth-child(3), .process-list [data-reveal]:nth-child(3) { transition-delay: .16s; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 650px; }
  .image-frame { left: 0; }
  .section-heading, .section-heading.compact { grid-template-columns: 1fr; }
  .section-heading .eyebrow, .section-heading h2, .section-heading > p:last-child { grid-column: 1; grid-row: auto; }
  .service-explorer { grid-template-columns: 1fr; }
  .service-panel { position: relative; top: auto; min-height: 440px; }
  .why, .faq, .quote-section, .facts-section { grid-template-columns: 1fr; }
  .why-intro { position: relative; top: auto; }
  .facts-section, .faq { gap: 65px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: auto; }
  .process-list li > span { margin-bottom: 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  body { padding-bottom: 64px; }
  .site-header { min-height: 66px; padding: 8px 18px; }
  .brand-group { font-size: 13px; }
  .brand-name { font-size: 26px; }
  .brand-inc { font-size: 12px; }
  .menu-button { width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; background: transparent; border: 1px solid #444; color: var(--white); }
  .menu-button span { width: 20px; height: 2px; display: block; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  nav {
    position: fixed;
    inset: 66px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 32px 20px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: .2s ease;
  }
  nav.nav-open { opacity: 1; pointer-events: auto; transform: none; }
  nav > a:not(.button) { padding: 22px 4px; border-bottom: 1px solid #303030; font-size: 18px; }
  nav .button { margin-top: 28px; }
  .hero { gap: 56px; padding: 72px 20px 66px; }
  .hero-grid { inset-right: 0; }
  .hero h1 { font-size: clamp(45px, 14.5vw, 65px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; }
  .text-link { justify-content: space-between; }
  .hero-visual { min-height: 430px; }
  .image-frame { inset: 0 0 28px; }
  .hero-callout { right: -8px; min-width: 235px; }
  .trust-strip { justify-content: flex-start; overflow-x: auto; }
  .trust-strip p { flex: 0 0 auto; }
  .section { padding: 90px 20px; }
  .section-heading h2, .why h2, .faq h2, .facts-section h2, .quote-section h2 { font-size: clamp(42px, 12vw, 58px); }
  .service-explorer { margin-top: 55px; }
  .service-tab { min-height: 68px; grid-template-columns: 44px 1fr 22px; padding-right: 8px; }
  .service-tab:hover, .service-tab.active { padding-left: 10px; }
  .service-panel { min-height: 430px; padding: 42px 28px; }
  .service-number { font-size: 82px; }
  .why { gap: 70px; }
  .why-points article { grid-template-columns: 46px 1fr; gap: 12px; }
  .process-list { margin-top: 55px; }
  .process-list li { padding: 28px; }
  .process-cta { align-items: stretch; flex-direction: column; }
  .facts-section { padding: 90px 20px; }
  .facts > div { grid-template-columns: 1fr; gap: 8px; }
  .faq { gap: 55px; }
  .accordion summary { font-size: 16px; }
  .quote-section { padding: 90px 20px; }
  .quote-form-wrap { min-height: auto; padding: 30px 22px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 -8px 24px rgba(0,0,0,.22);
  }
}

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