:root {
  --ink: #121316;
  --ink-soft: #25272c;
  --muted: #6f7279;
  --warm: #fbfaf7;
  --warm-deep: #f3efe8;
  --white: #ffffff;
  --yellow: #f7b51b;
  --yellow-light: #ffd35a;
  --yellow-dark: #d88b00;
  --blue: #075bc7;
  --blue-deep: #062d62;
  --green: #25d366;
  --line: #e6e1d9;
  --shadow: 0 18px 45px rgba(25, 27, 31, 0.09);
  --radius: 2px;
  --container: 1180px;
  --ease: 220ms ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button,
input,
select,
textarea { font: inherit; }

button { cursor: pointer; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(7, 91, 199, 0.45);
  outline-offset: 3px;
}

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }

.page-top { position: absolute; top: 0; left: 0; width: 1px; height: 1px; overflow: hidden; }

.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;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(18, 19, 22, 0.06); }

.nav-wrap { display: flex; align-items: center; min-height: 76px; gap: 28px; }

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }

.brand img { width: 204px; height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); margin-left: auto; }

.site-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-phone { display: grid; gap: 0; text-align: right; line-height: 1.2; }

.nav-phone__label { color: var(--muted); font-size: 0.67rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.nav-phone a { display: block; font-size: 0.76rem; font-weight: 800; }

.nav-phone a:hover { color: var(--yellow-dark); }

.nav-toggle { display: none; border: 0; background: transparent; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.button:hover { transform: translateY(-2px); }

.button--small { min-height: 42px; padding: 10px 16px; font-size: 0.7rem; }

.button--accent,
.button--primary { color: var(--ink); background: var(--yellow); box-shadow: 0 8px 20px rgba(247, 181, 27, 0.2); }

.button--accent:hover,
.button--primary:hover { background: var(--yellow-light); box-shadow: 0 12px 26px rgba(247, 181, 27, 0.27); }

.button--light { color: var(--ink); background: var(--white); }

.button--light:hover { background: var(--yellow-light); }

.button--outline { color: var(--ink); background: transparent; border-color: var(--ink); }

.button--outline:hover { color: var(--white); background: var(--ink); }

.button--full { width: 100%; }

.eyebrow { margin: 0 0 14px; color: var(--yellow-dark); font-size: 0.74rem; font-weight: 850; letter-spacing: 0.14em; line-height: 1.2; text-transform: uppercase; }

.eyebrow--light { color: var(--yellow-light); }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 { letter-spacing: -0.045em; line-height: 1.05; }

h1 { max-width: 680px; margin-bottom: 22px; font-size: clamp(3.3rem, 6vw, 5.8rem); font-weight: 880; }

h1 span { color: var(--yellow-dark); }

h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 850; }

h3 { margin-bottom: 12px; font-size: 1.34rem; font-weight: 820; }

p { color: var(--muted); }

.hero { position: relative; overflow: hidden; min-height: 670px; background: var(--warm); }

.hero__rings {
  position: absolute;
  top: -320px;
  left: -120px;
  width: 830px;
  height: 830px;
  border: 1px solid rgba(18, 19, 22, 0.065);
  border-radius: 50%;
  box-shadow: 0 0 0 120px var(--warm), 0 0 0 121px rgba(18, 19, 22, 0.05), 0 0 0 260px var(--warm), 0 0 0 261px rgba(18, 19, 22, 0.04);
  pointer-events: none;
}

.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr); align-items: center; min-height: 670px; gap: 44px; }

.hero-copy { position: relative; z-index: 1; padding: 68px 0 78px; }

.hero-lead { max-width: 555px; margin-bottom: 30px; font-size: 1.08rem; }

.hero-actions { display: flex; align-items: center; gap: 24px; margin-bottom: 54px; }

.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 0.84rem; font-weight: 800; }

.text-link span { color: var(--yellow-dark); font-size: 1.3rem; transition: transform var(--ease); }

.text-link:hover span { transform: translateX(4px); }

.text-link--dark { color: var(--ink); }

.hero-proof { display: flex; flex-wrap: wrap; gap: 12px; }

.proof-item { display: flex; align-items: center; min-width: 198px; gap: 12px; padding: 12px 15px; background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(7, 91, 199, 0.16); box-shadow: 0 8px 20px rgba(18, 19, 22, 0.05); }

.proof-mark { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; color: var(--white); background: var(--blue); border-radius: 10px; font-size: 1.28rem; font-weight: 900; line-height: 1; }

.proof-item div { display: grid; gap: 2px; }

.proof-item strong { font-size: 0.86rem; }

.proof-item div span { color: var(--muted); font-size: 0.76rem; }

