:root {
  --font-display: "Fredoka", "Nunito Sans", Arial, sans-serif;
  --font-primary: "Nunito Sans", Arial, sans-serif;
  --dpb-magenta: #C11382;
  --dpb-turquoise: #00A293;
  --dpb-cyan: #00AFD6;
  --dpb-lime: #87C000;
  --dpb-light-green: #BCD870;
  --dpb-orange: #FF6E00;
  --dpb-charcoal: #242428;
  --dpb-white: #FFFFFF;
  --dpb-light-gray: #F7F7F7;
  --dpb-purple: #8064B4;
  --dpb-magenta-text: #C11382;
  --dpb-turquoise-text: #007A70;
  --dpb-cyan-text: #007E9A;
  --dpb-lime-text: #5C7800;
  --dpb-orange-text: #A94700;
  --ink: var(--dpb-charcoal);
  --muted: #68656b;
  --paper: var(--dpb-white);
  --cream: #faf9f7;
  --blush: #fcebf6;
  --magenta: var(--dpb-magenta);
  --magenta-dark: #981068;
  --turquoise: var(--dpb-turquoise);
  --cyan: var(--dpb-cyan);
  --lime: var(--dpb-lime);
  --light-green: var(--dpb-light-green);
  --orange: var(--dpb-orange);
  --purple: var(--dpb-purple);
  --corporate: var(--dpb-charcoal);
  --line: rgba(41, 39, 43, 0.11);
  --shadow: 0 20px 60px rgba(45, 33, 43, 0.13);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-primary); line-height: 1.6; overflow-x: hidden; }
