:root {
  --ink: #111315;
  --ink-soft: #2d3135;
  --paper: #f4f1ec;
  --paper-strong: #fffdf9;
  --line: #d9d4cb;
  --muted: #6b7072;
  --orange: #eb6d2e;
  --orange-dark: #c8551e;
  --display: Arial, Helvetica, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --radius: 4px;
  --shadow: 0 18px 42px rgba(17, 19, 21, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); font-family: var(--body); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .7rem 1rem; background: var(--orange); color: #fff; font-weight: 800; transition: top .2s ease; }
.skip-link:focus { top: 1rem; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 104px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: .65rem; margin: 0 0 1.05rem; color: #5f5d57; font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.eyebrow span { display: inline-block; width: 30px; height: 2px; background: var(--orange); }
.muted { color: var(--muted); }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(217, 212, 203, .95); background: rgba(244, 241, 236, .94); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; min-width: 0; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; color: #fff; background: var(--ink); font-size: .78rem; font-weight: 900; letter-spacing: -.08em; }
.brand-copy { display: grid; gap: .05rem; min-width: 0; }
.brand-copy strong { font-size: .86rem; letter-spacing: .045em; line-height: 1.1; }
.brand-copy small { color: #676963; font-size: .63rem; letter-spacing: .035em; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 1.65rem; font-size: .84rem; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { position: absolute; left: 0; right: 0; bottom: -.35rem; height: 1px; content: ''; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { padding: .72rem 1rem; color: #fff; background: var(--ink); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { overflow: hidden; padding-top: 78px; padding-bottom: 78px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); gap: 5.6rem; align-items: center; }
.hero-copy h1 { max-width: 690px; margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 5.75rem); font-weight: 800; letter-spacing: -.065em; line-height: .93; }
.hero-copy h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 680px; margin: 2rem 0 0; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 2.5rem; min-height: 52px; padding: .9rem 1.05rem .9rem 1.2rem; border: 1px solid transparent; font-size: .82rem; font-weight: 800; letter-spacing: .02em; transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-secondary:hover { color: #fff; background: var(--ink); }
.hero-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.hero-summary div { display: grid; grid-template-columns: 26px 1fr; align-items: start; gap: .45rem; }
.hero-summary span { color: var(--orange); font-size: .73rem; font-weight: 900; }
.hero-summary p { margin: 0; font-size: .75rem; font-weight: 700; line-height: 1.35; }

.image-slot { position: relative; overflow: hidden; min-height: 320px; margin: 0; isolation: isolate; color: #fff; background: #202326; border: 1px solid rgba(255,255,255,.11); }
.image-slot::before { position: absolute; inset: 0; z-index: -2; content: ''; background: linear-gradient(145deg, #1d2225, #0e1113); }
.image-slot::after { position: absolute; inset: 0; z-index: -1; content: ''; opacity: .48; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 27px 27px; }
.image-slot.has-image { background-position: center; background-size: cover; }
.image-slot.has-image::before { background: linear-gradient(180deg, rgba(6,8,10,.08) 22%, rgba(6,8,10,.85) 100%); }
.image-slot.has-image::after { display: none; }
.image-slot-copy { position: absolute; left: 1.25rem; bottom: 2.55rem; display: grid; gap: .22rem; max-width: calc(100% - 2.5rem); }
.slot-kicker { color: var(--orange); font-size: .66rem; font-weight: 900; letter-spacing: .16em; }
.image-slot-copy strong { font-size: clamp(1.18rem, 2.4vw, 1.6rem); letter-spacing: -.025em; line-height: 1.13; }
.image-slot-copy small { color: rgba(255,255,255,.7); font-size: .72rem; }
.image-slot code { font-family: ui-monospace, monospace; color: rgba(255,255,255,.85); font-size: .67rem; }
.image-slot figcaption { position: absolute; left: 1.25rem; right: 1.25rem; bottom: .95rem; color: rgba(255,255,255,.65); font-size: .68rem; line-height: 1.3; }
.hero-image { min-height: 520px; box-shadow: var(--shadow); }
.hero-image .image-slot-copy { bottom: 3.2rem; }

.scope-strip { color: #fff; background: var(--ink); overflow: hidden; }
.scope-strip p { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .75rem 1.1rem; min-height: 58px; margin: 0; font-size: .69rem; font-weight: 800; letter-spacing: .11em; text-align: center; }
.scope-strip i { display: block; width: 4px; height: 4px; background: var(--orange); border-radius: 50%; }

.intro-section { border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 4rem; }
.intro-grid h2, .section-heading h2, .process-sticky h2, .info-panel h2, .contact-grid h2, .quote-copy h2, .faq-grid h2 { margin: 0; font-size: clamp(2.15rem, 4.2vw, 4.15rem); letter-spacing: -.06em; line-height: .98; }
.intro-grid p:not(.eyebrow) { max-width: 800px; margin: 1.4rem 0 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }

.section-heading { display: grid; gap: .2rem; max-width: 780px; margin-bottom: 3.1rem; }
.section-heading > p:not(.eyebrow) { max-width: 640px; margin: 1rem 0 0; color: var(--muted); }
.split-heading { max-width: none; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); gap: 4rem; align-items: end; }
.split-heading > p { margin: 0 !important; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.service-card { display: flex; flex-direction: column; min-height: 430px; padding: 1.45rem; background: var(--paper-strong); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; gap: .6rem; color: var(--orange); font-size: .74rem; font-weight: 900; }
.service-tag { color: #77766f; font-size: .62rem; letter-spacing: .13em; }
.service-card h3 { max-width: 310px; margin: 3.25rem 0 1rem; font-size: 1.55rem; letter-spacing: -.045em; line-height: 1.04; }
.service-card p { margin: 0; color: #565a5c; font-size: .89rem; line-height: 1.65; }
.service-card ul { margin: 1.15rem 0 1.3rem; padding: 0; list-style: none; color: #454a4d; font-size: .79rem; line-height: 1.55; }
.service-card li { position: relative; padding: .25rem 0 .25rem 1rem; border-bottom: 1px solid rgba(217,212,203,.75); }
.service-card li::before { position: absolute; left: 0; top: .73rem; width: 4px; height: 4px; content: ''; background: var(--orange); border-radius: 50%; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; margin-top: auto; color: var(--ink); font-size: .76rem; font-weight: 900; }
.text-link span { color: var(--orange); font-size: 1rem; }
.accent-card { background: #f8e7db; }
.dark-card { color: #fff; background: var(--ink); }
.dark-card .service-tag, .dark-card p, .dark-card ul { color: #d1d2d0; }
.dark-card li { border-color: rgba(255,255,255,.14); }
.dark-card .text-link { color: #fff; }
.service-note { justify-content: center; background: #e7e3dc; }
.service-note-number { color: var(--orange); font-size: 3.2rem; font-weight: 900; letter-spacing: -.08em; }
.service-note h3 { margin-top: .75rem; }

.work-section { color: #fff; background: #15181b; }
.work-section .section-heading h2 { color: #fff; }
.work-section .section-heading > p:not(.eyebrow) { color: #b4b7b7; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 225px; gap: 10px; }
.gallery-item { min-height: 0; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item .image-slot-copy { bottom: 2.4rem; }
.gallery-item figcaption { font-size: .63rem; }

.process-section { background: var(--paper-strong); }
.process-grid-layout { display: grid; grid-template-columns: minmax(290px, .82fr) minmax(0, 1.18fr); gap: 6rem; }
.process-sticky { align-self: start; position: sticky; top: 120px; }
.process-sticky > p:not(.eyebrow) { max-width: 420px; margin: 1.25rem 0 0; color: var(--muted); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--orange); font-size: .8rem; font-weight: 900; }
.process-list h3 { margin: 0; font-size: 1.35rem; letter-spacing: -.035em; }
.process-list p { max-width: 580px; margin: .52rem 0 0; color: #5b5f61; }

.information-section { background: #e7e3dc; }
.info-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 4.2rem; align-items: stretch; }
.info-panel { padding: 1.1rem 0; }
.info-panel > p:not(.eyebrow) { max-width: 510px; }
.check-list { display: grid; gap: .3rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: .6rem; padding: .75rem 0; border-bottom: 1px solid rgba(17,19,21,.14); font-size: .9rem; font-weight: 700; }
.check-list span { color: var(--orange); font-weight: 900; }
.information-image { min-height: 420px; }

.contact-section { background: var(--paper-strong); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr); gap: 5rem; align-items: center; }
.contact-intro { max-width: 590px; margin: 1.3rem 0 0; color: var(--muted); }
.contact-details { margin-top: 2rem; border-top: 1px solid var(--line); }
.contact-row { display: grid; grid-template-columns: 100px 1fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.contact-row span { color: #77766f; font-size: .64rem; font-weight: 900; letter-spacing: .12em; }
.contact-row strong { font-size: .9rem; }
a.contact-row:hover strong { color: var(--orange); }
.map-placeholder { display: grid; align-content: center; min-height: 390px; padding: 2rem; color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.map-placeholder::before { width: 58px; height: 58px; margin-bottom: 1.3rem; content: ''; border: 2px solid var(--orange); background: linear-gradient(45deg, transparent 44%, var(--orange) 45%, var(--orange) 55%, transparent 56%); }
.map-placeholder strong { max-width: 320px; font-size: 1.55rem; letter-spacing: -.045em; line-height: 1.05; }
.map-placeholder p { max-width: 360px; margin: .85rem 0 0; color: #b9bcbd; font-size: .85rem; }

.quote-section { color: #fff; background: #1a1d1f; }
.quote-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 5rem; }
.quote-copy h2 { color: #fff; }
.quote-copy > p:not(.eyebrow) { max-width: 410px; color: #c3c5c3; }
.quote-copy .muted { color: #8f9492; font-size: .82rem; }
.quote-form { padding: 1.45rem; background: #fffdf9; color: var(--ink); }
.quote-form label { display: grid; gap: .45rem; color: #444846; font-size: .75rem; font-weight: 800; }
.quote-form b { color: var(--orange); }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.quote-form input, .quote-form textarea, .quote-form select { width: 100%; padding: .82rem .9rem; color: var(--ink); border: 1px solid #ccc6ba; border-radius: 0; outline: none; background: #fff; font-size: .86rem; font-weight: 500; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form textarea { resize: vertical; min-height: 130px; }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(235,109,46,.16); }
.quote-form > label:not(.checkbox-line) { margin-bottom: 1rem; }
.checkbox-line { display: flex !important; align-items: flex-start; gap: .7rem; margin: .9rem 0 1.2rem; color: #656865 !important; font-size: .7rem !important; line-height: 1.4; }
.checkbox-line input { width: 15px; height: 15px; margin: .1rem 0 0; accent-color: var(--orange); }
.form-submit { width: 100%; justify-content: space-between; }
.form-status { min-height: 1.3rem; margin: .8rem 0 0; color: #595d5f; font-size: .76rem; }
.form-status.is-error { color: #a93718; }
.form-status.is-success { color: #237341; }

.faq-section { padding-bottom: 112px; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 5rem; }
.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: 1.5rem; padding: 1.18rem 0; cursor: pointer; font-size: .98rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { flex: 0 0 auto; content: '+'; color: var(--orange); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list p { max-width: 680px; margin: 0 0 1.2rem; color: #626667; font-size: .89rem; }

.site-footer { padding-top: 62px; color: #d5d7d3; background: #111315; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr .7fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .brand-mark { color: var(--ink); background: var(--orange); }
.footer-brand .brand-copy strong { color: #fff; }
.footer-brand .brand-copy small { color: #a0a39f; }
.footer-grid p { max-width: 420px; margin: 1.3rem 0 0; color: #9da09d; font-size: .83rem; }
.footer-grid h3 { margin: 0 0 1rem; color: #fff; font-size: .7rem; letter-spacing: .12em; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: .55rem; }
.footer-grid > div:not(:first-child) a { color: #aaada8; font-size: .8rem; }
.footer-grid > div:not(:first-child) a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.12); color: #878b87; font-size: .7rem; }
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 980px) {
  .hero-grid, .quote-grid, .contact-grid, .info-grid, .process-grid-layout, .faq-grid, .intro-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 3rem; }
  .hero-image { min-height: 430px; }
  .intro-grid, .process-grid-layout, .quote-grid, .contact-grid, .faq-grid { gap: 2.6rem; }
  .split-heading { grid-template-columns: 1fr; gap: 1.25rem; }
  .process-sticky { position: static; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-copy > p:not(.eyebrow) { max-width: 650px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1180px); }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 66px; gap: .75rem; }
  .brand-mark { width: 36px; height: 36px; font-size: .68rem; }
  .brand-copy strong { font-size: .73rem; }
  .brand-copy small { max-width: 188px; overflow: hidden; font-size: .54rem; text-overflow: ellipsis; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 0; right: 0; top: calc(100% + 1px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .55rem 16px 1rem; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 14px 26px rgba(17,19,21,.08); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .8rem 0; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: .55rem; padding: .85rem 1rem !important; text-align: center; }
  .hero { padding-top: 52px; padding-bottom: 52px; }
  .hero-copy h1 { font-size: clamp(2.9rem, 14vw, 4.25rem); }
  .hero-lead { margin-top: 1.45rem; font-size: 1rem; }
  .btn { width: 100%; gap: 1rem; justify-content: space-between; }
  .hero-summary { grid-template-columns: 1fr; gap: .8rem; margin-top: 2rem; }
  .hero-image { min-height: 340px; }
  .scope-strip p { padding: .75rem 0; line-height: 1.35; }
  .intro-grid h2, .section-heading h2, .process-sticky h2, .info-panel h2, .contact-grid h2, .quote-copy h2, .faq-grid h2 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 1.25rem; }
  .service-card h3 { margin-top: 2.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 185px; gap: 7px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item .image-slot-copy { bottom: 2.45rem; }
  .gallery-item .image-slot-copy strong { font-size: 1rem; }
  .gallery-item .image-slot-copy small { font-size: .6rem; }
  .gallery-item figcaption { font-size: .56rem; }
  .information-image { min-height: 330px; }
  .map-placeholder { min-height: 290px; }
  .form-row.two { grid-template-columns: 1fr; }
  .quote-form { padding: 1.1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}

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