@font-face {
  font-family: "Outfit";
  src: url("/fonts/Outfit.woff2") format("woff2"), url("/fonts/Outfit.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/Manrope.woff2") format("woff2"), url("/fonts/Manrope.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #00a800;
  --green-dark: #007e00;
  --green-deep: #006800;
  --charcoal: #1f2933;
  --ink: #172029;
  --muted: #5c6874;
  --mist: #f3f6f2;
  --line: #dfe5df;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
section[id] { scroll-margin-top: 24px; }

.section-shell { width: min(1320px, calc(100% - 64px)); margin-inline: auto; }
.eyebrow { margin: 0 0 28px; display: flex; align-items: center; gap: 12px; color: var(--green-dark); text-transform: uppercase; letter-spacing: .16em; font-size: .69rem; font-weight: 800; }
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
.eyebrow.light { color: #bdffbd; }
h1, h2, h3 { font-family: "Outfit", Arial, sans-serif; }
h2 { margin: 0; font-size: clamp(3rem, 5.4vw, 5.5rem); line-height: .95; letter-spacing: -.045em; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  width: min(1440px, calc(100% - 64px));
  height: 112px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.34);
}
.brand { display: inline-flex; width: 280px; }
.desktop-nav { display: flex; gap: 28px; color: white; font-size: .78rem; font-weight: 800; }
.desktop-nav a, .text-link { text-decoration: none; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 4px; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; }
.mobile-menu { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 2px;
  background: var(--green-dark);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .75rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.button:hover { background: var(--green-deep); transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid #8df08d; outline-offset: 3px; }
.button:disabled { cursor: wait; opacity: .7; }
.button-small { min-height: 44px; padding: 0 20px; }

.hero {
  position: relative;
  min-height: max(820px, 94svh);
  height: auto;
  max-height: none;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  background: var(--charcoal);
  color: white;
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 50% 52%; z-index: -2; animation: hero-in 1.2s ease-out both; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(13,22,27,.79) 0%, rgba(13,22,27,.37) 48%, rgba(13,22,27,.04) 78%), linear-gradient(0deg, rgba(13,22,27,.73) 0%, transparent 48%); }
.hero-content { width: min(1440px, calc(100% - 64px)); margin: 0 auto; padding: 160px 0 112px; display: flex; flex-direction: column; justify-content: flex-end; }
h1 { max-width: 1080px; margin: 0; font-size: clamp(3.8rem, 6.3vw, 6.6rem); font-weight: 700; line-height: .9; letter-spacing: -.05em; }
.hero-copy { max-width: 590px; margin: 34px 0 38px; font-size: clamp(1.05rem, 1.5vw, 1.32rem); line-height: 1.65; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: .85rem; font-weight: 800; }
.text-link span { color: #89e789; font-size: 1.1rem; }
.hero-meta { position: absolute; right: max(32px, calc((100% - 1440px)/2)); bottom: 46px; display: flex; flex-direction: column; gap: 5px; text-align: right; font-size: .73rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-meta span:last-child { color: rgba(255,255,255,.7); }

.trust-strip { min-height: 126px; margin: 0; padding: 0 max(32px, calc((100% - 1320px)/2)); display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-bottom: 1px solid var(--line); }
.trust-strip p { margin: 0; padding: 12px 28px; display: flex; flex-direction: column; gap: 5px; border-left: 1px solid var(--line); }
.trust-strip p:last-child { border-right: 1px solid var(--line); }
.trust-strip strong { font: 700 1.08rem "Outfit"; letter-spacing: -.015em; }
.trust-strip span { color: var(--muted); font-size: .72rem; }

.intro { padding: 138px 0 120px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px 100px; }
.section-lede { align-self: end; max-width: 540px; margin: 0 0 8px; color: var(--muted); font-size: 1.1rem; line-height: 1.8; }
.service-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 30px; border-top: 1px solid var(--line); }
.service-card { position: relative; padding: 42px 34px 8px 0; }
.service-card + .service-card { border-left: 1px solid var(--line); padding-left: 34px; }
.service-number { color: var(--green-dark); font: 700 .72rem "Manrope"; letter-spacing: .12em; }
.service-card h3 { margin: 44px 0 18px; font-size: 1.65rem; letter-spacing: -.025em; }
.service-card p { min-height: 90px; margin: 0 0 20px; color: var(--muted); line-height: 1.7; font-size: .93rem; }
.service-card small { display: block; min-height: 42px; color: #65717c; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.service-card a { text-decoration: none; font-size: .77rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.service-card a span { color: var(--green); margin-left: 8px; }

.proof-strip {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: white;
}
.proof-strip figure { position: relative; min-height: 520px; margin: 0; overflow: hidden; background: var(--charcoal); }
.proof-strip img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; transition: transform .7s ease; }
.proof-strip figure:nth-child(1) img { object-position: 55% center; }
.proof-strip figure:nth-child(2) img { object-position: center 62%; }
.proof-strip figure:nth-child(3) img { object-position: center; }
.proof-strip figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,20,25,.58), transparent 45%); }
.proof-strip figure:hover img { transform: scale(1.02); }
.proof-strip figcaption { position: absolute; z-index: 1; left: 28px; bottom: 26px; color: white; font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; }
.portfolio-note { margin: 0; padding: 24px 32px; color: var(--muted); text-align: center; text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; }

.portfolio { padding: 130px 0 146px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 58px 100px; }
.video-feature { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr); margin-top: 20px; padding: 18px; background: var(--charcoal); color: white; }
.intro .video-feature, .intro .service-grid { margin-top: 0; }
.video-copy { padding: 42px 38px 38px 30px; display: flex; flex-direction: column; align-items: flex-start; }
.video-copy > span { color: #9df59d; text-transform: uppercase; letter-spacing: .15em; font-size: .65rem; font-weight: 800; }
.video-copy h3 { margin: 44px 0 18px; font-size: clamp(2rem, 3vw, 3.25rem); line-height: 1; letter-spacing: -.035em; }
.video-copy p { margin: 0; color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.75; }
.video-copy a { margin-top: auto; padding-top: 28px; color: white; text-decoration: none; text-transform: uppercase; letter-spacing: .09em; font-size: .68rem; font-weight: 800; }
.video-copy a span { margin-left: 7px; color: #9df59d; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #0c1115; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: #0c1115; color: white; cursor: pointer; overflow: hidden; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: opacity .25s ease, transform .6s ease; }
.video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,17,21,.62), rgba(12,17,21,.08)); }
.video-poster:hover img { opacity: .82; transform: scale(1.012); }
.video-play { position: absolute; z-index: 1; left: 50%; top: 50%; width: 76px; height: 76px; border: 1px solid rgba(255,255,255,.78); border-radius: 50%; background: rgba(12,17,21,.58); transform: translate(-50%, -50%); }
.video-play::after { content: ""; position: absolute; left: 31px; top: 24px; border-top: 13px solid transparent; border-bottom: 13px solid transparent; border-left: 20px solid white; }
.video-poster-label { position: absolute; z-index: 1; left: 24px; bottom: 20px; color: white; text-transform: uppercase; letter-spacing: .1em; font-size: .66rem; font-weight: 800; }
.portfolio-grid { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 370px 420px 340px; gap: 18px; margin-top: 20px; }
.portfolio-grid figure { margin: 0; overflow: hidden; background: var(--mist); }
.portfolio-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.portfolio-grid figure:hover img { transform: scale(1.015); }
.portfolio-wide { grid-column: 1; }
.portfolio-tall { grid-column: 2; grid-row: 1 / span 2; }
.portfolio-standard { grid-column: 1; grid-row: 2; }
.portfolio-last { grid-column: 1 / -1; grid-row: 3; }
.portfolio-grid .portfolio-tall img { object-position: 48% center; }
.portfolio-grid .portfolio-standard img { object-position: center 62%; }