.hero-visual { position: relative; align-self: stretch; min-height: 670px; }

.hero-visual__halo { position: absolute; top: 12%; right: -8%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle at 48% 44%, rgba(247, 181, 27, 0.46), rgba(247, 181, 27, 0.09) 54%, transparent 70%); }

.hero-visual img { position: absolute; z-index: 1; right: 2%; bottom: 0; width: min(100%, 540px); max-height: 670px; object-fit: contain; object-position: bottom right; }

.hero-visual__badge { position: absolute; z-index: 2; top: 27%; right: 0; display: flex; align-items: center; gap: 10px; padding: 13px 16px 13px 12px; color: var(--ink); background: var(--yellow); box-shadow: var(--shadow); transform: rotate(-4deg); }

.hero-visual__badge strong { display: grid; width: 34px; height: 34px; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-size: 0.8rem; }

.hero-visual__badge span { font-size: 0.7rem; font-weight: 800; line-height: 1.2; text-transform: uppercase; }

.quote-ribbon { background: var(--yellow); }

.quote-ribbon__inner { display: flex; align-items: center; justify-content: space-between; min-height: 148px; gap: 32px; }

.quote-ribbon h2 { margin: 0; color: var(--ink); font-size: clamp(1.8rem, 3vw, 2.7rem); }

.quote-ribbon__action { display: flex; align-items: center; gap: 24px; color: rgba(18, 19, 22, 0.74); font-size: 0.9rem; }

.section { padding: 126px 0; }

.two-column { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr); align-items: center; gap: clamp(54px, 9vw, 120px); }

.image-frame { position: relative; padding: 18px; background: var(--white); box-shadow: var(--shadow); }

.image-frame::before { position: absolute; z-index: 0; top: -18px; left: -18px; width: 120px; height: 120px; border-top: 8px solid var(--yellow); border-left: 8px solid var(--yellow); content: ""; }

.image-frame img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1; object-fit: cover; }

.image-frame--blue::after { position: absolute; right: -18px; bottom: -18px; width: 120px; height: 120px; background: var(--blue); content: ""; }

.image-stamp { position: absolute; z-index: 2; right: 26px; bottom: 26px; padding: 10px 13px; color: var(--white); background: var(--ink); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.about-copy { max-width: 560px; }

.about-copy > p:not(.eyebrow) { max-width: 510px; margin-bottom: 28px; font-size: 1.04rem; }

.check-list { display: grid; gap: 13px; margin: 0 0 28px; padding: 0; list-style: none; }

.check-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--muted); font-size: 0.92rem; }

.check-list li > span:first-child { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; color: var(--white); background: var(--blue); border-radius: 50%; font-size: 0.7rem; font-weight: 900; }

.check-list strong { color: var(--ink); }

.section-heading { max-width: 820px; margin-bottom: 54px; }

.section-heading h2 { max-width: 780px; }

.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.65fr); align-items: end; gap: 70px; max-width: none; }

.section-heading--split > p { margin: 0 0 12px; }

.services { background: var(--white); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.service-card { position: relative; min-height: 275px; padding: 27px 28px 24px; overflow: hidden; background: var(--warm); border: 1px solid var(--line); transition: transform var(--ease), box-shadow var(--ease); }

.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.service-card::after { position: absolute; right: -34px; bottom: -65px; width: 160px; height: 160px; border: 1px solid rgba(18, 19, 22, 0.08); border-radius: 50%; content: ""; }

.service-card--yellow { background: var(--yellow); border-color: var(--yellow); }

.service-card--blue { color: var(--white); background: var(--blue); border-color: var(--blue); }

.service-card--blue p,
.service-card--blue .service-number { color: rgba(255, 255, 255, 0.76); }

.service-card--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }

.service-card--dark p,
.service-card--dark .service-number { color: rgba(255, 255, 255, 0.7); }

.service-card--outline { background: transparent; }

.service-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 38px; }

.service-number { color: var(--yellow-dark); font-size: 0.8rem; font-weight: 850; }

.service-symbol { color: var(--yellow-dark); font-size: 2.2rem; font-weight: 200; line-height: 1; }

.service-card--blue .service-symbol,
.service-card--dark .service-symbol { color: var(--yellow-light); }

.service-card p { max-width: 280px; margin-bottom: 20px; font-size: 0.88rem; }

.service-card a { position: absolute; right: 28px; bottom: 24px; z-index: 1; color: inherit; font-size: 0.76rem; font-weight: 850; text-transform: uppercase; }

.service-card a span { color: var(--yellow-dark); font-size: 1.1rem; }

