:root {
  --navy: #061725;
  --navy-soft: #0b2638;
  --blue: #00aeef;
  --blue-dark: #008fc5;
  --green: #25d366;
  --ink: #0a1d2d;
  --muted: #607281;
  --line: #dce7ed;
  --surface: #f4f8fa;
  --white: #fff;
  --shadow: 0 22px 60px rgba(4, 24, 42, .13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1220px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #e8eef2;
  box-shadow: 0 6px 26px rgba(4, 24, 42, .08);
  backdrop-filter: blur(14px);
}
.header-inner { height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 32px; color: #263d4d; font-size: 14px; font-weight: 750; }
.desktop-nav > a:not(.button) { position: relative; padding: 10px 0; }
.desktop-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--blue); transition: right .2s ease; }
.desktop-nav > a:not(.button):hover::after { right: 0; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .filter-button:focus-visible, .menu-button:focus-visible, .project-card:focus-visible, .lightbox-close:focus-visible { outline: 3px solid rgba(0, 174, 239, .38); outline-offset: 3px; }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(0, 174, 239, .27); }
.button-primary:hover { background: var(--blue-dark); }
.button-small { min-height: 46px; padding: 11px 19px; }
.button-ghost { color: #fff; border-color: rgba(255, 255, 255, .48); background: rgba(255, 255, 255, .07); }
.button-ghost:hover { background: rgba(255, 255, 255, .13); }

.menu-button { display: none; width: 46px; height: 46px; padding: 12px 10px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.menu-button span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { padding: 10px 20px 22px; background: #fff; border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 14px 2px; border-bottom: 1px solid #edf2f5; font-weight: 750; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 40%; }
.hero-shade { background: linear-gradient(90deg, rgba(2, 13, 23, .97) 0%, rgba(3, 19, 32, .87) 42%, rgba(3, 18, 31, .3) 76%, rgba(2, 13, 23, .16)), linear-gradient(0deg, rgba(2, 13, 23, .68), transparent 52%); }
.hero-content { position: relative; z-index: 2; padding: 100px 0 66px; }
.eyebrow, .kicker { margin: 0 0 20px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #d9eaf4; }
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(0, 174, 239, .12); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { max-width: 820px; margin: 0 0 24px; font-size: clamp(48px, 6.5vw, 88px); line-height: .98; letter-spacing: -.052em; text-transform: uppercase; }
h1 em { color: var(--blue); font-style: normal; }
.hero-copy { max-width: 650px; margin: 0 0 31px; color: #dbe7ef; font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.trust-row { max-width: 820px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; border-block: 1px solid rgba(255, 255, 255, .17); }
.trust-row div { padding: 20px 24px 20px 0; }
.trust-row div + div { padding-left: 24px; border-left: 1px solid rgba(255, 255, 255, .17); }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { font-size: 18px; }
.trust-row span { margin-top: 3px; color: #b8cad6; font-size: 12px; }
.service-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.service-list li { padding: 8px 12px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; color: #d5e2ea; background: rgba(255, 255, 255, .05); font-size: 12px; font-weight: 700; }

.work-section { padding: 100px 0; background: var(--surface); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 50px; margin-bottom: 35px; }
.section-heading h2, .quote-intro h2 { margin: 0; font-size: clamp(36px, 5vw, 62px); line-height: 1.02; letter-spacing: -.045em; }
.section-heading > p { margin: 0; color: var(--muted); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filter-button { min-height: 42px; padding: 9px 16px; border: 1px solid #cfdee6; border-radius: 999px; color: #476171; background: #fff; font-size: 13px; font-weight: 800; cursor: pointer; transition: .2s ease; }
.filter-button:hover, .filter-button.is-active { color: #fff; border-color: var(--navy); background: var(--navy); }
.portfolio-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: 305px; gap: 14px; }
.project-card { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; border-radius: 20px; background: #d9e5ea; box-shadow: 0 16px 35px rgba(6, 23, 37, .11); cursor: zoom-in; animation: card-in .28s ease both; }
.project-card[hidden] { display: none; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3, 16, 27, .85) 0%, transparent 52%); }
.project-featured { grid-row: span 2; }
.project-caption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; color: #fff; text-align: left; }
.project-caption b, .project-caption small { display: block; }
.project-caption b { font-size: 17px; }
.project-caption small { margin-top: 2px; color: #cfdee7; font-size: 12px; }
@keyframes card-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.google-card { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center; margin-top: 70px; padding: 46px; border: 1px solid #dfe9ee; border-radius: 26px; background: #fff; box-shadow: var(--shadow); scroll-margin-top: 118px; }
.google-card h3 { margin: 0 0 15px; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; letter-spacing: -.035em; }
.google-copy > p:last-child { max-width: 690px; margin: 14px 0 0; color: var(--muted); }
.rating { margin: 0; color: var(--ink); font-size: 19px; }
.rating span { color: #f5b800; letter-spacing: 3px; }
.google-actions { display: grid; gap: 11px; }
.text-link { padding: 8px 4px; color: #167ba4; font-size: 13px; font-weight: 800; text-align: center; }
.text-link:hover { color: var(--blue-dark); text-decoration: underline; }

.quote-section { padding: 100px 0 0; color: #fff; background: var(--navy); }
.quote-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; padding-bottom: 90px; }
.quote-intro .kicker { margin-bottom: 18px; }
.quote-intro h2 { max-width: 610px; }
.quote-intro > p:not(.kicker) { max-width: 570px; margin: 24px 0 0; color: #b8cbd6; font-size: 17px; }
.direct-contact { display: inline-flex; align-items: center; gap: 14px; margin-top: 32px; padding: 14px 18px 14px 14px; border: 1px solid rgba(37, 211, 102, .35); border-radius: 18px; background: rgba(37, 211, 102, .08); }
.contact-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; color: #052512; background: var(--green); font-size: 20px; font-weight: 900; }
.direct-contact small, .direct-contact strong { display: block; }
.direct-contact small { color: #b9d4c4; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.direct-contact strong { margin-top: 2px; font-size: 19px; }
.quote-form { padding: 30px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 24px; background: #0a2537; box-shadow: 0 25px 60px rgba(0, 0, 0, .22); }
.business-only { display: flex; align-items: center; gap: 9px; margin: 0 0 20px; padding: 11px 13px; border: 1px solid rgba(0, 174, 239, .28); border-radius: 12px; color: #dff5ff; background: rgba(0, 174, 239, .09); font-size: 12px; font-weight: 800; }
.business-only span { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #052512; background: var(--green); font-size: 12px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field { margin-bottom: 14px; }
.field label { display: block; margin: 0 0 7px; color: #c9d8e1; font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 12px 13px; border: 1px solid #315267; border-radius: 12px; outline: 0; color: #fff; background: #0c2d42; }
.field textarea { min-height: 100px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8099a8; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 174, 239, .13); }
.field input:invalid:not(:placeholder-shown) { border-color: #ef6b6b; }
.field-help { display: block; margin: 6px 2px 0; color: #8da5b3; font-size: 10px; }
.button-whatsapp { width: 100%; color: #052512; background: var(--green); box-shadow: 0 12px 28px rgba(37, 211, 102, .2); }
.button-whatsapp:hover { background: #48dd7e; }
.form-note { margin: 11px 0 0; color: #8da5b3; font-size: 11px; text-align: center; }
.site-footer { border-top: 1px solid rgba(255, 255, 255, .1); background: #03111c; }
.footer-inner { min-height: 130px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }
.footer-inner img { width: 145px; height: auto; padding: 8px 10px; border-radius: 10px; background: #fff; }
.footer-inner p { margin: 0; color: #8fa5b3; font-size: 12px; }
.footer-inner p:last-child { text-align: right; }

.floating-whatsapp { position: fixed; z-index: 90; right: 20px; bottom: 20px; width: 60px; height: 60px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; background: var(--green); box-shadow: 0 13px 32px rgba(7, 43, 23, .3); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 30px; fill: #fff; }

.lightbox { width: min(920px, calc(100% - 28px)); max-width: none; padding: 0; overflow: visible; border: 0; border-radius: 20px; color: #fff; background: transparent; }
.lightbox::backdrop { background: rgba(2, 10, 17, .9); backdrop-filter: blur(8px); }
.lightbox figure { margin: 0; overflow: hidden; border-radius: 20px; background: #071827; box-shadow: 0 25px 80px rgba(0, 0, 0, .45); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #020b12; }
.lightbox figcaption { padding: 14px 18px; font-weight: 800; }
.lightbox-close { position: absolute; top: -18px; right: -10px; z-index: 2; width: 45px; height: 45px; border: 2px solid rgba(255, 255, 255, .7); border-radius: 50%; color: #fff; background: #071827; font-size: 28px; line-height: 1; cursor: pointer; }

.consent-banner { position: fixed; z-index: 110; right: 20px; bottom: 94px; width: min(430px, calc(100% - 28px)); padding: 18px; border: 1px solid #d9e6ec; border-radius: 18px; color: var(--ink); background: #fff; box-shadow: 0 20px 55px rgba(3, 17, 28, .25); }
.consent-banner[hidden] { display: none; }
.consent-banner p { margin: 0; color: #476171; font-size: 14px; line-height: 1.45; }
.consent-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 14px; }
.consent-button { min-height: 42px; padding: 9px 15px; border: 1px solid #cbdbe3; border-radius: 11px; font: inherit; font-size: 14px; font-weight: 800; cursor: pointer; }
.consent-reject { color: #395363; background: #fff; }
.consent-accept { border-color: var(--blue); color: #fff; background: var(--blue-dark); }
.consent-button:focus-visible { outline: 3px solid rgba(0, 174, 239, .28); outline-offset: 2px; }

@media (max-width: 960px) {
  .header-inner { height: 88px; }
  .brand img { width: 165px; }
  .desktop-nav { gap: 20px; }
  .hero { min-height: 720px; }
  .section-heading, .quote-layout { grid-template-columns: 1fr; }
  .section-heading { gap: 18px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 320px; }
  .project-featured { grid-row: auto; }
  .google-card { grid-template-columns: 1fr; gap: 28px; }
  .quote-layout { gap: 40px; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 80px; }
  .container { width: min(100% - 24px, 1220px); }
  .header-inner { height: 80px; }
  .brand img { width: 148px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { min-height: 720px; align-items: end; }
  .hero-media img { object-position: 56% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(2, 13, 23, .98) 8%, rgba(2, 13, 23, .86) 58%, rgba(2, 13, 23, .24) 100%); }
  .hero-content { padding: 145px 0 34px; }
  h1 { font-size: clamp(42px, 14vw, 57px); }
  .hero-copy { font-size: 17px; }
  .hero-actions { display: grid; }
  .trust-row { grid-template-columns: 1fr; margin-top: 34px; }
  .trust-row div { padding: 12px 0; }
  .trust-row div + div { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, .13); border-left: 0; }
  .trust-row span { display: inline; margin-left: 5px; }
  .service-list { margin-top: 14px; }
  .work-section, .quote-section { padding-top: 70px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .google-card { margin-top: 50px; padding: 26px; }
  .quote-layout { padding-bottom: 60px; }
  .quote-intro > p:not(.kicker) { font-size: 15px; }
  .quote-form { padding: 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { min-height: 190px; grid-template-columns: 1fr; gap: 12px; padding-block: 28px; }
  .footer-inner p:last-child { text-align: left; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 56px; height: 56px; }
  .consent-banner { right: 14px; bottom: 82px; padding: 16px; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1.35fr; }
}

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