body.menu-open { position: fixed; width: 100%; overflow: hidden; }
body.testimonial-modal-open { position: fixed; width: 100%; overflow: hidden; }
body.menu-open .whatsapp-float,
body.menu-open .dino-mascot { visibility: hidden; opacity: 0; pointer-events: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-primary); line-height: 1.08; letter-spacing: -0.035em; }
h2 { margin-bottom: 22px; font-size: clamp(2rem, 4.2vw, 4rem); font-weight: 800; }
h3 { font-size: 1.17rem; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(78px, 10vw, 140px) 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; background: var(--ink); color: white; transform: translateY(-160%); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.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; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: var(--header-height); color: var(--ink); transition: background .3s ease, box-shadow .3s ease, color .3s ease, height .3s ease; }
.site-header.scrolled, .site-header.menu-active { height: 72px; color: var(--ink); background: rgba(255,255,255,.95); box-shadow: 0 8px 32px rgba(55,29,43,.08); backdrop-filter: blur(14px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { display: block; object-fit: contain; object-position: left center; }
.brand-logo-full { width: 132px; height: 70px; }
.brand-logo-isotype { display: none; width: 48px; height: 48px; }
.site-header:not(.scrolled):not(.menu-active) .brand-logo-full { filter: drop-shadow(0 3px 8px rgba(55,29,43,.08)); }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); font-size: 14px; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; padding: 12px 0; }
.main-nav > a:not(.button)::after { content: ''; position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 0 24px; border: 1px solid var(--magenta); border-radius: 999px; background: var(--magenta); color: white; font-weight: 700; cursor: pointer; box-shadow: 0 10px 28px rgba(173,33,111,.2); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--magenta-dark); box-shadow: 0 14px 34px rgba(173,33,111,.28); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button-ghost { border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.1); box-shadow: none; backdrop-filter: blur(8px); }
.button-ghost:hover { background: white; color: var(--ink); }
.button-light { border-color: white; background: white; color: var(--corporate); box-shadow: none; }
.button-light:hover { background: var(--cream); color: var(--corporate); }
.button-outline-light { border-color: rgba(255,255,255,.58); background: transparent; box-shadow: none; }
.button-outline-light:hover { border-color: white; background: rgba(255,255,255,.1); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { position: relative; min-height: min(820px, 100svh); display: grid; align-items: center; overflow: hidden; color: var(--ink); background: var(--dpb-light-gray); }
.hero::before { content: ''; position: absolute; top: 17%; right: 3%; width: 13px; height: 13px; border-radius: 50%; background: var(--dpb-magenta); pointer-events: none; }
.hero::after { content: ''; position: absolute; right: 2%; bottom: 12%; width: 58px; height: 6px; border-radius: 99px; background: var(--dpb-lime); transform: rotate(-7deg); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.04fr); align-items: center; gap: clamp(46px, 5.2vw, 78px); padding-top: calc(var(--header-height) + 42px); padding-bottom: 54px; }
.hero-copy { position: relative; max-width: 550px; }
.hero-copy::before { content: ''; position: absolute; width: 7px; height: 68px; left: -24px; top: 66px; border-radius: 9px; background: linear-gradient(var(--magenta) 0 33%, var(--turquoise) 33% 66%, var(--lime) 66%); }
.eyebrow { margin-bottom: 18px; color: var(--magenta); font-size: 12px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.services-section .eyebrow { color: var(--dpb-cyan-text); }
.portfolio-section .eyebrow { color: var(--dpb-magenta); }
.about-section .eyebrow { color: var(--dpb-turquoise-text); }
.process-section .eyebrow { color: var(--dpb-magenta); }
.testimonials-section .eyebrow { color: var(--dpb-magenta); }
.contact-section .eyebrow { color: var(--dpb-turquoise-text); }
.hero .eyebrow { color: var(--dpb-magenta-text); }
.hero .eyebrow span { display: inline-block; width: 28px; height: 1px; margin: 0 10px 4px 0; background: currentColor; }
.hero h1 { max-width: 550px; margin-bottom: 24px; font-family: var(--font-display); font-size: clamp(3.45rem, 5.25vw, 5.2rem); font-weight: 600; line-height: 1.02; letter-spacing: -.03em; text-wrap: balance; }
.hero-lead { max-width: 530px; margin-bottom: 32px; font-size: clamp(1.03rem, 1.4vw, 1.2rem); color: var(--muted); }
.hero .button-ghost { border-color: rgba(36,36,40,.24); background: transparent; color: var(--ink); backdrop-filter: none; }
.hero .button-ghost:hover { border-color: var(--ink); background: var(--ink); color: white; }
.experience-note { display: flex; align-items: center; gap: 10px; margin: 28px 0 0; font-size: 14px; }
.experience-note strong { color: var(--dpb-turquoise-text); font-size: 18px; }
.hero-gallery { position: relative; display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); grid-template-rows: 1fr 1fr; gap: 16px; width: 100%; max-width: 610px; margin-left: auto; }
.hero-gallery::before { content: ''; position: absolute; z-index: -1; left: -20px; bottom: 9%; width: 42px; height: 42px; border: 8px solid var(--dpb-cyan); border-radius: 50%; opacity: .9; }
.hero-photo { margin: 0; overflow: hidden; border: 5px solid white; border-radius: 24px; background: white; box-shadow: 0 16px 38px rgba(45,33,43,.11); transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease; }
.hero-photo-main { grid-column: 2; grid-row: 1 / 3; aspect-ratio: 4 / 5; }
.hero-photo-secondary { aspect-ratio: 3 / 4; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-image-position, center); }
@media (hover: hover) and (pointer: fine) {
  .hero-photo:hover { transform: translateY(-4px) scale(1.012); box-shadow: 0 20px 46px rgba(45,33,43,.14); }
}