.process { padding: 138px 0; background: var(--charcoal); color: white; }
.process-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.process-heading { position: sticky; top: 60px; align-self: start; }
.process-heading h2 { max-width: 600px; }
.process-steps { border-top: 1px solid rgba(255,255,255,.22); }
.process-steps article { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.process-steps article > span { color: #9df59d; font-size: .7rem; letter-spacing: .13em; }
.process-steps h3 { margin: 0 0 12px; font-size: 1.55rem; }
.process-steps p { max-width: 580px; margin: 0; color: rgba(255,255,255,.68); line-height: 1.75; font-size: .93rem; }

.about { padding: 144px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: center; }
.about-mark { aspect-ratio: 1 / 1.06; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 35px; background: var(--green-dark); color: white; }
.about-mark img { width: 46%; }
.about-mark span { max-width: 86%; text-align: center; text-transform: uppercase; letter-spacing: .14em; line-height: 1.75; font-size: .67rem; font-weight: 800; }
.about-copy h2 { margin-bottom: 38px; }
.about-copy > p:not(.eyebrow) { max-width: 670px; margin: 0 0 22px; color: var(--muted); line-height: 1.8; }
.about-copy .about-lede { color: var(--ink); font-size: 1.18rem; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.credentials span { padding: 11px 14px; border: 1px solid var(--line); color: var(--charcoal); font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }

.service-area { position: relative; min-height: 720px; display: flex; align-items: center; overflow: hidden; color: white; background: var(--charcoal); isolation: isolate; }
.service-area > img, .area-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-area > img { object-fit: cover; object-position: 52% 53%; z-index: -2; }
.area-overlay { z-index: -1; background: linear-gradient(90deg, rgba(20,31,39,.92) 0%, rgba(20,31,39,.71) 42%, rgba(20,31,39,.14) 76%); }
.area-content { width: min(1320px, calc(100% - 64px)); margin: auto; }
.area-content h2 { max-width: 760px; font-size: clamp(4rem, 7vw, 7rem); }
.area-content > p:not(.eyebrow) { max-width: 600px; margin: 30px 0 36px; color: rgba(255,255,255,.82); line-height: 1.8; }

.faq { padding: 138px 0; display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.faq-heading { position: sticky; top: 60px; }
.faq-heading h2 { max-width: 570px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 30px 52px 30px 0; color: var(--ink); font: 700 1.2rem/1.35 "Outfit", Arial, sans-serif; letter-spacing: -.015em; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 25px; right: 2px; color: var(--green-dark); font: 400 1.8rem/1 "Manrope", Arial, sans-serif; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 680px; margin: -8px 52px 30px 0; color: var(--muted); font-size: .94rem; line-height: 1.75; }

.quote { padding: 144px 0; background: var(--mist); }
.quote-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.quote-intro { position: sticky; top: 60px; }
.quote-intro h2 { max-width: 560px; }
.quote-intro > p:not(.eyebrow) { max-width: 540px; margin: 30px 0 38px; color: var(--muted); line-height: 1.8; }
.preview-notice { max-width: 470px; padding: 18px 20px; display: flex; flex-direction: column; gap: 5px; border-left: 3px solid var(--green); background: white; }
.preview-notice strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.preview-notice span { color: var(--muted); font-size: .78rem; }
.quote-form { display: flex; flex-direction: column; gap: 24px; padding: 42px; background: white; box-shadow: 0 22px 65px rgba(31,41,51,.09); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-form label { display: flex; flex-direction: column; gap: 9px; }
.quote-form label > span { color: #4f5c68; font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #ced6cf; border-radius: 2px; background: #fbfcfb; color: var(--ink); padding: 14px 15px; transition: border .15s ease, box-shadow .15s ease; }
.quote-form input, .quote-form select { height: 51px; }
.quote-form textarea { min-height: 146px; resize: vertical; line-height: 1.5; }
.quote-form input:hover, .quote-form select:hover, .quote-form textarea:hover { border-color: #9aa79b; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile-field { display: flex; flex-direction: column; gap: 8px; }
.turnstile-field > div { min-height: 65px; }
.turnstile-field p { margin: 0; color: var(--muted); font-size: .7rem; }
.form-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.form-footer p { max-width: 290px; margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.form-status { margin: 0; padding: 14px 16px; border-left: 3px solid var(--green); background: var(--mist); color: var(--ink); font-size: .82rem; line-height: 1.5; }
.form-status.success { border-color: var(--green); background: #effbef; }
.form-status.error { border-color: #b62e2e; background: #fff0f0; }

footer { padding: 88px 0 28px; background: var(--charcoal); color: white; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 74px; }
.footer-logo { width: 360px; }
.footer-main > div:first-child p { max-width: 420px; margin: 25px 0 0; color: rgba(255,255,255,.58); font-size: .9rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; }
.footer-links > div { display: flex; flex-direction: column; gap: 13px; }
.footer-links span { margin-bottom: 10px; color: #9df59d; text-transform: uppercase; letter-spacing: .13em; font-size: .65rem; font-weight: 800; }
.footer-links a { width: fit-content; color: rgba(255,255,255,.82); text-decoration: none; font-size: .82rem; }
.footer-links p { margin: 0; color: rgba(255,255,255,.62); font-size: .8rem; line-height: 1.8; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.48); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom a { justify-self: end; color: white; text-decoration: none; }

.privacy-page { min-height: 100vh; background: var(--mist); }
.privacy-header { min-height: 112px; padding: 0 max(32px, calc((100% - 1320px)/2)); display: flex; align-items: center; background: var(--charcoal); }
.privacy-header a { width: min(300px, 72vw); }
.privacy-content { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: 104px 0 120px; }
.privacy-content h1 { max-width: none; margin-bottom: 16px; color: var(--ink); font-size: clamp(3.5rem, 8vw, 6.2rem); }
.privacy-updated { margin: 0 0 52px !important; color: var(--green-dark) !important; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem !important; font-weight: 800; }
.privacy-content h2 { margin: 54px 0 16px; font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.05; letter-spacing: -.03em; }
.privacy-content > p:not(.eyebrow) { margin: 0 0 20px; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.privacy-content code { padding: 2px 6px; background: #e2e9e2; color: var(--ink); font-size: .9em; }
.privacy-content a { color: var(--green-dark); font-weight: 700; }
.privacy-return { display: inline-flex; margin-top: 44px; text-decoration: none; }

.interior-header { position: relative; inset: auto; width: 100%; height: auto; min-height: 104px; padding-inline: max(32px, calc((100% - 1320px)/2)); background: var(--charcoal); }
.interior-header .brand { width: 270px; }
.breadcrumb { padding: 28px 0 0; display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb a { color: var(--green-dark); text-decoration: none; font-weight: 800; }
.breadcrumb span[aria-hidden="true"] { color: #9aa49d; }
.page-hero { position: relative; min-height: 650px; display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; background: var(--charcoal); color: white; }
.page-hero > img, .page-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero > img { z-index: -2; object-fit: cover; }
.page-hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(13,22,27,.9) 0%, rgba(13,22,27,.54) 52%, rgba(13,22,27,.12) 85%), linear-gradient(0deg, rgba(13,22,27,.67), transparent 55%); }
.page-hero-content { padding: 110px 0 92px; }
.page-hero h1 { max-width: 980px; font-size: clamp(3.5rem, 6.5vw, 6.7rem); }
.page-hero p:not(.eyebrow) { max-width: 690px; margin: 30px 0 0; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.75; }
.detail-section { padding: 120px 0; }
.detail-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.detail-intro h2 { max-width: 560px; }
.prose { max-width: 760px; }
.prose > p { margin: 0 0 22px; color: var(--muted); font-size: 1rem; line-height: 1.85; }
.prose > p:first-child { color: var(--ink); font-size: 1.17rem; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 72px; background: var(--line); border: 1px solid var(--line); }
.content-card { padding: 42px 34px; background: white; }
.content-card span { color: var(--green-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.content-card h3 { margin: 34px 0 16px; font-size: 1.55rem; letter-spacing: -.02em; }
.content-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.detail-band { padding: 112px 0; background: var(--mist); }
.detail-band-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.detail-band img { width: 100%; min-height: 470px; object-fit: cover; }
.detail-band h2 { margin-bottom: 30px; }
.detail-band p { margin: 0 0 20px; color: var(--muted); line-height: 1.8; }
.detail-list { margin: 30px 0 38px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.detail-list li { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: .88rem; font-weight: 800; }
.related { padding: 110px 0; background: var(--charcoal); color: white; }
.related-header { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.related h2 { max-width: 740px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { min-height: 280px; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.18); text-decoration: none; transition: background .2s ease, border-color .2s ease; }
.related-card:hover { background: rgba(255,255,255,.06); border-color: #9df59d; }
.related-card small { color: #9df59d; text-transform: uppercase; letter-spacing: .12em; font-size: .63rem; font-weight: 800; }
.related-card h3 { margin: 20px 0 10px; font-size: 1.55rem; }
.related-card p { margin: 0; color: rgba(255,255,255,.65); font-size: .84rem; line-height: 1.65; }
.page-cta { padding: 116px 0; text-align: center; }
.page-cta h2 { max-width: 850px; margin-inline: auto; }
.page-cta p { max-width: 660px; margin: 28px auto 36px; color: var(--muted); line-height: 1.8; }
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 70px; }
.area-card { padding: 40px; border: 1px solid var(--line); background: white; }
.area-card h3 { margin: 0 0 15px; font-size: 1.55rem; }
.area-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.not-found { min-height: 100vh; display: grid; place-items: center; padding: 40px; background: var(--charcoal); color: white; text-align: center; }
.not-found img { width: min(330px, 75vw); margin: 0 auto 70px; }
.not-found h1 { font-size: clamp(4.5rem, 16vw, 10rem); }
.not-found p { max-width: 560px; margin: 24px auto 34px; color: rgba(255,255,255,.7); line-height: 1.7; }
.noscript-note { margin: 0 0 20px; padding: 14px 16px; border-left: 3px solid #b62e2e; background: #fff0f0; color: var(--ink); font-size: .82rem; line-height: 1.5; }

@keyframes hero-in { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { position: relative; display: block; justify-self: end; }
  .mobile-menu summary { width: 48px; height: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.45); cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 20px; height: 2px; background: white; transition: transform .2s ease; }
  .mobile-menu[open] summary span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .mobile-menu[open] summary span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu nav { position: absolute; top: 58px; right: 0; width: min(310px, calc(100vw - 36px)); padding: 18px; display: flex; flex-direction: column; background: white; box-shadow: 0 20px 50px rgba(0,0,0,.24); }
  .mobile-menu nav a { padding: 13px; color: var(--charcoal); text-decoration: none; font-weight: 800; font-size: .82rem; }
  .mobile-menu nav a:last-child { margin-top: 8px; background: var(--green-dark); color: white; text-align: center; text-transform: uppercase; letter-spacing: .08em; }
  .process-layout, .quote-layout, .faq { gap: 70px; }
}

@media (max-width: 900px) {
  .site-header { width: calc(100% - 36px); height: 88px; }
  .brand { width: 230px; }
  .hero { min-height: 720px; height: auto; max-height: none; align-items: stretch; }
  .hero-content { width: calc(100% - 40px); padding: 150px 0 80px; justify-content: flex-start; }
  h1 { font-size: clamp(3.2rem, 8.5vw, 4.8rem); }
  .hero-meta { display: none; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .trust-strip p:nth-child(3) { border-top: 1px solid var(--line); }
  .trust-strip p:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .intro, .portfolio { grid-template-columns: 1fr; gap: 34px; padding: 100px 0; }
  .detail-intro, .detail-band-layout { grid-template-columns: 1fr; gap: 50px; }
  .content-grid, .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 220px; }
  .page-hero { min-height: 590px; }
  .page-hero-content { padding: 84px 0 76px; }
  .video-feature { grid-column: 1; grid-template-columns: 1fr; margin-top: 24px; }
  .video-copy { padding: 30px 24px 34px; }
  .video-copy h3 { margin-top: 26px; }
  .video-copy a { margin-top: 4px; }
  .section-lede { max-width: 650px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 10px; }
  .service-card, .service-card + .service-card { border-left: 0; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .service-card h3 { margin-top: 22px; }
  .service-card p, .service-card small { min-height: auto; }
  .service-card small { margin-bottom: 24px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip figure, .proof-strip img { min-height: 390px; height: 390px; }
  .portfolio-grid { grid-column: 1; grid-template-columns: 1fr 1fr; grid-template-rows: 300px 340px 280px; }
  .portfolio-wide, .portfolio-standard { grid-column: 1; }
  .portfolio-tall { grid-column: 2; grid-row: 1 / span 2; }
  .portfolio-last { grid-column: 1 / -1; grid-row: 3; }
  .process-layout, .about, .quote-layout, .faq { grid-template-columns: minmax(0, 1fr); }
  .process-heading, .quote-intro, .faq-heading { position: static; }
  .faq { gap: 54px; padding: 100px 0; }
  .about { gap: 60px; padding: 100px 0; }
  .about-mark { max-width: 580px; width: 100%; margin: auto; aspect-ratio: 1.45 / 1; }
  .about-mark img { width: 30%; }
  .service-area { min-height: 640px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom a { justify-self: start; }
}

@media (max-width: 580px) {
  .section-shell { width: calc(100% - 40px); }
  .brand { width: 212px; }
  .interior-header { min-height: 88px; padding-inline: 20px; }
  .interior-header .brand { width: 212px; }
  .hero { min-height: max(690px, 100svh); height: auto; max-height: none; }
  .hero-image { object-position: 61% 52%; }
  h1 { font-size: clamp(2.9rem, 8.5vw, 3.5rem); }
  h2 { font-size: clamp(2.65rem, 12.5vw, 3.5rem); }
  .hero-copy { font-size: .98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .eyebrow { line-height: 1.6; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip p, .trust-strip p:nth-child(3), .trust-strip p:nth-child(4) { border: 0; border-bottom: 1px solid var(--line); padding: 19px 12px; }
  .proof-strip { width: calc(100% - 40px); gap: 4px; }
  .proof-strip figure, .proof-strip img { min-height: 300px; height: 300px; }
  .portfolio-grid { display: flex; flex-direction: column; }
  .video-feature { padding: 8px; }
  .video-copy { padding: 28px 18px 30px; }
  .portfolio-grid figure { height: 280px; }
  .portfolio-grid .portfolio-tall { height: 390px; }
  .process, .quote { padding: 94px 0; }
  .faq { padding: 94px 0; }
  .process-steps article { grid-template-columns: 45px 1fr; }
  .about-mark { aspect-ratio: 1.08 / 1; }
  .about-mark img { width: 42%; }
  .service-area { min-height: 700px; }
  .service-area > img { object-position: 63% center; }
  .area-content { width: calc(100% - 40px); }
  .area-content h2 { font-size: 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 26px 20px; }
  .detail-section, .detail-band, .related, .page-cta { padding: 82px 0; }
  .content-card, .area-card { padding: 30px 24px; }
  .area-grid { grid-template-columns: 1fr; }
  .related-header { align-items: flex-start; flex-direction: column; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  footer { padding-top: 68px; }
  .footer-logo { width: 280px; }
  .footer-links { grid-template-columns: 1fr; }
  .privacy-header { min-height: 88px; padding-inline: 20px; }
  .privacy-content { width: calc(100% - 40px); padding: 76px 0 90px; }
}

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