:root {
  --header-height: 80px;
  --anchor-gap: 28px;
  --ink: #101d26;
  --ink-soft: #20313c;
  --blue: #35afe0;
  --blue-text: #08739b;
  --blue-bright: #53c5ef;
  --blue-pale: #dff4fb;
  --paper: #f5f3ed;
  --white: #fff;
  --muted: #65727a;
  --line: rgba(16, 29, 38, 0.14);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + var(--anchor-gap)); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 92px 0 116px; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 100; padding: 10px 16px; background: var(--blue); color: var(--ink); font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-height); color: var(--white); transition: color .25s ease; }
.site-header::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; transition: background .25s ease, box-shadow .25s ease; }
.site-header.scrolled { color: var(--ink); }
.site-header.scrolled::before { background: rgba(245, 243, 237, .94); box-shadow: 0 8px 30px rgba(16,29,38,.08); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.header-inner { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-mark { width: 31px; height: 31px; color: var(--blue-bright); }
.brand-mark svg { width: 100%; height: 100%; fill: currentColor; }
.brand-mark .brand-wave { fill: none; stroke: var(--white); stroke-width: 2.2; stroke-linecap: round; }
.scrolled .brand-mark .brand-wave, .brand-footer .brand-wave { stroke: var(--ink); }
.brand-name { font-family: var(--serif); text-transform: uppercase; letter-spacing: .18em; font-size: 18px; }
.header-mobile-cta { display: none; }
.site-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 700; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .2s ease; }
.site-nav > a:not(.button):hover::after, .site-nav > a:not(.button):focus-visible::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 6px auto; transition: transform .2s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 19px; background: var(--white); color: var(--ink); }
.scrolled .button-small { background: var(--ink); color: var(--white); }
.button-primary { background: var(--blue-bright); color: var(--ink); box-shadow: 0 12px 34px rgba(53,175,224,.22); }
.button-primary:hover { background: var(--white); }
.button-primary svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-dark { background: var(--ink); color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-weight: 750; }
.text-link-light { color: var(--white); border-color: rgba(255,255,255,.35); }
.phone-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 5px rgba(83,197,239,.14); }

