:root {
  --navy-950: #04111f;
  --navy-900: #071b33;
  --navy-800: #0b2c51;
  --blue-600: #0677df;
  --blue-500: #1298ef;
  --cyan-400: #39d9e9;
  --sky-100: #e9f8ff;
  --sky-50: #f6fbfe;
  --white: #ffffff;
  --ink: #0a1b2d;
  --muted: #5c6d7d;
  --line: #d9e6ee;
  --soft-line: rgba(12, 58, 91, .12);
  --shadow-sm: 0 12px 32px rgba(6, 32, 54, .08);
  --shadow-lg: 0 28px 80px rgba(4, 24, 43, .16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max-width: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  min-height: 100vh;
  color: var(--ink);
  background: var(--sky-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.gallery-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--navy-950); background: var(--cyan-400); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(18, 152, 239, .35), transparent 28rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 58%, #07345c);
  overflow: hidden;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto -10% -280px 35%;
  height: 520px;
  background: radial-gradient(ellipse, rgba(57, 217, 233, .18), transparent 66%);
  pointer-events: none;
}

.navbar {
  position: relative;
  z-index: 100;
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-height: 52px; font-size: 17px; letter-spacing: -.02em; }
.brand img { width: 48px; height: 48px; padding: 4px; background: var(--white); border-radius: 50%; object-fit: contain; }
.brand strong { color: var(--cyan-400); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 750; }
.nav-links > a:not(.nav-cta) { color: rgba(255, 255, 255, .74); transition: color .2s ease; }
.nav-links > a:not(.nav-cta):hover { color: var(--white); }
.nav-cta { padding: 12px 18px; color: var(--navy-950); background: var(--white); border-radius: 999px; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); border-radius: 50%; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 70px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, .97fr);
  gap: 72px;
  align-items: center;
}
.eyebrow { margin-bottom: 14px; color: var(--blue-500); font-size: 12px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.hero .eyebrow { color: var(--cyan-400); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 760px; font-size: clamp(46px, 6.1vw, 78px); }
h2 { color: var(--navy-900); font-size: clamp(34px, 4.6vw, 58px); }
h3 { color: var(--navy-900); font-size: 24px; }
.hero-lead { max-width: 670px; margin-top: 26px; color: rgba(255,255,255,.72); font-size: clamp(18px, 2vw, 21px); }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 54px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); box-shadow: 0 16px 36px rgba(3, 119, 223, .3); }
.btn-secondary { color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.24); }
.btn-light { color: var(--navy-900); background: var(--white); }
.hero-points { margin-top: 32px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; color: rgba(255,255,255,.72); list-style: none; font-size: 14px; font-weight: 700; }
.hero-points li::before { content: "•"; margin-right: 9px; color: var(--cyan-400); }
.hero-media { position: relative; min-height: 640px; }
.hero-photo { position: absolute; inset: 0 20px 0 0; border-radius: 30px 30px 120px 30px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.35); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,17,31,.74), transparent 47%); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 33%; }
.hero-photo figcaption { position: absolute; z-index: 1; left: 28px; bottom: 24px; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 750; letter-spacing: .03em; }
.hero-card { position: absolute; right: 0; bottom: 42px; z-index: 2; width: min(340px, 84%); padding: 20px; display: flex; align-items: flex-start; gap: 14px; color: var(--ink); background: rgba(255,255,255,.96); border-radius: 20px; box-shadow: var(--shadow-lg); }
.hero-card strong, .hero-card span { display: block; }
.hero-card strong { color: var(--navy-900); font-size: 15px; }
.hero-card span:last-child { margin-top: 4px; color: var(--muted); font-size: 13px; }
.status-dot { flex: 0 0 auto; width: 11px; height: 11px; margin-top: 5px; border-radius: 50%; background: #20bd73; box-shadow: 0 0 0 6px rgba(32,189,115,.12); }

.proof-strip {
  position: relative;
  z-index: 3;
  width: min(var(--max-width), calc(100% - 40px));
  margin: -42px auto 0;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.proof-strip div { padding-left: 22px; border-left: 1px solid var(--line); }
.proof-strip div:first-child { padding-left: 0; border-left: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { color: var(--navy-900); font-size: 15px; }
.proof-strip span { color: var(--muted); font-size: 13px; }

.section { width: min(var(--max-width), calc(100% - 40px)); margin: 0 auto; padding: 104px 0; }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading > p:last-child { max-width: 680px; margin-top: 18px; color: var(--muted); font-size: 18px; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 64px; align-items: end; }
.split-heading > p { margin-bottom: 4px; }

.work-section { padding-top: 126px; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.project-card { min-width: 0; display: grid; grid-template-rows: 430px auto; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 24px 54px rgba(6,32,54,.13); }
.project-image { position: relative; width: 100%; height: 100%; padding: 18px; border: 0; background: linear-gradient(145deg, #e5eef3, #f7fbfd); cursor: zoom-in; overflow: hidden; }
.project-image::after { content: "View full photo"; position: absolute; right: 16px; bottom: 16px; padding: 8px 12px; color: var(--white); background: rgba(4,17,31,.82); border-radius: 999px; font-size: 11px; font-weight: 850; letter-spacing: .02em; opacity: 0; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease; pointer-events: none; }
.project-image:hover::after, .project-image:focus-visible::after { opacity: 1; transform: none; }
.project-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img { transform: scale(1.012); }
.project-copy { padding: 24px 25px 26px; color: var(--ink); }
.project-copy span { display: block; margin-bottom: 8px; color: var(--cyan-400); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.project-copy h3, .project-card:not(.project-large) .project-copy h3 { color: var(--navy-900); font-size: 24px; }
.project-copy p { max-width: 560px; margin-top: 9px; color: var(--muted); font-size: 14px; }
.section-action { margin-top: 26px; display: flex; justify-content: flex-end; }
.text-button, .card-link { border: 0; background: transparent; color: var(--blue-600); font-weight: 850; cursor: pointer; }
.text-button { min-height: 48px; padding: 8px 0; font-size: 15px; }

.services-section { padding-top: 58px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { min-height: 330px; padding: 34px; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.service-card > span { margin-bottom: auto; color: var(--blue-600); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin-top: 60px; font-size: 28px; }
.service-card p { max-width: 520px; margin-top: 13px; color: var(--muted); }
.service-card ul { margin-top: 20px; padding: 18px 0 0; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--line); list-style: none; }
.service-card li { padding: 7px 10px; color: var(--navy-800); background: var(--sky-100); border-radius: 999px; font-size: 12px; font-weight: 750; }
.service-wide { grid-column: 1 / -1; min-height: auto; display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 24px; }
.service-wide > span { margin: 0; }
.service-wide h3 { margin: 0; }
.card-link { min-height: 48px; display: inline-flex; align-items: center; gap: 7px; }

.quote-section { padding-top: 54px; }
.quote-panel { padding: 58px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.quote-panel .eyebrow { color: var(--cyan-400); }
.quote-panel h2 { color: var(--white); }
.quote-panel > div:first-child > p:last-child { max-width: 640px; margin-top: 20px; color: rgba(255,255,255,.68); }
.quote-steps { display: grid; gap: 14px; }
.quote-steps div { padding: 16px 0; display: grid; grid-template-columns: 44px 1fr; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.14); }
.quote-steps strong { color: var(--cyan-400); font-size: 12px; }
.quote-steps span { color: rgba(255,255,255,.82); }
.quote-panel .btn { justify-self: start; }

.process-section { padding-bottom: 70px; }
.process-list { padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; list-style: none; }
.process-list li { min-height: 290px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-top: 2px solid var(--blue-600); background: var(--white); box-shadow: var(--shadow-sm); }
.process-list > li > span { color: var(--blue-600); font-size: 13px; font-weight: 900; }
.process-list h3 { font-size: 22px; }
.process-list p { margin-top: 11px; color: var(--muted); font-size: 14px; }

.about-section { display: grid; grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr); gap: 80px; align-items: center; }
.about-media { position: relative; min-height: 630px; }
.about-media > img { position: absolute; inset: 0 28px 0 0; width: calc(100% - 28px); height: 100%; object-fit: cover; object-position: center 25%; border-radius: 120px 28px 28px 28px; box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; right: 0; bottom: 28px; padding: 18px 22px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); }
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { color: var(--navy-900); }
.about-badge span { color: var(--muted); font-size: 13px; }
.about-copy p:not(.eyebrow) { max-width: 660px; margin-top: 20px; color: var(--muted); font-size: 17px; }
.check-list { margin-top: 28px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; list-style: none; }
.check-list li { padding: 12px 14px; color: var(--navy-800); background: var(--sky-100); border-radius: 12px; font-size: 14px; font-weight: 750; }
.check-list li::before { content: "✓"; margin-right: 9px; color: var(--blue-600); }

.faq-section { padding-top: 70px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { padding: 0 24px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--navy-900); font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; color: var(--blue-600); background: var(--sky-100); border-radius: 50%; font-size: 20px; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 840px; padding: 0 48px 22px 0; color: var(--muted); }

.contact-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-intro > p:not(.eyebrow) { margin-top: 18px; color: var(--muted); font-size: 17px; }
.contact-options { margin-top: 30px; display: grid; gap: 10px; }
.contact-options a { padding: 16px 18px; display: flex; justify-content: space-between; gap: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.contact-options span { color: var(--muted); font-size: 13px; }
.contact-options strong { color: var(--navy-900); font-size: 14px; text-align: right; }
.contact-form { padding: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.form-row { display: grid; gap: 7px; }
.form-row label { color: var(--navy-900); font-size: 13px; font-weight: 850; }
.form-row label span { color: var(--muted); font-weight: 500; }
.form-row input, .form-row select, .form-row textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: var(--sky-50); border: 1px solid var(--line); border-radius: 12px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(18,152,239,.12); }
.form-full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: 12px; }
.form-note a { color: var(--blue-600); text-decoration: underline; }

.footer { width: min(var(--max-width), calc(100% - 40px)); margin: 0 auto 24px; padding: 38px; color: var(--white); background: var(--navy-950); border-radius: var(--radius-md); }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 64px; height: 64px; padding: 5px; background: var(--white); border-radius: 50%; }
.footer-brand strong { font-size: 18px; }
.footer-brand p { color: rgba(255,255,255,.58); font-size: 13px; }
.footer-links { margin: 32px 0; padding: 24px 0; display: flex; flex-wrap: wrap; gap: 18px 30px; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.74); font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.5); font-size: 11px; }
.footer-bottom .disclaimer { max-width: 620px; text-align: right; }

.floating-whatsapp { position: fixed; left: 20px; bottom: 20px; z-index: 600; width: 56px; height: 56px; display: grid; place-items: center; color: var(--white); background: #25d366; border: 2px solid rgba(255,255,255,.92); border-radius: 50%; box-shadow: 0 14px 36px rgba(18,126,69,.34); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); background: #20bd5a; box-shadow: 0 18px 42px rgba(18,126,69,.42); }
.floating-whatsapp svg { width: 31px; height: 31px; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 600; width: 50px; height: 50px; border: 0; color: var(--white); background: var(--navy-900); border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.gallery-modal { position: fixed; inset: 0; z-index: 1000; padding: 24px; display: none; place-items: center; }
.gallery-modal.open { display: grid; }
.gallery-backdrop { position: absolute; inset: 0; background: rgba(2,11,20,.82); backdrop-filter: blur(8px); }
.gallery-dialog { position: relative; width: min(1180px, 96vw); height: min(900px, 94vh); padding: 24px; display: grid; grid-template-rows: auto minmax(0, 1fr) auto auto; gap: 14px; background: var(--white); border-radius: 24px; box-shadow: 0 36px 100px rgba(0,0,0,.42); }
.gallery-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; }
.gallery-header .eyebrow { margin-bottom: 6px; }
.gallery-header h2 { font-size: clamp(26px, 4vw, 38px); }
.gallery-close { flex: 0 0 auto; width: 46px; height: 46px; border: 0; color: var(--white); background: var(--navy-900); border-radius: 50%; font-size: 26px; cursor: pointer; }
.gallery-stage { position: relative; min-height: 0; display: grid; place-items: center; background: linear-gradient(145deg, #dfe9ee, #f6fafc); border-radius: 18px; overflow: hidden; }
.gallery-stage figure { width: 100%; height: 100%; min-width: 0; min-height: 0; display: flex; flex-direction: column; overflow: hidden; }
.gallery-image-frame { flex: 1 1 0; width: 100%; min-width: 0; min-height: 0; padding: 12px; display: grid; place-items: center; overflow: hidden; }
.gallery-main-image { width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: contain; object-position: center; }
.gallery-caption { padding: 9px 14px; color: var(--navy-900); background: var(--white); font-size: 12px; font-weight: 750; text-align: center; }
.gallery-arrow { position: absolute; top: 50%; z-index: 3; width: 48px; height: 48px; border: 0; color: var(--white); background: rgba(7,27,51,.84); border-radius: 50%; transform: translateY(-50%); cursor: pointer; font-size: 32px; }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-meta { color: var(--muted); font-size: 12px; text-align: right; }
.gallery-thumbnails { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; }
.gallery-thumb { flex: 0 0 72px; width: 72px; height: 58px; padding: 3px; border: 2px solid transparent; background: #eaf2f6; border-radius: 10px; cursor: pointer; }
.gallery-thumb.active { border-color: var(--blue-500); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }

.legal-page { color: var(--ink); background: var(--sky-50); }
.legal-header { background: var(--navy-950); }
.legal-header .navbar { color: var(--white); }
.legal-main { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0 110px; }
.legal-main h1 { color: var(--navy-900); font-size: clamp(42px, 7vw, 68px); }
.legal-main .updated { margin: 12px 0 44px; color: var(--muted); }
.legal-main h2 { margin-top: 40px; font-size: 27px; }
.legal-main p, .legal-main li { margin-top: 12px; color: var(--muted); }
.legal-main ul { padding-left: 22px; }
.legal-main a { color: var(--blue-600); text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 70px; left: 0; right: 0; padding: 14px; display: none; flex-direction: column; align-items: stretch; gap: 2px; color: var(--ink); background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.nav-cta) { min-height: 48px; padding: 12px 14px; display: flex; align-items: center; color: var(--navy-900); }
  .nav-cta { margin-top: 8px; text-align: center; background: var(--sky-100); }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 62px; }
  .hero-media { min-height: 620px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip div:nth-child(3) { padding-left: 0; border-left: 0; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-card { grid-template-rows: 420px auto; }
  .project-large { grid-column: 1 / -1; }
  .quote-panel { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .about-section, .contact-section { grid-template-columns: 1fr; }
  .about-media { min-height: 680px; }
}

@media (max-width: 700px) {
  .navbar, .hero, .proof-strip, .section, .footer { width: min(100% - 24px, var(--max-width)); }
  .brand span { font-size: 15px; }
  .hero { padding: 50px 0 76px; }
  .hero-media { min-height: 520px; }
  .hero-photo { right: 0; border-radius: 24px 24px 80px 24px; }
  .hero-card { right: 10px; bottom: 22px; }
  .proof-strip { margin-top: -28px; padding: 22px; grid-template-columns: 1fr; }
  .proof-strip div, .proof-strip div:nth-child(3) { padding: 0 0 14px; border-left: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { padding-bottom: 0; border-bottom: 0; }
  .section { padding: 78px 0; }
  .work-section { padding-top: 94px; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card, .project-large { grid-column: auto; grid-template-rows: minmax(360px, 64vh) auto; }
  .project-image { padding: 12px; }
  .project-copy { padding: 21px 20px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; padding: 28px; }
  .service-wide { grid-column: auto; display: flex; align-items: flex-start; }
  .service-wide h3 { margin-top: 44px; }
  .quote-panel { padding: 34px 24px; gap: 34px; border-radius: 24px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 230px; }
  .about-section { gap: 46px; }
  .about-media { min-height: 560px; }
  .about-media > img { right: 18px; width: calc(100% - 18px); border-radius: 80px 22px 22px 22px; }
  .check-list { grid-template-columns: 1fr; }
  .contact-section { gap: 42px; }
  .contact-options a { flex-direction: column; gap: 3px; }
  .contact-options strong { text-align: left; }
  .contact-form { padding: 24px; grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .footer { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-bottom .disclaimer { text-align: left; }
  .floating-whatsapp { left: 12px; bottom: 12px; }
  .back-to-top { right: 12px; bottom: 12px; }
  .gallery-modal { padding: 10px; }
  .gallery-dialog { width: 100%; height: 94vh; padding: 14px; border-radius: 18px; }
  .gallery-header h2 { font-size: 24px; }
  .gallery-meta { display: none; }
}

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