.service-card--blue a span,
.service-card--dark a span { color: var(--yellow-light); }

.feature-project { padding: 100px 0; color: var(--white); background: var(--blue-deep); }

.feature-project__grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr); align-items: center; gap: clamp(50px, 8vw, 120px); }

.feature-project__copy h2 { max-width: 590px; }

.feature-project__copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 30px; color: rgba(255, 255, 255, 0.76); }

.feature-project__image { position: relative; margin: 0; }

.feature-project__image img { width: 100%; max-height: 550px; object-fit: cover; object-position: center; }

.feature-project__image figcaption { position: absolute; right: 18px; bottom: 18px; max-width: 270px; padding: 12px 14px; color: var(--ink); background: var(--yellow); font-size: 0.76rem; font-weight: 750; line-height: 1.35; }

.gallery-section { background: var(--warm-deep); }

.section-heading--center { max-width: 760px; margin-inline: auto; text-align: center; }

.section-heading--center h2 { margin-inline: auto; }

.section-heading--center p:last-child { max-width: 570px; margin-inline: auto; }

.gallery-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }

.gallery-item { position: relative; min-width: 0; aspect-ratio: 1; padding: 0; overflow: hidden; border: 0; background: var(--ink); }

.gallery-item--extra { display: none; }

.gallery-item--extra.is-visible { display: block; }

.gallery-item::after { position: absolute; inset: 0; display: grid; place-items: center; color: var(--white); background: rgba(18, 19, 22, 0.42); content: "↗"; font-size: 1.55rem; font-weight: 800; opacity: 0; transition: opacity var(--ease); }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:hover::after { opacity: 1; }

.gallery-actions { display: flex; justify-content: center; margin-top: 38px; }

.gallery-actions .button span { transition: transform var(--ease); }

.gallery-actions .button[aria-expanded="true"] span { transform: rotate(180deg); }

.reasons { background: var(--white); }

.reasons-grid { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); gap: clamp(54px, 9vw, 120px); align-items: center; }

.reasons-intro h2 { max-width: 430px; }

.reasons-intro > p:not(.eyebrow) { max-width: 420px; margin-bottom: 28px; }

.reason-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }

.reason-card { min-height: 200px; padding: 28px; border: 1px solid var(--line); background: var(--warm); }

.reason-card:nth-child(2),
.reason-card:nth-child(3) { background: var(--warm-deep); }

.reason-card > span { display: inline-block; margin-bottom: 26px; color: var(--yellow-dark); font-size: 1.3rem; font-weight: 850; }

.reason-card h3 { margin-bottom: 9px; font-size: 1.1rem; }

.reason-card p { margin-bottom: 0; font-size: 0.84rem; }

.process { background: var(--warm); }

.process-list { position: relative; display: grid; gap: 44px; max-width: 930px; margin-inline: auto; }

.process-list::before { position: absolute; top: 40px; bottom: 40px; left: 50%; width: 1px; background: var(--line); content: ""; transform: translateX(-50%); }

.process-step { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; min-height: 205px; }

.process-step::before { position: absolute; z-index: 1; top: 50%; left: 50%; width: 9px; height: 9px; background: var(--yellow); border: 3px solid var(--warm); border-radius: 50%; content: ""; transform: translate(-50%, -50%); box-shadow: 0 0 0 1px var(--yellow); }

.process-step--reverse .process-step__copy { grid-column: 2; grid-row: 1; }

.process-step--reverse .process-step__media { grid-column: 1; grid-row: 1; }

.process-step__copy { padding-right: 34px; text-align: right; }

.process-step--reverse .process-step__copy { padding-right: 0; padding-left: 34px; text-align: left; }

.process-number { display: block; margin-bottom: 12px; color: var(--yellow-dark); font-size: 1rem; font-weight: 850; }

.process-step h3 { margin-bottom: 10px; font-size: 1.3rem; }

.process-step p { max-width: 340px; margin: 0 0 0 auto; font-size: 0.9rem; }

.process-step--reverse p { margin-right: 0; margin-left: 0; }

.process-step__media { overflow: hidden; background: var(--white); }

.process-step__media img { width: 100%; height: 205px; object-fit: cover; transition: transform 500ms ease; }

.process-step:hover .process-step__media img { transform: scale(1.04); }

.contact-section { padding: 116px 0; color: var(--white); background: var(--ink); }

.contact-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(400px, 0.92fr); align-items: start; gap: clamp(50px, 9vw, 130px); }

.contact-copy h2 { max-width: 570px; }

.contact-copy > p:not(.eyebrow) { max-width: 480px; color: rgba(255, 255, 255, 0.72); }

