@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #171817;
  --paper: #eae7dd;
  --paper-deep: #d8d5c9;
  --orange: #ff5a1f;
  --orange-deep: #d74313;
  --olive: #a4aa72;
  --line: rgba(23, 24, 23, 0.22);
  --mono: 'DM Mono', monospace;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); }
body:has(dialog[open]) { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.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; }

.site-shell { overflow: hidden; }
.section-pad { padding-left: clamp(24px, 5vw, 80px); padding-right: clamp(24px, 5vw, 80px); }
.site-header { height: 89px; padding: 0 clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); position: relative; z-index: 5; }
.wordmark { font-family: var(--display); font-size: 17px; line-height: 1; letter-spacing: -0.06em; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; }
.wordmark i { color: var(--orange); font-style: normal; }
.desktop-nav { display: flex; gap: clamp(24px, 4vw, 65px); margin-left: 12%; }
.desktop-nav a, .footer-links a { font-family: var(--mono); text-transform: uppercase; font-size: 10px; letter-spacing: .08em; transition: color .2s ease; }
.desktop-nav a:hover, .footer-links a:hover, .quiet-link:hover { color: var(--orange-deep); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.text-button, .quiet-link { border: 0; padding: 0; background: none; font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; }
.text-button span, .quiet-link span { color: var(--orange); font-size: 16px; padding-left: 7px; }
.menu-button { display: none; border: 0; background: none; padding: 8px 0 8px 8px; }
.menu-icon { width: 23px; display: grid; gap: 5px; }
.menu-icon i { height: 1px; background: var(--ink); display: block; transition: transform .2s ease; }
.mobile-menu { display: none; }

.hero { min-height: 690px; display: grid; grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr); gap: clamp(30px, 7vw, 125px); align-items: center; padding-top: 54px; padding-bottom: 70px; }
.hero-copy { padding: 30px 0 10px; }
.eyebrow, .section-index, .visual-topline, .product-meta, .closing-top, .scroll-mark { color: #62635c; font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 27px; color: var(--ink); }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 90, 31, .14); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 600; letter-spacing: -.075em; }
h1 { max-width: 680px; margin-bottom: 32px; font-size: clamp(64px, 8.1vw, 132px); line-height: .85; }
h1 em, h2 em { font-style: normal; color: var(--orange); }
.hero-intro { max-width: 315px; margin-bottom: 36px; color: #4d4e49; font-size: 14px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.primary-button, .outline-button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: 1px solid var(--ink); padding: 15px 19px 14px; background: var(--ink); color: var(--paper); font-family: var(--mono); text-transform: uppercase; letter-spacing: .07em; font-size: 10px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.primary-button span, .outline-button span { color: var(--orange); font-size: 17px; line-height: 10px; }
.primary-button:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); transform: translateY(-2px); }
.primary-button:hover span { color: var(--ink); }
.outline-button { background: transparent; color: var(--ink); }
.outline-button:hover { background: var(--ink); color: var(--paper); }

