.code-video-frame { position: absolute; top: 69px; left: 12%; z-index: 2; width: min(505px, 86%); height: 340px; overflow: hidden; background: var(--ink); box-shadow: 20px 22px 0 var(--lime); transform: rotate(-3deg); }
.video-window-bar { position: relative; z-index: 3; display: flex; align-items: center; gap: 6px; height: 35px; padding: 0 13px; background: #173b37; color: #9fb6aa; font: 9px var(--mono); }
.window-dot { width: 7px; height: 7px; border-radius: 50%; }.dot-red { background: #ec806c; }.dot-yellow { background: #f3d47c; }.dot-green { background: var(--lime); }.video-file { margin-left: 13px; }.video-live { display: flex; align-items: center; gap: 5px; margin-left: auto; color: var(--lime); font-size: 8px; }.video-live i { display: block; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; }
.code-video-frame video { width: 100%; height: calc(100% - 35px); display: block; object-fit: cover; filter: saturate(.65) contrast(1.1); }.video-shade { position: absolute; inset: 35px 0 0; background: linear-gradient(90deg, rgba(8,31,30,.88) 0%, rgba(8,31,30,.36) 58%, rgba(8,31,30,.2) 100%); }.video-code-overlay { position: absolute; z-index: 2; left: 25px; bottom: 40px; display: grid; gap: 8px; color: #bad1c3; font: 11px var(--mono); }.code-line b { display: inline-block; width: 23px; color: #769a8c; font-weight: 400; }.code-line i { color: var(--lime); font-style: normal; }.code-line em { color: var(--orange); font-style: normal; }.code-line strong { color: var(--lime); font-size: 18px; }.code-line mark { background: transparent; color: var(--paper); }.video-play { position: absolute; z-index: 3; right: 22px; bottom: 20px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(241,240,233,.6); color: var(--paper); font-size: 11px; }.visual-card-main { display: none; }
:root {
  --ink: #102f2d;
  --ink-deep: #0b2423;
  --paper: #f1f0e9;
  --warm: #e7e5db;
  --lime: #d8f273;
  --mint: #b6d8c4;
  --orange: #ffb57a;
  --muted: #60706a;
  --line: rgba(16, 47, 45, .18);
  --white-line: rgba(241, 240, 233, .2);
  --display: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--display); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.page-shell { overflow: hidden; }
.section-pad { padding: 120px max(6vw, 32px); }
.site-header { height: 92px; padding: 0 max(6vw, 32px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 20px; font-weight: 800; letter-spacing: -.8px; }
.brand-image { display: block; width: 190px; height: 58px; object-fit: contain; object-position: left center; }
.brand-dot { color: #8eb62c; }
.brand-mark { display: inline-flex; align-items: end; gap: 3px; width: 25px; height: 24px; }
.brand-mark span { display: block; width: 6px; transform: skew(-22deg); }
.brand-mark span:nth-child(1) { height: 11px; background: #26aea9; }.brand-mark span:nth-child(2) { height: 18px; background: #ef7d67; }.brand-mark span:nth-child(3) { height: 24px; background: #bcdc49; }
.main-nav { display: flex; gap: 36px; margin-left: auto; margin-right: 44px; font-size: 13px; font-weight: 700; }
.main-nav a, .text-link, .site-footer a { transition: color .2s ease; }.main-nav a:hover, .text-link:hover { color: #769d20; }
.home-link { color: inherit; font-size: 13px; font-weight: 700; transition: color .2s ease; }
.home-link:hover { color: #769d20; }
.header-cta { padding: 12px 16px; border: 1px solid var(--ink); font-size: 12px; font-weight: 800; transition: background .2s ease, color .2s ease; }.header-cta span { font-size: 16px; margin-left: 10px; }.header-cta:hover { background: var(--ink); color: var(--paper); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px; }
.hero { display: grid; grid-template-columns: minmax(400px, .95fr) 1fr; align-items: center; gap: 5vw; min-height: 690px; padding-top: 92px; padding-bottom: 90px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 28px; color: var(--muted); font: 500 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }.eyebrow-line { display: inline-block; width: 33px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; } h1, h2 { font-weight: 700; letter-spacing: -3px; line-height: .94; } h1 { font-size: clamp(60px, 7.2vw, 112px); margin-bottom: 34px; } h2 { font-size: clamp(48px, 5.4vw, 79px); margin-bottom: 30px; } h1 em, h2 em, blockquote em { color: #739421; font-style: normal; }
.hero-text { max-width: 450px; color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 35px; }.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 51px; padding: 0 20px; font-size: 12px; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease; }.button:hover { transform: translateY(-3px); }.button-primary { background: var(--ink); color: var(--paper); }.button-primary:hover { background: #284f43; }.button-light { background: var(--lime); color: var(--ink); }.button span { font-size: 19px; }.text-link { font-size: 12px; font-weight: 800; }.text-link span { margin-left: 10px; font-size: 16px; }
.hero-visual { position: relative; min-height: 500px; }.visual-card-main { position: absolute; top: 84px; left: 17%; z-index: 2; width: min(430px, 78%); padding: 29px 28px 23px; background: var(--ink); color: var(--paper); box-shadow: 21px 22px 0 var(--lime); transform: rotate(-3deg); }.card-topline { display: flex; align-items: center; gap: 7px; color: #a6b8ae; font: 10px var(--mono); }.card-topline strong { color: var(--lime); font-weight: 400; margin-left: auto; }.live-dot { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; }.chart-label { display: flex; justify-content: space-between; margin-top: 58px; font-size: 15px; font-weight: 700; }.chart-label b { color: var(--lime); font-size: 17px; }.chart { height: 132px; display: flex; align-items: end; gap: 13px; border-bottom: 1px solid var(--white-line); margin-top: 15px; }.chart span { flex: 1; background: var(--mint); opacity: .78; }.chart span:last-child { background: var(--lime); }.chart-footer { display: flex; justify-content: space-between; margin-top: 11px; color: #a6b8ae; font: 9px var(--mono); }.orbit { position: absolute; border: 1px solid #adcba7; border-radius: 50%; }.orbit-large { width: 470px; height: 470px; top: 0; left: 8%; opacity: .75; }.orbit-small { width: 315px; height: 315px; top: 78px; left: 25%; border-color: #d0c7ab; }.visual-cross { position: absolute; color: #91b052; font: 22px var(--mono); }.cross-one { left: 3%; top: 66px; }.cross-two { right: 0; bottom: 78px; }.floating-note { position: absolute; z-index: 3; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; padding: 13px 16px; background: #faf8f1; box-shadow: 7px 8px 0 rgba(16,47,45,.13); transform: rotate(4deg); font-size: 11px; }.floating-note span { grid-row: span 2; color: #8baa48; font: 11px var(--mono); }.floating-note strong { font-size: 11px; }.floating-note small { color: var(--muted); font: 9px var(--mono); margin-top: 3px; }.note-top { top: 15px; right: 0; }.note-bottom { bottom: 76px; left: 0; transform: rotate(-4deg); }.note-check { width: 22px; height: 22px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink) !important; font-family: var(--display) !important; }.visual-caption { position: absolute; right: 1%; bottom: 6px; color: var(--muted); font: 10px/1.4 var(--mono); text-align: right; }.visual-caption strong { color: var(--ink); font-weight: 500; }
.logo-strip { display: flex; justify-content: space-between; gap: 25px; padding: 20px max(6vw, 32px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font: 10px var(--mono); letter-spacing: .07em; }.logo-strip span:first-child { color: var(--ink); font-weight: 500; }
.trust-strip { display: grid; grid-template-columns: 1fr 1.2fr; gap: 9vw; background: var(--paper); }.trust-intro h2 { font-size: clamp(42px, 4.8vw, 68px); margin-bottom: 0; }.trust-stats { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.trust-stat { display: flex; flex-direction: column; justify-content: center; gap: 16px; min-height: 170px; padding: 24px 20px; border-right: 1px solid var(--line); }.trust-stat:last-child { border-right: 0; }.trust-stat strong { color: #789d28; font-size: 38px; letter-spacing: -2px; }.trust-stat span { max-width: 115px; color: var(--muted); font: 10px/1.5 var(--mono); text-transform: uppercase; }
.services { background: var(--warm); }.section-heading { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 30px; align-items: end; margin-bottom: 68px; }.section-heading .eyebrow { align-self: start; }.section-heading h2 { margin: 0; }.section-heading > p:last-child { max-width: 285px; color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 3px; }.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }.service-card { position: relative; min-height: 300px; padding: 23px; background: #faf9f4; border: 1px solid rgba(16,47,45,.12); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }.service-card:hover { transform: translateY(-6px); box-shadow: 8px 9px 0 rgba(16,47,45,.12); }.service-number { color: var(--muted); font: 10px var(--mono); }.service-icon { display: grid; place-items: center; width: 45px; height: 45px; margin: 33px 0 22px; border: 1px solid currentColor; font-size: 20px; }.service-card h3 { font-size: 21px; letter-spacing: -1px; margin-bottom: 10px; }.service-card p { max-width: 260px; color: var(--muted); font-size: 12px; line-height: 1.6; margin-bottom: 17px; }.service-card a { display: block; margin-top: auto; font-size: 11px; font-weight: 800; }.service-card a span { margin-left: 10px; font-size: 17px; }.service-featured { min-height: 360px; grid-row: span 2; background: var(--ink); color: var(--paper); border: 0; }.service-featured .service-number, .card-dark .service-number { color: #9db0a7; }.service-featured .service-icon { color: var(--lime); border-color: var(--lime); }.service-featured .service-content { margin-top: auto; }.service-featured p, .card-dark p { color: #a9b9b0; }.service-arrow { position: absolute; top: 20px; right: 22px; font-size: 25px !important; font-weight: 400 !important; }.card-dark { background: #234842; color: var(--paper); border: 0; }.card-dark .service-icon { color: var(--orange); border-color: var(--orange); }.service-accent { background: var(--lime); }.service-accent .service-icon { border-color: var(--ink); }.service-wide { min-height: 220px; grid-column: span 2; flex-direction: row; align-items: flex-start; gap: 24px; }.service-wide .service-icon { margin: 31px 0 0; flex: 0 0 45px; }.service-wide > div:nth-child(3) { margin-top: 32px; }.service-wide p { max-width: 330px; }.service-outline { background: transparent; }.icon-code { font: 12px var(--mono); }.icon-link { font-size: 25px; }
.process { display: grid; grid-template-columns: .8fr 1.15fr; gap: 11vw; background: var(--ink); color: var(--paper); }.process .eyebrow { color: #a6b8ae; }.process-intro h2 { margin-bottom: 25px; }.process-intro h2 em { color: var(--lime); }.process-intro > p:not(.eyebrow) { max-width: 350px; color: #a6b8ae; font-size: 14px; line-height: 1.7; margin-bottom: 35px; }.process-list { border-top: 1px solid var(--white-line); }.process-item { display: grid; grid-template-columns: 55px 1fr 20px; gap: 20px; align-items: center; padding: 23px 0; border-bottom: 1px solid var(--white-line); }.process-item > span { color: var(--lime); font: 11px var(--mono); }.process-item h3 { font-size: 18px; margin-bottom: 5px; }.process-item p { color: #a6b8ae; font-size: 12px; margin: 0; }.process-item b { color: var(--lime); font-size: 20px; font-weight: 400; }
.statement { position: relative; background: var(--lime); text-align: center; padding-top: 140px; padding-bottom: 128px; }.statement-mark { position: absolute; left: 50%; top: 65px; transform: translateX(-50%); color: rgba(16,47,45,.2); font: 80px Georgia, serif; }.statement blockquote { margin: 0 auto 42px; font-size: clamp(40px, 5.4vw, 77px); font-weight: 700; line-height: .98; letter-spacing: -3px; }.statement blockquote em { color: #65821f; }.statement-meta { display: flex; justify-content: center; gap: 14px; color: #63772d; font: 10px var(--mono); }
.contact { position: relative; background: var(--paper); text-align: center; min-height: 540px; display: grid; place-items: center; overflow: hidden; }.contact-inner { position: relative; z-index: 1; }.contact .eyebrow { justify-content: center; }.contact h2 { font-size: clamp(49px, 6.2vw, 88px); margin-bottom: 22px; }.contact h2 em { color: #739421; }.contact p:not(.eyebrow) { color: var(--muted); font-size: 14px; margin-bottom: 29px; }.contact-orb { position: absolute; border-radius: 50%; border: 1px solid #becda7; }.orb-left { width: 300px; height: 300px; left: -160px; top: 55px; }.orb-right { width: 460px; height: 460px; right: -230px; bottom: -160px; border-color: #ddc9a8; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 86px; padding: 20px max(6vw, 32px); border-top: 1px solid var(--line); color: var(--muted); font: 10px var(--mono); }.site-footer .brand { color: var(--ink); font-family: var(--display); font-size: 16px; }.site-footer .brand-mark { transform: scale(.75); transform-origin: left center; margin-right: -5px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }.reveal.is-visible { opacity: 1; transform: translateY(0); }.reveal-delay-1 { transition-delay: .1s; }.reveal-delay-2 { transition-delay: .2s; }.reveal-delay-3 { transition-delay: .3s; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; padding-top: 72px; }.hero-visual { min-height: 490px; max-width: 600px; width: 100%; margin: auto; }.trust-strip { grid-template-columns: 1fr; gap: 45px; }.section-heading { grid-template-columns: 1fr 1.3fr; }.section-heading > p:last-child { grid-column: 2; }.service-grid { grid-template-columns: repeat(2, 1fr); }.service-featured { grid-row: span 1; }.service-wide { grid-column: span 2; }.process { grid-template-columns: 1fr; gap: 65px; } }
@media (max-width: 620px) { .section-pad { padding: 78px 22px; }.site-header { height: 76px; padding: 0 22px; }.main-nav { position: absolute; z-index: 10; top: 76px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; margin: 0; background: var(--paper); border-bottom: 1px solid var(--line); }.main-nav.is-open { display: flex; }.main-nav a { padding: 17px 22px; border-top: 1px solid var(--line); }.header-cta { display: none; }.menu-toggle { display: block; }.hero { min-height: 0; padding-top: 66px; }.hero h1 { font-size: clamp(53px, 16vw, 84px); }.hero-text { font-size: 14px; }.hero-actions { gap: 21px; }.hero-visual { min-height: 390px; margin-top: 18px; }.trust-stats { grid-template-columns: 1fr; }.trust-stat { min-height: 112px; border-right: 0; border-bottom: 1px solid var(--line); }.trust-stat:last-child { border-bottom: 0; }.orbit-large { width: 350px; height: 350px; left: 0; }.orbit-small { width: 240px; height: 240px; top: 60px; left: 20%; }.visual-card-main { top: 62px; left: 10%; width: 78%; padding: 20px; }.chart-label { margin-top: 38px; font-size: 11px; }.chart { height: 100px; gap: 7px; }.floating-note { transform: scale(.82) rotate(4deg); transform-origin: right top; }.note-top { top: 0; }.note-bottom { bottom: 30px; left: -12px; transform: scale(.82) rotate(-4deg); transform-origin: left bottom; }.visual-caption { bottom: 0; font-size: 8px; }.logo-strip { overflow: hidden; justify-content: flex-start; white-space: nowrap; gap: 28px; padding: 17px 22px; }.logo-strip span:nth-child(n+4) { display: none; }.section-heading { display: block; margin-bottom: 42px; }.section-heading h2 { margin-bottom: 20px; }.section-heading > p:last-child { max-width: 330px; }.service-grid { grid-template-columns: 1fr; }.service-card, .service-featured { min-height: 285px; }.service-wide { grid-column: span 1; min-height: 245px; }.service-wide > div:nth-child(3) { margin-top: 31px; }.process-item { grid-template-columns: 38px 1fr 20px; gap: 10px; }.statement { padding-top: 120px; padding-bottom: 95px; }.statement blockquote { font-size: clamp(39px, 11vw, 60px); letter-spacing: -2px; }.statement-meta { flex-wrap: wrap; font-size: 8px; }.contact { min-height: 490px; }.contact h2 { font-size: clamp(46px, 13vw, 72px); }.site-footer { flex-wrap: wrap; padding: 25px 22px; }.site-footer > span:last-child { width: 100%; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.reveal { transition: none; }.button, .service-card { transition: none; } }

/* Full-bleed programming video for the opening hero. */
.hero { position: relative; display: block; min-height: 720px; padding-top: 150px; overflow: hidden; color: var(--paper); background: var(--ink); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6, 19, 25, .93) 0%, rgba(6, 19, 25, .76) 43%, rgba(6, 19, 25, .38) 100%), linear-gradient(0deg, rgba(6, 19, 25, .58), transparent 45%); }
.hero-copy { position: relative; z-index: 4; max-width: 640px; }.hero-copy .eyebrow { color: #b7cabe; }.hero-copy h1 { color: var(--paper); }.hero-copy h1 em { color: var(--lime); }.hero-copy .hero-text { color: #b8c8bf; }.hero-copy .text-link { color: var(--paper); }
.hero-visual { position: absolute; inset: 0; z-index: 0; min-height: 0; max-width: none; width: auto; margin: 0; }.hero-visual::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(5, 24, 23, .12); }.code-video-frame { inset: 0; z-index: 0; width: 100%; height: 100%; box-shadow: none; transform: none; background: var(--ink); }.code-video-frame video { height: 100%; filter: saturate(.58) contrast(1.08); }.video-window-bar, .video-code-overlay, .video-play, .floating-note, .visual-caption, .orbit, .visual-cross { display: none; }.video-shade { inset: 0; background: linear-gradient(90deg, rgba(5,24,23,.82) 0%, rgba(5,24,23,.5) 48%, rgba(5,24,23,.34) 100%); }
@media (max-width: 620px) { .hero { min-height: 700px; padding-top: 96px; }.hero-copy { max-width: 100%; }.hero-visual { min-height: 0; margin-top: 0; } }
.hero .video-code-overlay { display: grid; left: auto; right: 6vw; bottom: 56px; color: #d4e7db; text-shadow: 0 2px 12px rgba(0, 0, 0, .7); opacity: .72; }
.hero .video-code-overlay .code-line { font-size: clamp(11px, 1.1vw, 16px); }
.hero .video-code-overlay .code-line b { color: var(--lime); }
@media (max-width: 620px) { .hero .video-code-overlay { left: auto; right: 22px; bottom: 32px; }.hero .video-code-overlay .code-line { font-size: 9px; } }

/* Shared layout for the standalone pages. */
.inner-hero { position: relative; min-height: 430px; padding-top: 110px; padding-bottom: 95px; overflow: hidden; color: var(--paper); background: var(--ink); }
.inner-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 24%, rgba(216,242,115,.16), transparent 28%), linear-gradient(120deg, rgba(5,24,23,.3), transparent 70%); }
.inner-hero > * { position: relative; z-index: 1; }
.page-hero-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) contrast(1.08); }
.page-hero-shade { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(5,24,23,.86), rgba(5,24,23,.52) 55%, rgba(5,24,23,.36)); }
.inner-hero > .page-hero-video, .page-contact > .page-hero-video { z-index: 0; }
.inner-hero > .page-hero-shade, .page-contact > .page-hero-shade { z-index: 1; }
.inner-hero .eyebrow { color: #b7cabe; }
.inner-hero h1 { max-width: 900px; margin-bottom: 26px; }
.inner-hero h1 em { color: var(--lime); }
.inner-hero > p:last-child { max-width: 510px; color: #b8c8bf; font-size: 16px; line-height: 1.7; }
.page-next { background: var(--lime); }
.page-next h2 { margin-bottom: 28px; }
.page-contact { min-height: 610px; color: var(--paper); background: var(--ink); }
.page-contact > * { position: relative; z-index: 2; }
.page-contact .eyebrow { color: #b7cabe; }
.page-contact h1 { font-size: clamp(49px, 6.2vw, 88px); margin-bottom: 22px; }
.page-contact h1 em { color: var(--lime); }
.page-contact .contact-inner > p:not(.eyebrow) { max-width: 500px; margin: 0 auto 29px; color: #b8c8bf; font-size: 14px; line-height: 1.7; }
.main-nav a[aria-current="page"] { color: #769d20; }
body:has(.service-grid) .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
body:has(.service-grid) .service-card { min-height: 250px; padding: 28px; border: 0; border-top: 3px solid var(--ink); box-shadow: none; }
body:has(.service-grid) .service-card:hover { transform: translateY(-3px); box-shadow: none; }
body:has(.service-grid) .service-featured { grid-row: auto; border-top-color: var(--lime); }
body:has(.service-grid) .service-wide { grid-column: span 2; min-height: 190px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
body:has(.service-grid) .service-wide .service-icon { margin: 0; }
body:has(.service-grid) .service-wide .service-number { align-self: start; }
body:has(.service-grid) .service-accent { border-top-color: var(--orange); }
body:has(.service-grid) .card-dark { border-top-color: var(--mint); }
.service-grid .service-card { color: inherit; }
.detail-content { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 7vw; background: var(--warm); }
.detail-content h2 { margin: 0; }
.detail-content p { max-width: 470px; margin: 0 0 25px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.detail-content .button { grid-column: 2; justify-self: start; }
@media (max-width: 620px) { .section-pad { padding-left: 20px; padding-right: 20px; }.site-header { padding-left: 18px; padding-right: 18px; }.brand-image { width: 150px; height: 46px; }.inner-hero { min-height: 390px; padding-top: 75px; padding-bottom: 70px; }.inner-hero h1 { font-size: clamp(48px, 14vw, 75px); }.inner-hero > p:last-child { font-size: 14px; }.page-contact { min-height: 560px; }.page-contact h1 { font-size: clamp(44px, 13vw, 70px); }.page-hero-video { min-width: 100%; min-height: 100%; }.detail-content { grid-template-columns: 1fr; gap: 35px; }.detail-content p { font-size: 14px; }.detail-content .button { grid-column: auto; }.button { min-height: 52px; padding-left: 18px; padding-right: 18px; } body:has(.service-grid) .service-grid { grid-template-columns: 1fr; } body:has(.service-grid) .service-wide { grid-column: span 1; display: flex; min-height: 245px; } body:has(.service-grid) .service-wide .service-icon { margin: 33px 0 22px; } }
