:root {
  --ink: #071922;
  --ink-soft: #17333f;
  --blue: #0879d9;
  --cyan: #5ed7e8;
  --ice: #eaf8fb;
  --paper: #f7f5f0;
  --white: #fff;
  --muted: #687b83;
  --line: rgba(7, 25, 34, .14);
  --deep-line: rgba(255, 255, 255, .18);
  --shadow: 0 24px 70px rgba(7, 25, 34, .12);
  --font-display: "Archivo", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary { cursor: pointer; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999; padding: 12px 18px;
  background: var(--white); color: var(--ink); transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: 88px;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled { height: 72px; background: rgba(247, 245, 240, .94); box-shadow: 0 6px 30px rgba(7, 25, 34, .08); backdrop-filter: blur(14px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { position: relative; z-index: 2; flex: 0 0 auto; }
.brand img { width: 116px; height: auto; transition: filter .25s ease; }
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 40px); margin-left: auto; }
.desktop-nav a, .header-call {
  position: relative; font-size: .83rem; font-weight: 600; letter-spacing: .02em;
  transition: color .2s ease;
}
.site-header:not(.scrolled) .desktop-nav a,
.site-header:not(.scrolled) .header-call,
.site-header:not(.scrolled) .language-switch { color: var(--white); }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px;
  background: currentColor; transition: right .22s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.language-switch { display: flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; }
.language-switch a { border: 0; padding: 3px; background: transparent; color: inherit; opacity: .55; }
.language-switch a[aria-current="page"] { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.header-call { white-space: nowrap; }
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 24px;
  border: 1px solid var(--cyan); background: var(--cyan); color: var(--ink);
  font-weight: 700; line-height: 1; transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--white); border-color: var(--white); }
.button-small { min-height: 44px; padding: 0 20px; font-size: .82rem; }
.button-large { min-height: 58px; padding: 0 24px; font-size: .92rem; }
.button-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.button-ghost:hover, .button-ghost:focus-visible { color: var(--ink); }
.arrow-icon { position: relative; display: inline-block; flex: 0 0 20px; width: 20px; height: 14px; color: currentColor; }
.arrow-icon::before { content: ""; position: absolute; left: 1px; right: 2px; top: 50%; height: 2px; background: currentColor; transform: translateY(-50%); }
.arrow-icon::after { content: ""; position: absolute; right: 2px; top: 50%; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 12px 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 6px 0; background: currentColor; transition: transform .25s ease; }
.site-header:not(.scrolled) .menu-toggle { color: var(--white); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 72px 0 0; background: var(--paper); padding: 42px 24px; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: clamp(1.6rem, 7vw, 2.5rem); font-weight: 700; }

.hero { position: relative; min-height: 790px; height: 100svh; max-height: 980px; color: var(--white); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-overlay { background: linear-gradient(90deg, rgba(3,16,23,.93) 0%, rgba(3,16,23,.71) 44%, rgba(3,16,23,.18) 75%), linear-gradient(0deg, rgba(3,16,23,.58), transparent 50%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 25% 100%, 100% 25%; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(64px, 7vh, 88px); }
.eyebrow { margin: 0 0 22px; color: var(--blue); font-family: var(--font-display); font-size: .73rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: var(--cyan); }
.hero h1, .section-heading h2, .process-intro h2, .faq-layout h2, .quote-copy h2 {
  margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: -.055em; line-height: .94;
}
.hero h1 { max-width: 900px; font-size: clamp(4.1rem, 8.5vw, 8.6rem); }
.hero h1 span, h2 span { color: var(--cyan); }
.hero-lead { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.8); font-size: clamp(1rem, 1.5vw, 1.25rem); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 38px; color: rgba(255,255,255,.75); font-size: .78rem; }
.hero-proof span::before { content: "✓"; margin-right: 8px; color: var(--cyan); font-weight: 800; }
.hero-scroll { position: absolute; z-index: 3; right: 32px; bottom: 38px; display: flex; gap: 16px; align-items: center; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; }

.trust-strip { background: var(--cyan); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 110px; padding: 22px 24px; display: grid; grid-template-columns: 1fr; place-content: center; place-items: center; gap: 8px; border-right: 1px solid rgba(7,25,34,.16); text-align: center; }
.trust-grid > div + div { padding-left: 24px; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid span { max-width: 260px; font-family: var(--font-display); font-weight: 700; line-height: 1.25; }

.section { padding: clamp(90px, 11vw, 150px) 0; }
.section-heading h2, .process-intro h2, .faq-layout h2, .quote-copy h2 { font-size: clamp(2.9rem, 5.7vw, 5.5rem); }
.split-heading { display: grid; grid-template-columns: 1.65fr .65fr; align-items: end; gap: 50px; margin-bottom: 66px; }
.split-heading > p { margin: 0 0 4px; color: var(--muted); max-width: 470px; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--white); border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-media { position: relative; aspect-ratio: 1.15; overflow: hidden; background: var(--ink-soft); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.service-card:hover .service-media img { transform: scale(1.045); }
.service-copy { padding: 30px; }
.service-copy h3 { margin: 0; font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.8rem); letter-spacing: -.035em; }
.service-copy p { min-height: 125px; color: var(--muted); font-size: .94rem; }
.service-copy a, .text-link { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); font-weight: 700; font-size: .82rem; }
.service-copy a .arrow-icon, .text-link .arrow-icon { color: var(--blue); }
.additional-services { margin-top: 28px; padding: 24px 28px; border: 1px solid var(--line); background: rgba(255,255,255,.56); }
.additional-services > p { margin: 0 0 16px; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.additional-services ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.additional-services li { padding: 9px 13px; border: 1px solid rgba(8,121,217,.24); color: var(--ink); font-size: .82rem; font-weight: 700; }

.results { background: var(--ink); color: var(--white); }
.result-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "title copy";
  column-gap: clamp(54px, 8vw, 120px);
  row-gap: 24px;
  align-items: end;
  margin-bottom: 62px;
}
.result-heading .eyebrow { grid-area: eyebrow; margin-bottom: 0; }
.result-heading h2 { grid-area: title; max-width: 900px; font-size: clamp(3.5rem, 5vw, 5rem); }
.result-heading p:last-child { grid-area: copy; max-width: 420px; margin: 0 0 8px; color: rgba(255,255,255,.62); }
.result-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.result-card { margin: 0; border: 1px solid var(--deep-line); background: rgba(255,255,255,.035); }
.result-image { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.result-image img { width: 100%; height: 100%; object-fit: cover; }
.before-tag, .after-tag { position: absolute; bottom: 14px; padding: 8px 12px; background: rgba(7,25,34,.84); backdrop-filter: blur(8px); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.before-tag { left: 14px; }
.after-tag { right: 14px; background: var(--cyan); color: var(--ink); }
.result-card figcaption { padding: 24px; }
.result-card figcaption > div { display: flex; align-items: baseline; gap: 14px; }
.result-card h3 { margin: 0; font-family: var(--font-display); font-size: 1.45rem; }
.result-card figcaption p { margin: 12px 0 0; color: rgba(255,255,255,.6); font-size: .9rem; }
.illustration-note { margin: 22px 0 0; color: rgba(255,255,255,.48); font-size: .72rem; }

.process { background: var(--ice); }
.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); }
.process-intro > p:not(.eyebrow) { max-width: 480px; color: var(--muted); margin: 28px 0; }
.text-link { width: min(100%, 350px); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 12px; padding: 32px 24px; border-top: 1px solid var(--line); text-align: center; }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.55rem; }
.process-list p { max-width: 620px; margin: 0 auto; color: var(--muted); }

.client-section { padding: 48px 0 58px; background: var(--white); border-block: 1px solid var(--line); }
.client-label { margin: 0 0 36px; text-align: center; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.experience-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.experience-grid > div { min-height: 96px; display: grid; align-content: center; gap: 9px; padding: 20px; border-right: 1px solid var(--line); text-align: center; }
.experience-grid > div:last-child { border-right: 0; }
.experience-grid strong { font-family: var(--font-display); font-size: .98rem; line-height: 1.25; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 10vw, 150px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 48px 25px 0; list-style: none; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; color: var(--blue); font-size: 1.6rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: -4px 45px 26px 0; color: var(--muted); }

.quote-section { padding: clamp(90px, 11vw, 145px) 0; background: var(--ink); color: var(--white); }
.quote-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 145px); }
.quote-copy > p:not(.eyebrow):not(.availability) { max-width: 440px; color: rgba(255,255,255,.66); }
.quote-phone { display: block; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--deep-line); }
.quote-phone span { display: block; color: rgba(255,255,255,.54); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.quote-phone strong { display: block; margin-top: 5px; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.5rem); }
.availability { color: var(--cyan); font-size: .8rem; }
.availability::before { content: "●"; margin-right: 9px; font-size: .6rem; }
.quote-form { padding: clamp(28px, 5vw, 52px); background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.form-submit:disabled { cursor: wait; opacity: .68; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: block; margin-bottom: 20px; }
.quote-form label > span { display: block; margin-bottom: 7px; color: var(--ink-soft); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: #fbfbfa; color: var(--ink); padding: 14px 15px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.quote-form textarea { resize: vertical; min-height: 110px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,121,217,.12); }
.quote-form [aria-invalid="true"] { border-color: #c64040; }
.form-submit { width: 100%; border: 0; }
.form-submit:hover, .form-submit:focus-visible { background: var(--ink); color: var(--white); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .72rem; }
.form-status { margin: 12px 0 0; color: var(--blue); font-weight: 700; font-size: .84rem; }

.site-footer { padding: 70px 0 24px; background: #030d12; color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.6fr .8fr .8fr; gap: 60px; padding-bottom: 65px; }
.footer-brand img { width: 160px; height: auto; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.5); }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-main a, .footer-main span { color: rgba(255,255,255,.6); font-size: .86rem; }
.footer-main a:hover { color: var(--cyan); }
.footer-label { margin: 0 0 10px; color: var(--white) !important; font-family: var(--font-display); font-size: .75rem !important; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom { padding-top: 22px; border-top: 1px solid var(--deep-line); display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font-size: .72rem; }

.legal-page { background: var(--paper); }
.legal-header { position: relative; height: 88px; background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-header:not(.scrolled) .brand img { filter: none; }
.legal-header:not(.scrolled) .language-switch { color: var(--ink); }
.legal-header:not(.scrolled) .header-call { color: var(--ink); }
.legal-hero { padding: 92px 0 66px; background: var(--ice); border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 900px; margin: 0; font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6.2rem); line-height: .94; letter-spacing: -.055em; }
.legal-hero p:last-child { max-width: 680px; margin: 24px 0 0; color: var(--muted); }
.legal-content { padding: 76px 0 110px; }
.legal-grid { display: grid; grid-template-columns: minmax(190px, .45fr) minmax(0, 1.55fr); gap: clamp(48px, 9vw, 130px); }
.legal-nav { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; gap: 10px; }
.legal-nav a { color: var(--muted); font-size: .84rem; }
.legal-nav a:hover { color: var(--blue); }
.legal-copy { max-width: 820px; }
.legal-copy section { padding: 0 0 38px; margin: 0 0 38px; border-bottom: 1px solid var(--line); }
.legal-copy section:last-child { border-bottom: 0; }
.legal-copy h2 { margin: 0 0 14px; font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -.035em; }
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy ul { padding-left: 1.2rem; }
.legal-copy a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible, .no-js .reveal { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav, .header-call { display: none; }
  .menu-toggle { display: block; }
  .site-header { height: 72px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { border-top: 1px solid rgba(7,25,34,.16); }
  .trust-grid > div:nth-child(3) { padding-left: 24px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .service-copy p { min-height: auto; }
  .result-heading {
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "title" "copy";
    row-gap: 22px;
  }
  .result-heading p:last-child { max-width: 620px; margin-bottom: 0; }
}

/* Keep the hero copy clear of the logo on wide, short screens. */
@media (min-width: 1051px) and (max-height: 900px) {
  .hero h1 { font-size: clamp(4rem, 7vw, 6.5rem); }
  .hero-content { padding-bottom: 52px; }
  .hero-content > .eyebrow { transform: translateY(-92px); }
  .hero-lead { margin-top: 22px; }
  .hero-buttons { margin-top: 25px; }
  .hero-proof { margin-top: 26px; }
}

@media (max-width: 760px) {
  .container { width: auto; margin-inline: 16px; }
  .header-actions { gap: 10px; }
  .header-actions > .button { display: none; }
  .brand img { width: 94px; }
  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    align-items: stretch;
  }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,16,23,.91), rgba(3,16,23,.42)), linear-gradient(0deg, rgba(3,16,23,.7), transparent 65%); }
  .hero-content { padding-top: 116px; padding-bottom: 72px; }
  .hero-content > .eyebrow { margin-bottom: 24px; font-size: .68rem; line-height: 1.45; }
  .hero h1 { font-size: clamp(3rem, 13.2vw, 3.65rem); }
  .hero-lead { margin-top: 24px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-proof { gap: 8px; flex-direction: column; }
  .hero-scroll { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 86px; border-right: 0; border-top: 1px solid rgba(7,25,34,.16); padding: 18px 12px !important; }
  .trust-grid > div:first-child { border-top: 0; }
  .process-list li { padding: 28px 14px; }
  .split-heading, .process-layout, .faq-layout, .quote-layout { grid-template-columns: 1fr; gap: 42px; }
  .result-heading { gap: 22px; }
  .result-heading p:last-child { grid-column: auto; }
  .section-heading h2, .process-intro h2, .faq-layout h2, .quote-copy h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .result-heading h2 { font-size: clamp(2rem, 10.3vw, 3rem); white-space: nowrap; }
  .service-grid, .result-gallery { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; display: block; }
  .result-card figcaption p { margin-left: 0; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid > div { min-height: 72px; border-right: 0; border-bottom: 1px solid var(--line); }
  .experience-grid > div:last-child { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .legal-header { height: 72px; }
  .legal-hero { padding: 70px 0 54px; }
  .legal-grid { grid-template-columns: 1fr; gap: 46px; }
  .legal-nav { position: static; }
}

@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; }
}