.contact-details { display: grid; gap: 13px; margin-top: 42px; }

.contact-details a,
.contact-details address { display: flex; align-items: center; gap: 14px; width: fit-content; margin: 0; font-style: normal; }

.contact-details a > span:first-child,
.contact-details address > span:first-child { display: grid; width: 38px; height: 38px; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-size: 1.05rem; font-weight: 900; }

.contact-details a > span:last-child,
.contact-details address > span:last-child { display: grid; gap: 0; }

.contact-details small { color: rgba(255, 255, 255, 0.55); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }

.contact-details strong { font-size: 0.91rem; }

.contact-details a:hover strong { color: var(--yellow-light); }

.contact-icon--whatsapp { background: var(--green) !important; }

.contact-icon--whatsapp img { width: 23px; height: 23px; object-fit: contain; }

.quote-form { padding: clamp(26px, 4vw, 44px); color: var(--ink); background: var(--white); box-shadow: var(--shadow); }

.form-heading { margin-bottom: 27px; }

.form-heading > span { display: inline-block; margin-bottom: 14px; color: var(--yellow-dark); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.1em; }

.form-heading h3 { margin-bottom: 7px; font-size: 1.9rem; }

.form-heading p { margin: 0; font-size: 0.86rem; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.form-grid label { display: grid; gap: 7px; color: var(--ink); font-size: 0.75rem; font-weight: 800; }

.form-field--full { grid-column: 1 / -1; }

.form-grid input:not([type="checkbox"]),
.form-grid select,
.form-grid textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--warm); border: 1px solid var(--line); border-radius: 0; outline: 0; transition: border-color var(--ease), box-shadow var(--ease); }

.form-grid textarea { min-height: 112px; resize: vertical; }

.form-grid input:not([type="checkbox"]):focus,
.form-grid select:focus,
.form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7, 91, 199, 0.1); }

.form-grid input::placeholder,
.form-grid textarea::placeholder { color: #989a9f; }

.quote-form > .button { margin-top: 22px; }

.form-status { min-height: 1.5em; margin: 13px 0 0; color: var(--blue); font-size: 0.8rem; font-weight: 750; }

.form-note { margin: 0; color: var(--muted); font-size: 0.7rem; }

.site-footer { color: rgba(255, 255, 255, 0.78); background: #08090b; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 1fr; gap: 60px; padding: 72px 0 54px; }

.brand--footer { margin-bottom: 19px; }

.brand--footer img { width: 215px; }

.footer-brand p { max-width: 280px; margin: 0; color: rgba(255, 255, 255, 0.55); font-size: 0.82rem; }

.footer-grid h3 { margin-bottom: 18px; color: var(--yellow-light); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 8px; }

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span,
.footer-grid > div:not(.footer-brand) address { color: rgba(255, 255, 255, 0.68); font-size: 0.85rem; font-style: normal; }

.footer-contact { gap: 14px !important; }

.footer-contact h3 { margin-bottom: 2px; }

.footer-contact__item { display: flex; align-items: flex-start; gap: 12px; }

.footer-contact__icon { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; color: var(--yellow-light) !important; border: 1px solid rgba(255, 211, 90, 0.52); border-radius: 50%; font-size: 1rem !important; line-height: 1; }

.footer-contact__icon--location { position: relative; }

.footer-contact__icon--location::before { width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 50% 50% 50% 0; content: ""; transform: rotate(-45deg) translate(1px, 1px); }

.footer-contact__icon--location::after { position: absolute; width: 4px; height: 4px; background: currentColor; border-radius: 50%; content: ""; }

.footer-contact__item > a,
.footer-contact__item > address { padding-top: 7px; }

.footer-contact__stack { display: grid; gap: 4px; }

.footer-contact__stack a { padding-top: 0; }

.footer-contact__item a:hover { color: var(--yellow-light) !important; }

.footer-grid > div:not(.footer-brand) a:hover { color: var(--yellow-light); }

.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.45); font-size: 0.72rem; }

.footer-bottom a:hover { color: var(--yellow-light); }

.whatsapp-float { position: fixed; z-index: 15; right: 24px; bottom: 24px; display: grid; width: 56px; height: 56px; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; box-shadow: 0 12px 25px rgba(37, 211, 102, 0.28); font-size: 1.75rem; transition: transform var(--ease), box-shadow var(--ease); }

.whatsapp-float img { width: 31px; height: 31px; object-fit: contain; }

.whatsapp-float:hover { box-shadow: 0 16px 30px rgba(37, 211, 102, 0.4); transform: translateY(-3px); }