.hero-visual { align-self: stretch; min-height: 545px; position: relative; background: var(--ink); overflow: hidden; }
.hero-visual::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(23, 24, 23, .34), transparent 48%), repeating-linear-gradient(110deg, transparent 0 29px, rgba(255, 255, 255, .035) 29px 30px); mix-blend-mode: multiply; pointer-events: none; }
.hero-visual::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(23, 24, 23, .52), transparent 23%, transparent 71%, rgba(23, 24, 23, .64)); pointer-events: none; }
.hero-photo { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: saturate(.8) contrast(1.08); }
.visual-topline { position: absolute; top: 22px; left: 25px; right: 25px; display: flex; justify-content: space-between; color: var(--paper); z-index: 3; }
.sun-disc { position: absolute; width: min(31vw, 415px); aspect-ratio: 1; border-radius: 50%; background: var(--paper); left: 50%; top: 46%; transform: translate(-50%, -50%); opacity: .95; }
.gear-shadow { position: absolute; background: var(--ink); opacity: .13; border-radius: 50%; filter: blur(12px); }
.gear-shadow-one { width: 46%; height: 11%; bottom: 17%; left: 24%; }
.gear-shadow-two { width: 25%; height: 7%; bottom: 9%; left: 12%; }
.helmet { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -47%) rotate(-4deg); width: min(32vw, 400px); height: 245px; }
.helmet-shell { position: absolute; left: 13%; top: 22%; width: 74%; height: 145px; border: 21px solid var(--ink); border-bottom: 0; border-radius: 220px 220px 0 0; background: var(--orange); overflow: hidden; }
.helmet-shell::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 22px; background: var(--orange-deep); border-top: 2px solid var(--ink); }
.helmet-shell span { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--ink); opacity: .7; }
.helmet-shell span:nth-child(1) { left: 33%; transform: rotate(7deg); }.helmet-shell span:nth-child(2) { left: 50%; }.helmet-shell span:nth-child(3) { left: 67%; transform: rotate(-7deg); }
.helmet-brim { position: absolute; z-index: 2; left: 4%; bottom: 26px; width: 92%; height: 39px; background: var(--ink); border-radius: 50% 45% 25% 25%; transform: rotate(-2deg); }
.helmet-brim::after { content: ''; position: absolute; left: 5%; top: 6px; width: 90%; height: 10px; background: #353631; border-radius: 50%; }
.helmet-ridge { position: absolute; z-index: 3; left: 45%; top: 9%; width: 10%; height: 45%; border: 10px solid var(--ink); border-bottom: 0; border-radius: 30px 30px 0 0; }
.hero-label { position: absolute; z-index: 3; display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: var(--paper); }
.hero-label span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--orange); color: var(--ink); font-size: 9px; }
.label-one { left: 9%; top: 35%; }.label-two { left: 17%; bottom: 25%; }.label-three { right: 10%; top: 21%; }
.crosshair { position: absolute; z-index: 3; width: 19px; height: 19px; border: 1px solid var(--paper); border-radius: 50%; opacity: .6; }.crosshair::before, .crosshair::after { content: ''; position: absolute; background: var(--paper); }.crosshair::before { height: 1px; width: 27px; left: -5px; top: 8px; }.crosshair::after { height: 27px; width: 1px; left: 8px; top: -5px; }.crosshair-a { right: 18%; bottom: 17%; }.crosshair-b { left: 13%; top: 16%; transform: scale(.6); }
.visual-note { position: absolute; z-index: 3; right: 25px; bottom: 57px; font-family: var(--display); font-size: 18px; line-height: .95; letter-spacing: -.06em; text-align: right; color: var(--paper); }.visual-note strong { font-size: 26px; }.scroll-mark { position: absolute; z-index: 3; left: 25px; bottom: 25px; color: var(--paper); }.scroll-mark span { font-size: 16px; margin-left: 5px; }
.washer-wand { position: absolute; z-index: 2; left: 30%; top: 25%; width: 260px; height: 265px; transform: rotate(-21deg); }.wand-handle { position: absolute; left: 28px; top: 105px; width: 67px; height: 117px; background: var(--ink); border-radius: 12px 12px 27px 27px; transform: rotate(16deg); }.wand-handle::after { content: ''; position: absolute; top: 15px; left: 18px; width: 25px; height: 62px; border-radius: 12px; background: var(--orange); }.wand-tube { position: absolute; left: 79px; top: 56px; width: 156px; height: 31px; background: var(--ink); border-radius: 16px; transform: rotate(-8deg); }.wand-tube::after { content: ''; position: absolute; right: 12px; top: 8px; width: 85px; height: 15px; background: #3c3d38; border-radius: 9px; }.wand-nozzle { position: absolute; right: -3px; top: 42px; width: 60px; height: 54px; border: 17px solid var(--ink); border-left: 0; border-radius: 0 10px 10px 0; transform: rotate(-8deg); }.wand-nozzle::after { content: ''; position: absolute; right: -23px; top: 13px; width: 28px; height: 22px; background: var(--ink); transform: skewX(-18deg); }.water-spray { position: absolute; right: -75px; top: 21px; width: 90px; height: 97px; transform: rotate(8deg); }.water-spray i { position: absolute; width: 4px; height: 18px; background: var(--paper); border-radius: 5px; transform: rotate(75deg); opacity: .94; }.water-spray i:nth-child(1) { left: 0; top: 47px; }.water-spray i:nth-child(2) { left: 20px; top: 31px; height: 26px; }.water-spray i:nth-child(3) { left: 44px; top: 15px; height: 29px; }.water-spray i:nth-child(4) { left: 65px; top: 4px; height: 19px; }.water-spray i:nth-child(5) { left: 35px; top: 56px; height: 15px; }
.clean-surface { position: absolute; z-index: 1; left: 17%; right: 9%; bottom: 17%; height: 66px; background: repeating-linear-gradient(90deg, rgba(23,24,23,.45) 0 2px, transparent 2px 36px), var(--paper); transform: skewY(-8deg) rotate(-2deg); box-shadow: 18px 14px 0 rgba(23,24,23,.16); }.clean-surface::before { content: ''; position: absolute; left: 0; top: -8px; right: 0; height: 9px; background: var(--ink); }.clean-surface span { position: absolute; top: 18px; width: 42px; height: 2px; background: var(--orange); transform: rotate(-12deg); }.clean-surface span:nth-child(1) { left: 19%; }.clean-surface span:nth-child(2) { left: 47%; }.clean-surface span:nth-child(3) { left: 75%; }

.ticker { background: var(--ink); overflow: hidden; white-space: nowrap; color: var(--orange); padding: 16px 0 14px; }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 35px; animation: marquee 28s linear infinite; font-family: var(--mono); letter-spacing: .1em; font-size: 10px; }
.ticker b { font-family: sans-serif; font-size: 16px; font-weight: 400; }
@keyframes marquee { to { transform: translateX(-25%); } }