.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 60px; margin-bottom: 54px; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.section-heading > p { max-width: 500px; color: var(--muted); }
.section-heading.centered { display: block; max-width: 720px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered > p { margin-inline: auto; }
.portfolio-section { background: #f7f7f8; }
.portfolio-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-template-rows: 310px 310px; gap: 18px; }
.portfolio-card { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius); background: var(--blush); color: white; box-shadow: 0 12px 40px rgba(79,44,57,.09); }
.portfolio-card:first-child { grid-row: 1 / 3; }
.portfolio-image, .portfolio-shade { position: absolute; inset: 0; }
.portfolio-image { background-image: url('../assets/images/hero-decoparty.jpg'); background-size: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
img.portfolio-image { width: 100%; height: 100%; object-fit: cover; background-image: none; }
.portfolio-card:nth-child(1) .portfolio-image { background-position: 72% center; }
.portfolio-card:nth-child(2) .portfolio-image { background-position: 92% 36%; transform: scale(1.2); }
.portfolio-card:nth-child(3) .portfolio-image { background-position: 45% 70%; transform: scale(1.15); }
.portfolio-card:nth-child(4) .portfolio-image { background-position: 64% 65%; transform: scale(1.28); }
.portfolio-card:nth-child(5) .portfolio-image { background-position: 97% 78%; transform: scale(1.12); }
.portfolio-shade { background: linear-gradient(0deg, rgba(39,23,31,.72), transparent 60%); }
.portfolio-content { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; }
.portfolio-content span { display: block; margin-bottom: 4px; color: rgba(255,255,255,.78); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.portfolio-content h3 { margin: 0; font-size: clamp(1.2rem, 2vw, 1.65rem); }
.temp-badge { position: absolute; z-index: 3; top: 16px; left: 16px; padding: 5px 9px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; background: rgba(35,26,30,.35); color: white; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.portfolio-card:hover .portfolio-image { transform: scale(1.08); }
.portfolio-card:nth-child(n+2):hover .portfolio-image { transform: scale(1.3); }
.section-action { margin-top: 38px; text-align: center; }
.text-link { display: inline-flex; gap: 9px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-weight: 700; }

.services-section { background: white; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 265px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card::after { content: ''; position: absolute; right: -36px; bottom: -48px; width: 130px; height: 130px; border-radius: 50%; border: 22px solid var(--card-accent, var(--magenta)); opacity: .09; transition: transform .4s ease; }
.service-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.2) rotate(12deg); }
.service-preview { display: none; }
.service-icon { display: grid; width: 68px; height: 68px; margin-bottom: 32px; place-items: center; border-radius: 50%; background: var(--card-accent, var(--magenta)); color: white; box-shadow: 0 10px 26px color-mix(in srgb, var(--card-accent) 25%, transparent); }
.service-icon img { width: 38px; height: 38px; object-fit: contain; filter: brightness(0) invert(1); }
.service-card h3 { margin-bottom: 11px; }
.service-card p { max-width: 290px; margin-bottom: 19px; color: var(--muted); font-size: 14px; }
.service-card a { position: relative; z-index: 2; color: var(--card-text-accent, var(--dpb-magenta-text)); font-size: 13px; font-weight: 700; }
.service-card:nth-child(1), .service-card:nth-child(7) { --card-accent: var(--dpb-magenta) !important; --card-text-accent: var(--dpb-magenta-text); }
.service-card:nth-child(2) { --card-accent: var(--dpb-turquoise) !important; --card-text-accent: var(--dpb-turquoise-text); }
.service-card:nth-child(3) { --card-accent: var(--dpb-orange) !important; --card-text-accent: var(--dpb-orange-text); }
.service-card:nth-child(4) { --card-accent: var(--dpb-lime) !important; --card-text-accent: var(--dpb-lime-text); }
.service-card:nth-child(5) { --card-accent: var(--dpb-purple) !important; --card-text-accent: var(--dpb-purple); }
.service-card:nth-child(6) { --card-accent: var(--dpb-cyan) !important; --card-text-accent: var(--dpb-cyan-text); }

.corporate { padding: clamp(80px, 10vw, 135px) 0; overflow: hidden; color: white; background: var(--corporate); }
.corporate-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.corporate-art { position: relative; min-height: 470px; border-radius: 32px; background: linear-gradient(145deg, #f4f4f4, #ffffff); overflow: hidden; }
.corporate-art::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 28%, color-mix(in srgb, var(--dpb-turquoise) 28%, transparent), transparent 32%), radial-gradient(circle at 22% 75%, color-mix(in srgb, var(--dpb-magenta) 22%, transparent), transparent 29%), radial-gradient(circle at 72% 82%, color-mix(in srgb, var(--dpb-lime) 18%, transparent), transparent 24%); }
.corporate-orbit { position: absolute; border: 1px solid rgba(35,57,71,.23); border-radius: 50%; }
.orbit-one { width: 340px; height: 340px; top: -70px; right: -50px; }
.orbit-two { width: 280px; height: 280px; bottom: -40px; left: -80px; }
.corporate-card { position: absolute; top: 50%; left: 50%; width: min(330px, 72%); padding: 30px; color: var(--corporate); background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.84); border-radius: 18px; box-shadow: 0 28px 80px rgba(28,43,52,.2); backdrop-filter: blur(12px); transform: translate(-50%, -50%) rotate(-3deg); }
.corporate-card span { display: block; margin-bottom: 8px; color: var(--magenta); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.corporate-card strong { font: 700 clamp(1.5rem, 3vw, 2.4rem)/1.1 var(--font-primary); letter-spacing: -.04em; }
.mini-palette { display: flex; gap: 8px; margin-top: 30px; }
.mini-palette i { width: 32px; height: 32px; border-radius: 50%; background: var(--magenta); }
.mini-palette i:nth-child(2) { background: var(--turquoise); }.mini-palette i:nth-child(3) { background: var(--orange); }.mini-palette i:nth-child(4) { background: var(--lime); }
.corporate-copy p:not(.eyebrow) { max-width: 590px; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.eyebrow-light { color: #f3bdd5; }
.corporate-copy .eyebrow { color: #72ddd3; }
.final-cta .eyebrow { color: #f8d7e9; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 26px; margin: 30px 0 38px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; font-size: 14px; }
.check-list li::before { content: '•'; position: absolute; left: 0; color: var(--turquoise); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(60px, 9vw, 120px); }
.about-visual { position: relative; }
.about-team { display: block; width: 100%; height: auto; object-fit: contain; object-position: 50% 50%; filter: none; }
.experience-card { display: flex; align-items: center; gap: 12px; width: fit-content; margin: 20px auto 0; padding: 20px 24px; border-radius: 18px; background: var(--magenta); color: white; box-shadow: var(--shadow); }
.experience-card strong { font: 700 2.7rem/1 var(--font-primary); }
.experience-card span { font-size: 12px; line-height: 1.3; text-transform: uppercase; }
.about-copy .large-copy { color: var(--ink); font-size: clamp(1.15rem, 2vw, 1.45rem); }
.about-copy > p:not(.eyebrow):not(.large-copy) { color: var(--muted); }
.values { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.values span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 600; }

.process-section { background: var(--dpb-light-gray); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 25px 0 0; list-style: none; counter-reset: process; }
.process-grid::before { content: ''; position: absolute; top: 49px; right: 10%; left: 10%; height: 1px; background: #e3cfd4; }
.process-grid li { position: relative; padding: 0 24px; text-align: center; }
.process-grid li { --step-color: var(--magenta); }
.process-grid li:nth-child(2) { --step-color: var(--dpb-turquoise); }.process-grid li:nth-child(3) { --step-color: var(--dpb-orange); }.process-grid li:nth-child(4) { --step-color: var(--dpb-lime); }
.process-grid li > span { position: relative; z-index: 1; display: grid; width: 50px; height: 50px; margin: 0 auto 24px; place-items: center; border: 2px solid var(--step-color); border-radius: 50%; background: white; color: var(--step-color); font-weight: 700; box-shadow: 0 7px 20px color-mix(in srgb, var(--step-color) 12%, transparent); }
.process-grid h3 { margin-bottom: 12px; }
.process-grid p { color: var(--muted); font-size: 14px; }

.testimonials-carousel { min-width: 0; }
.testimonials-track { display: flex; gap: 18px; padding: 5px 2px 22px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; touch-action: pan-x pan-y; }
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; user-select: none; }
.testimonial-card { flex: 0 0 calc((100% - 36px) / 3); min-width: 0; display: flex; flex-direction: column; padding: 30px; border: 1px dashed #d8c7ce; border-radius: var(--radius); background: linear-gradient(145deg, white, #fffafd); scroll-snap-align: start; }
.testimonial-card .quote-mark { color: var(--magenta); font: 700 2.2rem/1 Georgia, serif; }
.testimonial-card blockquote { margin: 18px 0 20px; color: var(--muted); font-style: normal; font-weight: 400; line-height: 1.68; white-space: pre-line; }
.testimonial-read-more { align-self: flex-start; min-height: 42px; margin: -5px 0 17px; padding: 5px 0; border: 0; background: transparent; color: var(--magenta); font-weight: 700; cursor: pointer; }
.testimonial-read-more:hover { color: var(--magenta-dark); }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blush); }
.testimonial-card footer span { display: grid; font-size: 13px; }
.testimonial-card footer small { color: var(--muted); }
.testimonial-modal[hidden] { display: none; }
.testimonial-modal { position: fixed; z-index: 200; inset: 0; display: grid; padding: 20px; place-items: center; }
.testimonial-modal-backdrop { position: absolute; inset: 0; background: rgba(36, 36, 40, .58); backdrop-filter: blur(5px); }
.testimonial-modal-panel { position: relative; width: min(720px, 100%); max-height: calc(100dvh - 40px); padding: clamp(32px, 5vw, 52px); overflow-x: hidden; overflow-y: auto; border-radius: 28px; background: white; box-shadow: 0 28px 90px rgba(36, 24, 33, .25); outline: 0; }
.testimonial-modal-panel > .quote-mark { display: block; color: var(--magenta); font: 700 2.8rem/1 Georgia, serif; }
.testimonial-modal-panel blockquote { margin: 20px 0 30px; color: var(--muted); font-style: normal; font-weight: 400; line-height: 1.75; white-space: pre-line; }
.testimonial-modal-panel footer { display: flex; align-items: center; gap: 12px; }
.testimonial-modal-panel footer > span:last-child { display: grid; font-size: 14px; }
.testimonial-modal-panel footer small { color: var(--muted); }
.testimonial-modal-panel footer small:last-child:not([hidden]) { color: var(--magenta); letter-spacing: .08em; }
.testimonial-modal-close { position: absolute; top: 18px; right: 18px; display: grid; width: 42px; height: 42px; padding: 0 0 3px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.testimonial-modal-close:hover { border-color: var(--magenta); color: var(--magenta); }
.carousel-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 12px; }
.carousel-footer > p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.carousel-footer > p span:first-child { color: var(--magenta); }
.carousel-controls { display: flex; gap: 10px; }
.carousel-button { display: grid; width: 48px; height: 48px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.carousel-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.carousel-button:hover:not(:disabled) { border-color: var(--magenta); background: var(--magenta); color: white; transform: translateY(-2px); }
.carousel-button:disabled { opacity: .3; cursor: not-allowed; }

.contact-section { background: var(--dpb-light-gray); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 8vw, 100px); }
.contact-copy { position: sticky; top: 110px; align-self: start; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-points { display: grid; gap: 18px; margin-top: 35px; }
.contact-points > div { display: flex; gap: 13px; }
.contact-dot { width: 11px; height: 11px; flex: none; margin-top: 7px; border: 3px solid var(--magenta); border-radius: 50%; }
.contact-points > div:nth-child(2) .contact-dot { border-color: var(--turquoise); }
.contact-points p { display: grid; margin: 0; }
.contact-points small { color: var(--muted); }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 30px; padding-top: 25px; border-top: 1px solid var(--line); }
.contact-detail { display: grid; min-width: 0; gap: 2px; padding: 8px 0; color: var(--ink); }
.contact-detail span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail strong { overflow-wrap: anywhere; font-size: 13px; }
.contact-detail:hover strong { color: var(--magenta); }
.contact-form { padding: clamp(25px, 4vw, 48px); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 19px; font-size: 12px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #d9cfd2; border-radius: 0; outline: none; background: transparent; color: var(--ink); font-weight: 400; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { min-height: 46px; }
.contact-form textarea { padding: 12px 0; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--magenta); box-shadow: 0 1px var(--magenta); }
.contact-form .button { margin-top: 8px; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--magenta); font-size: 13px; font-weight: 600; }

.final-cta { position: relative; padding: clamp(70px, 9vw, 110px) 0; overflow: hidden; color: white; background: var(--magenta); }
.final-cta::before, .final-cta::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
.final-cta::before { width: 170px; height: 170px; top: -95px; right: 10%; border: 24px solid var(--turquoise); opacity: .72; }
.final-cta::after { width: 90px; height: 90px; right: 2%; bottom: -45px; background: var(--lime); opacity: .8; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { margin-bottom: 15px; font-size: clamp(2.1rem, 4vw, 4rem); }
.final-cta h2 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -.025em; }
.final-cta p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.78); }

.site-footer { padding: 70px 0 25px; background: #211c22; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 55px; padding-bottom: 55px; }
.brand-footer { margin-bottom: 20px; color: white; }
.brand-logo-footer { width: 190px; height: 112px; object-fit: contain; object-position: left center; }
.footer-grid > div:first-child p { max-width: 320px; font-size: 14px; }
.footer-grid nav, .footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: 13px; }
.footer-grid strong { margin-bottom: 8px; color: white; font-size: 13px; }
.footer-link { padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.footer-grid a:hover, .footer-link:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { opacity: .55; }
.whatsapp-float { position: fixed; z-index: 80; right: 26px; bottom: 26px; display: grid; width: 54px; height: 54px; padding: 0; place-items: center; border: 2px solid rgba(255,255,255,.96); border-radius: 50%; background: #25d366; color: white; box-shadow: 0 12px 28px rgba(18,96,51,.22), 0 3px 9px rgba(18,74,43,.12); cursor: pointer; transition: transform .22s ease, background .22s ease, box-shadow .22s ease; }
.whatsapp-float:hover { background: #20c75e; box-shadow: 0 15px 32px rgba(18,96,51,.28), 0 4px 10px rgba(18,74,43,.14); transform: translateY(-3px); }
.whatsapp-float:active { transform: translateY(-1px) scale(.97); }
.whatsapp-float svg { display: block; width: 27px; height: 27px; fill: currentColor; transform: translateY(-.5px); }
.whatsapp-tooltip { position: absolute; right: calc(100% + 11px); padding: 7px 10px; border-radius: 8px; background: var(--ink); color: white; font-size: 11px; font-weight: 700; white-space: nowrap; opacity: 0; pointer-events: none; transform: translateX(5px); transition: opacity .18s ease, transform .18s ease; }
.whatsapp-float:hover .whatsapp-tooltip, .whatsapp-float:focus-visible .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
.dino-mascot { position: fixed; z-index: 70; left: 24px; bottom: 30px; width: 88px; height: 88px; pointer-events: none; transform-origin: 48% 88%; animation: dino-float 4.2s ease-in-out infinite, dino-wave 16s ease-in-out infinite; }
.dino-mascot img { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(35,57,71,.18)); }
@keyframes dino-float { 0%, 100% { translate: 0 0; scale: 1; } 50% { translate: 0 -4px; scale: 1.012; } }
@keyframes dino-wave { 0%, 72%, 100% { rotate: 0deg; } 76% { rotate: -5deg; } 79% { rotate: 5deg; } 82% { rotate: -3deg; } 85% { rotate: 0deg; } }
.toast { position: fixed; z-index: 200; right: 20px; bottom: 94px; max-width: min(370px, calc(100% - 40px)); padding: 13px 18px; border-radius: 12px; background: var(--ink); color: white; font-size: 13px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease; }
.toast.visible { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 3px solid #ffc1dd; outline-offset: 4px; }

@media (max-width: 1099px) {
  :root { --header-height: 74px; }
  .site-header.menu-active { height: var(--header-height); background: var(--paper); box-shadow: none; backdrop-filter: none; }
  .nav-wrap > .brand { position: relative; z-index: 3; }
  .nav-toggle { display: block; position: relative; z-index: 3; border-radius: 50%; transition: background .2s ease; }
  .nav-toggle:hover { background: var(--dpb-light-gray); }
  .main-nav { position: fixed; z-index: 1; inset: 0; width: 100vw; height: 100vh; height: 100dvh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: clamp(8px, 1.5vh, 16px); padding: calc(var(--header-height) + 38px) max(30px, calc((100vw - 820px) / 2)) max(30px, env(safe-area-inset-bottom)); overflow-y: auto; background: var(--paper); color: var(--ink); visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .23s ease-out, transform .23s ease-out, visibility 0s linear .23s; }
  .main-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav.open { pointer-events: auto; transition-delay: 0s; }
  .main-nav > a:not(.button) { padding: 3px 0; font: 600 clamp(1.625rem, 3.2vw, 2.125rem)/1.25 var(--font-primary); }
  .main-nav > a:not(.button)::after { bottom: 1px; }
  .main-nav .nav-cta { min-width: min(320px, 100%); margin-top: clamp(18px, 4vh, 38px); align-self: flex-start; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding-top: calc(var(--header-height) + 64px); padding-bottom: 70px; }
  .hero-copy { max-width: 720px; }
  .hero h1 { max-width: 700px; font-size: clamp(3.5rem, 8.5vw, 5.6rem); }
  .hero-lead { max-width: 650px; }
  .hero-gallery { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); max-width: 760px; margin: 0 auto; }
  .hero-photo-main { grid-column: 1; }
  .hero-photo-secondary { grid-column: 2; }
  .hero-photo-secondary:nth-child(2) { grid-row: 1; }
  .hero-photo-secondary:nth-child(3) { grid-row: 2; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 280px 280px; }
  .portfolio-card:first-child { grid-column: 1 / 3; grid-row: auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .corporate-grid, .about-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .corporate-art { min-height: 410px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 38px 0; }
  .process-grid::before { display: none; }
  .testimonial-card { flex-basis: calc((100% - 18px) / 2); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; max-width: 720px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 720px) {
  :root { --container: min(1180px, calc(100% - 32px)); }
  .section { padding: 76px 0; }
  .site-header { height: 68px; }
  .site-header.scrolled, .site-header.menu-active { height: 64px; }
  .brand-logo-full { display: none; }
  .brand-logo-isotype { display: block; width: 46px; height: 46px; }
  .site-header.menu-active .brand-logo-full { display: block; width: 124px; height: 58px; }
  .site-header.menu-active .brand-logo-isotype { display: none; }
  .brand-footer .brand-logo-full, .brand-logo-footer { display: block; width: 180px; height: 108px; }
  .hero-inner { gap: 38px; padding-top: 112px; padding-bottom: 58px; }
  .hero h1 { max-width: 100%; font-size: clamp(2.55rem, 11vw, 4.2rem); overflow-wrap: anywhere; }
  .hero-lead { font-size: 1rem; }
  .hero .button-row .button { width: 100%; }
  .hero-copy::before { display: none; }
  .hero-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
  .hero-photo { border-width: 4px; border-radius: 20px; }
  .hero-photo-main { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 4 / 5; }
  .hero-photo-secondary { grid-column: auto; grid-row: 2 !important; aspect-ratio: 3 / 4; }
  .hero-gallery::before { left: -10px; bottom: 22%; width: 30px; height: 30px; border-width: 6px; }
  .hero::before { top: 9%; right: 6%; width: 10px; height: 10px; }
  .hero::after { right: 5%; bottom: 4%; width: 42px; height: 5px; }
  .section-heading { display: block; margin-bottom: 38px; }
  .section-heading > p { margin-top: 16px; }
  .portfolio-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 380px); }
  .portfolio-card:first-child { grid-column: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 235px; }
  .corporate-grid, .about-grid { grid-template-columns: 1fr; }
  .corporate-art { min-height: 340px; order: 2; }
  .corporate-copy { order: 1; }
  .check-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 8px; }
  .process-grid li { display: grid; grid-template-columns: 54px 1fr; column-gap: 18px; padding: 16px 0; text-align: left; }
  .process-grid li > span { grid-row: 1 / 3; margin: 0; }
  .process-grid h3 { margin: 4px 0 7px; }
  .testimonial-card { flex-basis: min(88%, 340px); }
  .testimonial-card { padding: 26px; }
  .testimonial-modal { padding: 16px; }
  .testimonial-modal-panel { max-height: calc(100dvh - 32px); padding: 42px 26px 30px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form .button { width: 100%; }
  .final-cta-inner { display: block; }
  .final-cta .button-row { margin-top: 30px; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .footer-grid > div:first-child { grid-column: 1 / 3; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom a { display: inline-block; margin-top: 8px; }
  .whatsapp-float { right: 18px; bottom: 18px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 25px; height: 25px; }
  .whatsapp-tooltip { display: none; }
  .dino-mascot { left: 16px; bottom: 20px; width: 58px; height: 58px; }
}

@media (max-width: 430px) {
  .portfolio-grid { grid-template-rows: repeat(5, 330px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
  .contact-details { grid-template-columns: 1fr; gap: 5px; }
  .dino-mascot { left: 10px; bottom: 16px; width: 48px; height: 48px; opacity: .94; }
}

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

@media (hover: hover) and (pointer: fine) {
  .dino-mascot { pointer-events: auto; cursor: pointer; }
  .dino-mascot:hover { animation: dino-hover-wave .7s ease-in-out both; }
  @keyframes dino-hover-wave { 0%, 100% { transform: translateY(0) rotate(0); } 35% { transform: translateY(-5px) rotate(-5deg); } 68% { transform: translateY(-3px) rotate(5deg); } }
}

@media (hover: hover) and (pointer: fine) {
  .service-card { isolation: isolate; }
  .service-preview { position: absolute; z-index: 3; top: 19px; right: 19px; display: block; width: 145px; height: 108px; margin: 0; overflow: hidden; border: 4px solid white; border-radius: 42% 58% 48% 52% / 52% 43% 57% 48%; background: #f4f4f4; box-shadow: 0 16px 32px rgba(41,39,43,.2); opacity: 0; pointer-events: none; transform: translate(10px, 8px) scale(.92) rotate(2deg); transform-origin: right top; transition: opacity .3s ease, transform .4s cubic-bezier(.2,.75,.25,1); }
  .service-preview img { width: 100%; height: 100%; object-fit: cover; }
  .service-preview figcaption { position: absolute; right: 7px; bottom: 6px; padding: 3px 6px; border-radius: 999px; background: rgba(26,24,27,.58); color: white; font-size: 7px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(5px); }
  .service-card:hover .service-preview, .service-card:focus-within .service-preview { opacity: 1; transform: translate(0, 0) scale(1) rotate(-1deg); }
}

/* En touch, la fotografía encabeza la tarjeta sin depender de hover. */
@media (hover: none), (pointer: coarse) {
  .service-preview { display: block; width: calc(100% + 60px); height: 180px; margin: -30px -30px 30px; overflow: hidden; }
  .service-preview img { display: block; width: 100%; height: 100%; object-fit: cover; }
}

/* Fotografía corporativa definitiva; conserva el contenedor y sus medidas responsive. */
.corporate-photo::before { content: none; }
.corporate-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 65% 50%; }

/* Public contact: retain existing form layout and feedback palette. */
.contact-form .contact-honeypot { display: none; }
.contact-privacy { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.contact-form .button:disabled { cursor: wait; opacity: .7; }
.contact-form input, .contact-form select, .contact-form textarea { min-width: 0; }
.form-status { overflow-wrap: anywhere; }