.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--muted); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .2em; }
.eyebrow > span { width: 28px; height: 1px; background: var(--blue); }
.eyebrow-light { color: rgba(255,255,255,.65); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 0; font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
h1 { font-size: clamp(55px, 6.7vw, 94px); color: var(--white); }
h2 { font-size: clamp(46px, 5.2vw, 72px); }
h1 em, h2 em { color: var(--blue-bright); font-weight: 400; }

.hero { position: relative; min-height: 830px; overflow: hidden; padding: 145px 0 34px; background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; gap: 72px; align-items: center; min-height: 620px; }
.hero-lead { max-width: 610px; margin: 28px 0 34px; color: rgba(255,255,255,.7); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin: 45px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.62); font-size: 12px; }
.hero-trust span { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 5px; border: 1px solid rgba(83,197,239,.5); border-radius: 50%; color: var(--blue-bright); font-size: 10px; }
.hero-visual { position: relative; height: 580px; }
.visual-card { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 170px 170px var(--radius) var(--radius); background: linear-gradient(155deg, #edfaff 0%, #b9e8f6 42%, #76cce8 100%); box-shadow: 0 45px 80px rgba(0,0,0,.25); }
.card-main { inset: 20px 25px 20px 55px; }
.clean-surface { position: absolute; inset: 0 0 96px; overflow: hidden; }
.clean-surface::before { content: ""; position: absolute; width: 360px; height: 360px; right: -90px; bottom: -120px; border-radius: 50%; background: rgba(255,255,255,.48); box-shadow: -140px -90px 0 -75px rgba(255,255,255,.32); }
.clean-surface::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.9), transparent 4%), radial-gradient(circle at 75% 42%, rgba(255,255,255,.7), transparent 3%), linear-gradient(135deg, transparent 45%, rgba(255,255,255,.25) 45.3%, transparent 46%); }
.sparkle { position: absolute; z-index: 2; color: var(--white); line-height: 1; filter: drop-shadow(0 6px 15px rgba(16,29,38,.12)); }
.sparkle-one { left: 26%; top: 22%; font-size: 82px; }
.sparkle-two { right: 19%; top: 47%; font-size: 44px; }
.sparkle-three { left: 26%; bottom: 15%; font-size: 36px; }
.shine-arc { position: absolute; left: 20%; bottom: 15%; width: 250px; height: 170px; border: 2px solid rgba(255,255,255,.35); border-color: rgba(255,255,255,.5) transparent transparent; border-radius: 50%; transform: rotate(-24deg); }
.shine-line { position: absolute; width: 100px; height: 2px; background: rgba(255,255,255,.65); transform: rotate(-35deg); }
.line-one { top: 35%; right: 14%; }.line-two { top: 40%; right: 22%; width: 54px; }
.visual-caption { position: absolute; inset: auto 0 0; height: 96px; padding: 20px 26px; color: var(--white); background: rgba(16,29,38,.92); }
.visual-caption span { display: block; color: var(--blue-bright); font-family: var(--serif); font-size: 13px; text-transform: uppercase; letter-spacing: .2em; }
.visual-caption strong { display: block; margin-top: 3px; font-size: 15px; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; min-width: 205px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; color: var(--white); background: rgba(32,49,60,.82); box-shadow: 0 18px 40px rgba(0,0,0,.2); backdrop-filter: blur(14px); }
.floating-card p { margin: 0; font-size: 11px; line-height: 1.45; color: rgba(255,255,255,.65); }
.floating-card strong { color: var(--white); font-size: 12px; }
.float-top { right: -30px; top: 125px; }.float-bottom { left: 0; bottom: 130px; }
.float-icon { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 50%; background: var(--blue-bright); color: var(--ink); font-size: 10px; font-weight: 900; }
.status-pulse { position: relative; flex: 0 0 12px; height: 12px; border-radius: 50%; background: #6ce3b0; box-shadow: 0 0 0 6px rgba(108,227,176,.13); }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-one { width: 420px; height: 420px; right: -250px; top: -180px; border: 1px solid rgba(83,197,239,.3); }
.orb-two { width: 540px; height: 540px; left: -390px; bottom: -330px; background: rgba(53,175,224,.07); }
.hero-note { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 22px; color: rgba(255,255,255,.38); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .26em; }
.hero-note i { width: 3px; height: 3px; border-radius: 50%; background: var(--blue); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
.section-heading > p { max-width: 430px; margin: 0 0 5px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; display: flex; min-height: 420px; flex-direction: column; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.24); transition: background .25s ease, transform .25s ease; }
.service-card:hover { z-index: 2; transform: translateY(-8px); background: var(--white); box-shadow: 0 24px 54px rgba(16,29,38,.1); }
.service-featured { background: var(--blue-pale); }
.service-topline { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.service-icon { width: 56px; height: 56px; margin: 54px 0 28px; }
.service-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.service-card p { margin-bottom: 30px; color: var(--muted); font-size: 13px; }
.service-card a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 800; }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: center; }
.about-visual { position: relative; min-height: 610px; }
.about-pattern { position: absolute; inset: 0 50px 60px 0; overflow: hidden; display: grid; place-items: center; border-radius: var(--radius); color: var(--white); background: var(--ink); }
.about-pattern::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: repeating-radial-gradient(circle at 100% 100%, transparent 0 30px, rgba(83,197,239,.5) 31px 32px); }
.about-pattern > span { position: relative; font-family: var(--serif); font-size: 300px; line-height: 1; color: var(--blue-bright); opacity: .94; }
.about-badge { position: absolute; right: 22px; top: 22px; display: flex; flex-direction: column; padding: 15px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.08); }
.about-badge strong { font-size: 12px; }.about-badge small { color: rgba(255,255,255,.55); }
.about-visual blockquote { position: absolute; right: 0; bottom: 0; width: 310px; margin: 0; padding: 22px 24px; border-radius: 15px; background: var(--blue-bright); font-family: var(--serif); font-size: 20px; line-height: 1.35; box-shadow: 0 20px 50px rgba(16,29,38,.16); }
.about-copy { max-width: 550px; }
.about-lead { margin: 32px 0 16px; color: var(--ink); font-size: 19px; font-weight: 650; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--muted); }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-facts div { display: flex; flex-direction: column; }
.about-facts strong { font-family: var(--serif); font-size: 44px; line-height: 1; font-weight: 400; color: var(--blue); }
.about-facts span { margin-top: 8px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.customers { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.customers::before { content: "ADANELLA"; position: absolute; left: 50%; top: -80px; transform: translateX(-50%); font-family: var(--serif); font-size: clamp(150px, 20vw, 330px); color: rgba(255,255,255,.018); white-space: nowrap; }
.customers-intro { position: relative; text-align: center; max-width: 820px; margin: 0 auto 64px; }
.customers-intro .eyebrow { justify-content: center; }
.customers-intro > p:last-child { max-width: 560px; margin: 26px auto 0; color: rgba(255,255,255,.58); }
.customer-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); border-left: 1px solid rgba(255,255,255,.12); }
.customer-grid a { display: flex; min-height: 112px; align-items: center; justify-content: space-between; padding: 22px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--serif); font-size: 18px; transition: background .2s ease, color .2s ease; }
.customer-grid a:hover { background: var(--blue-bright); color: var(--ink); }
.customer-grid span { font-family: var(--sans); font-size: 14px; color: var(--blue-bright); }.customer-grid a:hover span { color: var(--ink); }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; margin: 26px 0 38px; color: var(--muted); }
.contact-details { border-top: 1px solid var(--line); }
.contact-detail-row { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
a.contact-detail-row { transition: color .2s ease; }
a.contact-detail-row:hover { color: var(--blue-text); }
.contact-detail-row > span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.contact-detail-row strong { display: flex; flex-direction: column; align-items: flex-start; font-size: 14px; font-weight: 700; }
.contact-detail-row small { margin-top: 2px; color: var(--muted); font-size: 12px; font-weight: 500; }
.quote-form { padding: 40px; border-radius: var(--radius); background: var(--paper); box-shadow: 0 28px 70px rgba(16,29,38,.08); }
.form-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--blue); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .15em; }
.form-heading strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-form > label, .field-row label { display: block; margin-bottom: 20px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.quote-form input:not([type="checkbox"]), .quote-form textarea { display: block; width: 100%; margin-top: 7px; border: 0; border-bottom: 1px solid rgba(16,29,38,.25); border-radius: 0; outline: 0; padding: 11px 0; color: var(--ink); background: transparent; font-size: 15px; text-transform: none; letter-spacing: normal; transition: border-color .2s ease; }
.quote-form textarea { resize: vertical; min-height: 100px; }
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--blue); }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9aa3a8; }
.check-label { display: flex !important; align-items: flex-start; gap: 10px; text-transform: none !important; letter-spacing: normal !important; font-weight: 500 !important; line-height: 1.4; }
.check-label input { flex: 0 0 auto; margin-top: 2px; accent-color: var(--blue); }
.button-submit { width: 100%; border: 0; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.team-block { display: grid; grid-template-columns: .43fr 1.57fr; gap: 45px; margin-top: 72px; }
.team-intro { display: flex; flex-direction: column; }
.team-intro > span { color: var(--blue-text); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.team-intro > strong { margin-top: 7px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.team-intro p { max-width: 220px; margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.team-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.team-card { min-width: 0; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.team-card:hover { transform: translateY(-3px); border-color: rgba(53,175,224,.45); box-shadow: 0 16px 36px rgba(16,29,38,.07); }
.team-card-heading { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.team-avatar { display: grid; place-items: center; flex: 0 0 45px; height: 45px; border-radius: 50%; background: var(--blue-pale); color: var(--ink); font-size: 10px; font-weight: 850; }
.team-identity { display: flex; min-width: 0; flex-direction: column; }
.team-identity strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.team-identity small { color: var(--muted); }
.team-contact-list { display: flex; flex-direction: column; }
.team-contact-list a { display: flex; min-width: 0; flex-direction: column; padding: 12px 0 0; color: var(--ink); }
.team-contact-list a + a { margin-top: 12px; border-top: 1px solid var(--line); }
.team-contact-list span { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.team-contact-list strong { overflow-wrap: anywhere; font-size: 12px; font-weight: 700; transition: color .2s ease; }
.team-contact-list a:hover strong { color: var(--blue-text); }

.map-block { margin-top: 72px; }
.map-frame { position: relative; min-height: 440px; overflow: hidden; border-radius: var(--radius); background: var(--paper); box-shadow: 0 26px 65px rgba(16,29,38,.1); }
.map-placeholder { position: relative; isolation: isolate; display: flex; min-height: 440px; align-items: center; justify-content: center; flex-direction: column; padding: 42px; text-align: center; }
.map-placeholder::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .55; background-image: linear-gradient(rgba(16,29,38,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(16,29,38,.06) 1px, transparent 1px), radial-gradient(circle at 78% 24%, rgba(83,197,239,.36), transparent 28%); background-size: 34px 34px, 34px 34px, auto; }
.map-placeholder svg { width: 56px; height: 56px; margin-bottom: 18px; fill: var(--blue-bright); stroke: var(--ink); stroke-width: 2; }
.map-placeholder > strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.map-placeholder > p { max-width: 510px; margin: 12px auto 22px; color: var(--muted); font-size: 13px; }
.map-placeholder .button { border: 0; cursor: pointer; }
.map-placeholder > small { margin-top: 13px; color: var(--muted); font-size: 10px; }
.map-embed { display: block; width: 100%; min-height: 440px; height: 440px; border: 0; }
.map-status { position: absolute; width: 1px; height: 1px; overflow: hidden; margin: -1px; padding: 0; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.site-footer { padding: 78px 0 24px; color: rgba(255,255,255,.68); background: #0b151c; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr 1.1fr; gap: 55px; }
.brand-footer { color: var(--white); }.brand-footer + p { margin: 22px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 12px; }.footer-links strong { margin-bottom: 8px; color: var(--white); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }.footer-links a:hover { color: var(--blue-bright); }
.footer-cta { display: flex; flex-direction: column; align-items: flex-start; }.footer-cta span { margin-bottom: 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }.footer-cta a { display: flex; width: 100%; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.2); color: var(--white); font-family: var(--serif); font-size: 24px; }.footer-cta b { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.footer-bottom div { display: flex; gap: 20px; }.footer-bottom button { border: 0; padding: 0; color: inherit; background: none; cursor: pointer; }.footer-bottom button:hover { color: var(--white); }

.info-dialog { max-width: 610px; padding: 42px; border: 0; border-radius: var(--radius); color: var(--ink); background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.info-dialog::backdrop { background: rgba(5,12,16,.74); backdrop-filter: blur(5px); }
.info-dialog h2 { margin-bottom: 25px; font-size: 45px; }.info-dialog p { color: var(--muted); }.dialog-close { position: absolute; right: 17px; top: 15px; border: 0; background: none; font-size: 30px; cursor: pointer; }.dialog-note { padding: 14px 16px; border-left: 3px solid var(--blue); background: var(--blue-pale); font-size: 13px; }.dialog-note a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; }

@media (max-width: 1000px) {
  :root { --shell: min(100% - 40px, 860px); }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 690px; }
  .hero-visual { height: 550px; max-width: 560px; width: 100%; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-visual { max-width: 620px; width: 100%; margin: auto; }
  .about-copy { max-width: 680px; }
  .customer-grid { grid-template-columns: repeat(3, 1fr); }
  .team-block { grid-template-columns: 1fr; }.team-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }.footer-cta { grid-column: 1 / -1; max-width: 380px; }
}

@media (max-width: 760px) {
  :root { --header-height: 70px; --shell: calc(100% - 32px); --radius: 18px; }
  .section { padding: 66px 0 82px; }
  .header-mobile-cta { position: relative; z-index: 3; display: inline-flex; min-height: 36px; align-items: center; justify-content: center; margin-left: auto; padding: 0 12px; border-radius: 999px; color: var(--ink); background: var(--blue-bright); font-size: 11px; font-weight: 800; white-space: nowrap; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .site-nav { position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 22px; padding: 90px 10vw; background: var(--paper); color: var(--ink); transform: translateX(100%); transition: transform .3s ease; }
  .site-nav.open { transform: none; }
  .site-nav > a { font-family: var(--serif); font-size: 32px; font-weight: 400; }
  .site-nav .button { display: none; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .menu-open .site-header { color: var(--ink); }.menu-open .brand { position: relative; z-index: 3; }.menu-open .brand-mark .brand-wave { stroke: var(--ink); }
  h1 { font-size: clamp(48px, 15vw, 70px); } h2 { font-size: clamp(41px, 12vw, 58px); }
  .hero { padding-top: 118px; }
  .hero-grid { gap: 45px; }
  .hero-lead { font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }.hero-trust { margin-top: 34px; gap: 13px; }
  .hero-visual { height: 450px; }
  .card-main { inset: 0 10px 20px 28px; border-radius: 120px 120px 18px 18px; }.visual-caption { height: 84px; padding: 15px 20px; }.clean-surface { bottom: 84px; }.sparkle-one { font-size: 65px; }.float-top { top: 108px; right: -4px; }.float-bottom { left: 0; bottom: 118px; }.floating-card { min-width: 175px; padding: 11px 13px; }
  .hero-note { margin-top: 20px; gap: 11px; letter-spacing: .13em; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 28px; margin-bottom: 40px; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: 360px; }.service-icon { margin-top: 35px; }
  .about-grid { gap: 55px; }.about-visual { min-height: 480px; }.about-pattern { inset: 0 20px 60px 0; }.about-pattern > span { font-size: 230px; }.about-visual blockquote { width: min(290px, 87%); }.about-facts { gap: 9px; }.about-facts strong { font-size: 37px; }
  .customer-grid { grid-template-columns: repeat(2, 1fr); }.customer-grid a { min-height: 92px; padding: 16px; font-size: 15px; }
  .contact-grid { gap: 50px; }.quote-form { padding: 27px 20px; }.form-heading, .field-row { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; gap: 8px; }.team-block { margin-top: 52px; }.team-list { grid-template-columns: 1fr; }.map-block { margin-top: 52px; }.map-frame, .map-placeholder { min-height: 390px; }.map-placeholder { padding: 30px 20px; }.map-embed { min-height: 390px; height: 390px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }.footer-grid > div:first-child, .footer-cta { grid-column: 1 / -1; }.footer-bottom { align-items: flex-start; flex-direction: column; }
  .info-dialog { width: calc(100% - 24px); padding: 34px 22px; }.info-dialog h2 { font-size: 38px; }
}

@media (max-width: 390px) {
  .brand-name { font-size: 16px; letter-spacing: .12em; }.header-mobile-cta { padding-inline: 10px; font-size: 10px; }.customer-grid, .footer-grid { grid-template-columns: 1fr; }.footer-links, .footer-grid > div:first-child, .footer-cta { grid-column: auto; }.hero-trust { display: grid; grid-template-columns: 1fr 1fr; }.about-facts span { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