.statement { display: grid; grid-template-columns: 1fr minmax(400px, 1.4fr) .55fr; gap: 40px; padding-top: 150px; padding-bottom: 170px; }
.statement-content h2 { max-width: 650px; font-size: clamp(43px, 5vw, 77px); line-height: .92; margin-bottom: 29px; }
.statement-content p { max-width: 405px; color: #53544e; font-size: 14px; line-height: 1.65; margin-bottom: 31px; }
.statement-aside { align-self: end; display: flex; gap: 21px; align-items: center; color: #62635c; font-family: var(--mono); text-transform: uppercase; font-size: 10px; line-height: 1.6; }
.statement-aside p { margin: 0; }.stamp { width: 65px; height: 65px; border: 1px solid var(--ink); border-radius: 50%; display: grid; align-content: center; text-align: center; color: var(--orange-deep); font-family: var(--display); font-weight: 700; font-size: 23px; line-height: .65; transform: rotate(-12deg); }.stamp small { font: 7px var(--mono); margin-top: 7px; color: var(--ink); }

.kits { background: var(--ink); color: var(--paper); padding-top: 112px; padding-bottom: 130px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 55px; }.kits .section-index { color: #9b9b90; }.section-heading h2 { margin: 22px 0 0; font-size: clamp(48px, 5.4vw, 83px); line-height: .87; }.section-heading > p { margin: 0 0 3px; color: #9b9b90; font-family: var(--mono); font-size: 10px; line-height: 1.6; text-transform: uppercase; letter-spacing: .07em; text-align: right; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }.product-card { min-width: 0; min-height: 440px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); }.product-card-orange { background: var(--orange); }.product-card-cream { background: var(--paper); }.product-card-olive { background: var(--olive); }.product-card-charcoal { background: #363833; color: var(--paper); }.product-meta { display: flex; justify-content: space-between; color: inherit; opacity: .72; font-size: 9px; }.product-art { min-height: 220px; flex: 1; position: relative; display: grid; place-items: center; overflow: hidden; margin: 17px 0 18px; }.service-image { width: 100%; height: 100%; min-height: 245px; display: block; object-fit: cover; filter: saturate(.78) contrast(1.05); transition: filter .3s ease, transform .55s cubic-bezier(.2,.7,.2,1); }.product-card:hover .service-image { filter: saturate(.98) contrast(1.05); transform: scale(1.045); }.product-footer { border-top: 1px solid currentColor; padding-top: 13px; display: grid; grid-template-columns: 1fr auto; }.product-footer h3 { font: 600 23px/1 var(--display); letter-spacing: -.06em; margin-bottom: 7px; }.product-footer p { color: inherit; opacity: .62; font: 10px var(--mono); text-transform: uppercase; margin: 0; grid-column: 1; }.add-button { grid-column: 2; grid-row: 1 / span 2; align-self: center; background: transparent; border: 0; color: inherit; font: 9px var(--mono); text-transform: uppercase; }.add-button span { display: inline-grid; place-items: center; width: 23px; height: 23px; border: 1px solid currentColor; border-radius: 50%; font-size: 17px; margin-left: 6px; transition: background .2s ease, color .2s ease; }.add-button:hover span, .add-button.added span { background: var(--ink); color: var(--orange); }.product-card-charcoal .add-button:hover span, .product-card-charcoal .add-button.added span { background: var(--orange); color: var(--ink); }
.mini-helmet { width: 140px; height: 88px; position: relative; border: 13px solid var(--ink); border-bottom: 0; border-radius: 100px 100px 0 0; background: var(--orange); transform: rotate(-6deg); }.mini-helmet span { position: absolute; top: 0; bottom: 0; width: 1px; background: var(--ink); }.mini-helmet span:nth-child(1) { left: 30%; transform: rotate(8deg); }.mini-helmet span:nth-child(2) { left: 50%; }.mini-helmet span:nth-child(3) { left: 70%; transform: rotate(-8deg); }.mini-helmet i { position: absolute; left: -25px; bottom: -26px; width: 185px; height: 25px; background: var(--ink); border-radius: 50%; }.earmuff { position: absolute; top: 101px; width: 32px; height: 49px; border: 9px solid var(--ink); border-radius: 13px; }.earmuff-left { left: calc(50% - 89px); }.earmuff-right { right: calc(50% - 89px); }
.glove { position: relative; width: 125px; height: 175px; background: var(--orange); border: 3px solid var(--ink); border-radius: 47% 45% 38% 33%; transform: rotate(-24deg); box-shadow: 12px 8px 0 var(--ink); }.glove::before { content: ''; position: absolute; left: -12px; top: 67px; width: 45px; height: 54px; background: var(--orange); border: 3px solid var(--ink); border-radius: 60% 20% 60% 50%; transform: rotate(25deg); }.glove i { position: absolute; width: 18px; height: 66px; top: -47px; background: var(--orange); border: 3px solid var(--ink); border-radius: 17px 17px 0 0; transform-origin: bottom; }.glove i:nth-child(1) { left: 19px; transform: rotate(-7deg); }.glove i:nth-child(2) { left: 41px; top: -61px; height: 81px; }.glove i:nth-child(3) { left: 63px; top: -56px; height: 75px; transform: rotate(4deg); }.glove i:nth-child(4) { left: 84px; top: -40px; height: 59px; transform: rotate(9deg); }.glove b { position: absolute; left: 20px; right: 18px; bottom: 43px; height: 2px; background: var(--ink); transform: rotate(-10deg); }
.glasses { width: 220px; display: flex; align-items: center; justify-content: center; gap: 4px; transform: rotate(-7deg); }.glasses span { width: 86px; height: 68px; border: 12px solid var(--ink); border-radius: 18px 18px 35px 35px; background: rgba(234, 231, 221, .28); }.glasses i { position: absolute; width: 40px; height: 12px; background: var(--ink); border-radius: 8px; }.glasses::after { content: ''; position: absolute; width: 45px; height: 10px; background: var(--ink); right: -23px; top: 22px; transform: rotate(7deg); }.glasses::before { content: ''; position: absolute; width: 45px; height: 10px; background: var(--ink); left: -23px; top: 22px; transform: rotate(-7deg); }
.vest { width: 155px; height: 205px; position: relative; background: var(--orange); clip-path: polygon(22% 0, 39% 0, 50% 17%, 61% 0, 78% 0, 100% 32%, 88% 100%, 12% 100%, 0 32%); }.vest::after { content: ''; position: absolute; left: 20px; right: 20px; top: 105px; height: 14px; background: var(--paper); box-shadow: 0 31px 0 var(--paper); }.vest i { position: absolute; z-index: 1; top: 0; bottom: 0; left: calc(50% - 2px); width: 4px; background: var(--ink); }.vest b { position: absolute; z-index: 2; left: calc(50% - 9px); top: 35px; width: 18px; height: 28px; border: 3px solid var(--ink); border-top: 0; }
.concrete-slab { width: 185px; height: 136px; position: relative; background: #b5b3a9; border: 3px solid var(--ink); transform: rotate(-8deg) skewY(6deg); box-shadow: 13px 12px 0 rgba(23,24,23,.75); }.concrete-slab i { position: absolute; width: 48px; height: 2px; background: var(--ink); opacity: .7; transform: rotate(-11deg); }.concrete-slab i:nth-child(1) { left: 23px; top: 37px; }.concrete-slab i:nth-child(2) { left: 90px; top: 67px; width: 63px; }.concrete-slab i:nth-child(3) { left: 40px; top: 104px; width: 70px; }.concrete-slab b { position: absolute; right: 23px; top: 19px; width: 11px; height: 11px; background: var(--orange); border-radius: 50%; }
.house { width: 180px; height: 125px; position: relative; background: var(--orange); border: 3px solid var(--ink); margin-top: 44px; }.house::before { content: ''; position: absolute; width: 142px; height: 142px; top: -75px; left: 16px; background: var(--orange); border-left: 3px solid var(--ink); border-top: 3px solid var(--ink); transform: rotate(45deg); }.house i { position: absolute; z-index: 1; left: 25px; top: 38px; width: 39px; height: 47px; background: var(--paper); border: 3px solid var(--ink); }.house i::after { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 3px; background: var(--ink); }.house b { position: absolute; z-index: 1; right: 28px; top: 39px; width: 42px; height: 31px; border: 3px solid var(--ink); background: rgba(234,231,221,.55); }.house span { position: absolute; z-index: 2; left: 83px; bottom: 0; width: 22px; height: 50px; background: var(--ink); }
.roof { width: 190px; height: 96px; position: relative; background: var(--orange); border: 3px solid var(--ink); transform: skewY(-12deg) rotate(-4deg); }.roof::after { content: ''; position: absolute; left: 0; right: 0; bottom: 19px; height: 3px; background: var(--ink); }.roof i { position: absolute; top: 13px; bottom: 26px; width: 2px; background: var(--ink); }.roof i:nth-child(1) { left: 34%; }.roof i:nth-child(2) { left: 54%; }.roof i:nth-child(3) { left: 74%; }.roof b { position: absolute; left: -11px; right: -11px; bottom: 11px; height: 13px; background: var(--ink); }.gutter { width: 100px; height: 11px; background: var(--ink); position: absolute; right: 8%; bottom: 33px; transform: rotate(4deg); }
.deck { width: 220px; height: 130px; position: relative; background: var(--orange); border: 3px solid var(--ink); transform: perspective(180px) rotateX(18deg) rotateZ(-5deg); }.deck i { position: absolute; top: 0; bottom: 0; width: 4px; background: var(--ink); }.deck i:nth-child(1) { left: 20%; }.deck i:nth-child(2) { left: 42%; }.deck i:nth-child(3) { left: 64%; }.deck i:nth-child(4) { left: 83%; }.deck b { position: absolute; left: 10px; right: 10px; top: 51%; height: 4px; background: var(--ink); }.fence { position: absolute; left: 32%; top: 13px; width: 130px; height: 98px; border-bottom: 7px solid var(--ink); transform: rotate(-5deg); }.fence i { display: inline-block; margin-right: 11px; width: 9px; height: 87px; background: var(--ink); }

.team-banner { background: var(--orange); min-height: 440px; padding-top: 92px; padding-bottom: 100px; display: grid; grid-template-columns: 1fr .9fr; gap: 60px; position: relative; overflow: hidden; }.team-banner .section-index { color: var(--ink); }.team-copy h2 { font-size: clamp(55px, 7vw, 110px); line-height: .82; margin: 24px 0 0; }.team-copy h2 em { color: var(--ink); }.team-detail { align-self: end; max-width: 285px; position: relative; z-index: 1; }.team-detail p { font-size: 14px; line-height: 1.55; margin-bottom: 27px; }.team-mark { position: absolute; right: -1vw; bottom: -6vw; font: 700 clamp(240px, 36vw, 610px)/.7 var(--display); letter-spacing: -.16em; color: rgba(23, 24, 23, .1); }
.closing { min-height: 510px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--paper); }.closing-top { align-self: stretch; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 50px; text-align: left; }.closing h2 { font-size: clamp(68px, 9vw, 140px); line-height: .8; margin-bottom: 35px; }.closing h2 em { color: var(--orange); }
.site-footer { border-top: 1px solid var(--line); padding-top: 27px; padding-bottom: 30px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; }.footer-links { display: flex; gap: 20px; justify-content: center; }.site-footer p { margin: 0; text-align: right; color: #62635c; font: 10px/1.6 var(--mono); text-transform: uppercase; }

.quote-dialog { border: 0; padding: 0; width: min(560px, calc(100% - 32px)); background: var(--paper); color: var(--ink); box-shadow: 20px 20px 0 var(--orange); }.quote-dialog::backdrop { background: rgba(23, 24, 23, .72); backdrop-filter: blur(3px); }.dialog-inner { padding: 42px clamp(26px, 5vw, 57px) 50px; position: relative; }.dialog-close { position: absolute; right: 20px; top: 17px; border: 0; background: none; font-size: 29px; font-weight: 300; line-height: 1; }.dialog-inner h2 { font-size: clamp(43px, 6vw, 65px); line-height: .86; margin: 22px 0 20px; }.dialog-copy { color: #5e5f57; font-size: 13px; line-height: 1.55; max-width: 380px; margin-bottom: 30px; }.quote-form { display: grid; gap: 17px; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }.quote-form label { color: #62635c; font: 9px var(--mono); text-transform: uppercase; letter-spacing: .08em; display: grid; gap: 7px; }.quote-form input, .quote-form textarea, .quote-form select { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); color: var(--ink); padding: 7px 0 10px; border-radius: 0; outline: 0; resize: vertical; font: 14px var(--body); }.quote-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 7px) 13px, calc(100% - 2px) 13px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 20px; }.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--orange); }.quote-form .primary-button { justify-self: start; margin-top: 6px; }.form-success { color: var(--orange-deep); font: 11px var(--mono); margin: 0; }

@media (max-width: 900px) { .desktop-nav { margin-left: 0; gap: 20px; }.hero { grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr); gap: 30px; }.hero-visual { min-height: 470px; }.helmet { transform: translate(-50%, -47%) rotate(-4deg) scale(.8); }.statement { grid-template-columns: .5fr 1.5fr; }.statement-aside { display: none; }.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.product-card { min-height: 400px; } }
@media (max-width: 640px) { .site-header { height: 70px; }.desktop-nav, .header-actions .text-button { display: none; }.menu-button { display: block; }.mobile-menu { position: absolute; display: grid; gap: 22px; top: 70px; left: 0; right: 0; padding: 25px 24px 30px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 15px 25px rgba(23,24,23,.08); }.mobile-menu[hidden] { display: none; }.mobile-menu a { font: 12px var(--mono); text-transform: uppercase; letter-spacing: .07em; }.mobile-menu .outline-button { justify-self: start; }.hero { display: flex; flex-direction: column; min-height: 0; padding-top: 60px; padding-bottom: 60px; gap: 48px; }.hero-copy { padding: 0; }.hero h1 { font-size: clamp(61px, 18vw, 101px); }.hero-visual { width: 100%; min-height: 420px; }.sun-disc { width: 320px; }.hero-photo { object-position: 62% center; }.hero-label { font-size: 8px; }.label-one { left: 5%; }.label-two { left: 11%; }.label-three { right: 5%; }.visual-note { right: 18px; bottom: 57px; }.statement { display: block; padding-top: 90px; padding-bottom: 100px; }.statement .section-index { margin-bottom: 42px; }.statement-content h2 { font-size: clamp(48px, 13vw, 72px); }.section-heading { display: block; margin-bottom: 35px; }.section-heading h2 { font-size: clamp(55px, 14vw, 84px); }.section-heading > p { margin-top: 28px; text-align: left; }.kits { padding-top: 80px; padding-bottom: 90px; }.product-grid { grid-template-columns: 1fr; }.product-card { min-height: 390px; }.team-banner { display: block; min-height: 580px; padding-top: 75px; }.team-detail { margin-top: 100px; }.team-mark { font-size: 400px; bottom: -20px; right: -22px; }.closing { min-height: 430px; }.closing-top { flex-direction: column; gap: 8px; margin-bottom: 55px; }.closing h2 { font-size: clamp(70px, 20vw, 120px); }.site-footer { grid-template-columns: 1fr 1fr; gap: 30px; }.footer-links { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; flex-wrap: wrap; }.site-footer p { text-align: right; }.form-row { grid-template-columns: 1fr; gap: 17px; }.quote-dialog { box-shadow: 10px 10px 0 var(--orange); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.ticker-track { animation: none; } * { transition-duration: .01ms !important; } }