.lightbox { position: fixed; z-index: 50; inset: 0; display: none; align-items: center; justify-content: center; padding: 44px 80px; background: rgba(8, 9, 11, 0.94); opacity: 0; transition: opacity var(--ease); }

.lightbox.is-open { display: flex; opacity: 1; }

.lightbox__figure { display: grid; max-width: min(92vw, 980px); max-height: 90vh; margin: 0; gap: 12px; justify-items: center; }

.lightbox__figure img { max-width: 100%; max-height: calc(90vh - 48px); object-fit: contain; }

.lightbox__figure figcaption { color: rgba(255, 255, 255, 0.76); font-size: 0.82rem; }

.lightbox__close,
.lightbox__prev,
.lightbox__next { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; color: var(--white); background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); font-size: 2rem; line-height: 1; transition: background var(--ease); }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--yellow); }

.lightbox__close { top: 24px; right: 24px; }

.lightbox__prev { top: 50%; left: 24px; transform: translateY(-50%); }

.lightbox__next { top: 50%; right: 24px; transform: translateY(-50%); }

.noscript-message { padding: 12px; color: var(--ink); background: var(--yellow); text-align: center; }

@media (max-width: 1050px) {
  .nav-wrap { gap: 18px; }
  .nav-phone { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr); }
  .hero-visual img { right: -8%; }
  .gallery-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .section { padding: 100px 0; }
}

@media (max-width: 820px) {
  .container { width: min(var(--container), calc(100% - 36px)); }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 178px; }
  .nav-toggle { position: relative; z-index: 22; display: grid; width: 42px; height: 42px; padding: 10px; margin-left: auto; place-content: center; gap: 4px; }
  .nav-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; background: var(--ink); transition: transform var(--ease), opacity var(--ease); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: grid; gap: 0; padding: 12px 18px 18px; background: var(--warm); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity var(--ease), transform var(--ease); }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 12px 0; }
  .site-nav a::after { right: auto; bottom: 7px; width: 34px; }
  .nav-actions { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; min-height: auto; }
  .hero-copy { padding: 80px 0 36px; }
  .hero-visual { min-height: 440px; }
  .hero-visual img { right: 50%; width: min(88%, 430px); max-height: 475px; transform: translateX(50%); }
  .hero-visual__halo { top: 8%; right: 50%; width: 420px; height: 420px; transform: translateX(50%); }
  .hero-visual__badge { top: 18%; right: 8%; }
  .quote-ribbon__inner { align-items: flex-start; flex-direction: column; justify-content: center; min-height: 220px; padding-top: 36px; padding-bottom: 36px; }
  .quote-ribbon__action { flex-wrap: wrap; }
  .two-column,
  .feature-project__grid,
  .reasons-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 54px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 14px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-project__copy { order: 1; }
  .feature-project__image { order: 0; }
  .process-list { gap: 28px; }
  .process-list::before { display: none; }
  .process-step,
  .process-step--reverse { grid-template-columns: 1fr; gap: 22px; min-height: auto; padding: 20px 0; }
  .process-step::before { display: none; }
  .process-step__copy,
  .process-step--reverse .process-step__copy { grid-column: auto; grid-row: auto; padding: 0; text-align: left; }
  .process-step__media,
  .process-step--reverse .process-step__media { grid-column: auto; grid-row: auto; }
  .process-step p { margin: 0; }
  .process-step__media img { height: 230px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  h1 { font-size: clamp(2.85rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2.05rem, 11vw, 3rem); }
  .hero-copy { padding-top: 66px; }
  .hero-lead { font-size: 0.98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-bottom: 38px; }
  .hero-proof { flex-direction: column; gap: 15px; }
  .hero-visual { min-height: 375px; }
  .hero-visual img { width: 100%; max-height: 410px; }
  .hero-visual__badge { right: 0; padding: 10px; }
  .hero-visual__badge span { font-size: 0.62rem; }
  .section { padding: 76px 0; }
  .quote-ribbon__action { align-items: flex-start; flex-direction: column; gap: 16px; }
  .image-frame { padding: 11px; }
  .image-frame::before { top: -10px; left: -10px; width: 80px; height: 80px; border-width: 5px; }
  .image-frame--blue::after { right: -10px; bottom: -10px; width: 80px; height: 80px; }
  .image-stamp { right: 17px; bottom: 17px; font-size: 0.58rem; }
  .service-grid,
  .reason-cards,
  .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .feature-project { padding: 76px 0; }
  .feature-project__image figcaption { right: 10px; bottom: 10px; max-width: 205px; font-size: 0.67rem; }
  .contact-section { padding: 76px 0; }
  .quote-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 54px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-bottom: 24px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .lightbox { padding: 54px 20px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}

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