:root {
  --pink: #f34eaa;
  --pink-dark: #d92e8e;
  --pink-soft: #ffe5f2;
  --pink-pale: #fff3f8;
  --ivory: #fffafc;
  --cream: #fff5f7;
  --ink: #171217;
  --muted: #6f626a;
  --line: #efd8e4;
  --white: #ffffff;
  --green: #1faf61;
  --shadow: 0 24px 70px rgba(77, 27, 53, .13);
  --shadow-soft: 0 14px 42px rgba(77, 27, 53, .09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link { position: fixed; z-index: 9999; top: -100px; left: 16px; padding: 10px 16px; color: var(--white); background: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 252, .84);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { border-color: rgba(239, 216, 228, .8); box-shadow: 0 8px 30px rgba(56, 18, 37, .07); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 16px rgba(243, 78, 170, .24); }
.brand strong, .brand small { display: block; line-height: 1.18; }
.brand strong { font-family: "Playfair Display", serif; font-size: 1.08rem; font-weight: 600; }
.brand small { margin-top: 4px; color: var(--pink-dark); font-size: .71rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.nav-cta) { position: relative; font-size: .92rem; font-weight: 600; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:not(.nav-cta):hover::after, .main-nav > a:not(.nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 18px; color: var(--white); background: var(--ink); border-radius: 999px; font-size: .9rem; font-weight: 700; transition: transform .25s ease, background .25s ease; }
.nav-cta:hover { background: var(--pink-dark); transform: translateY(-2px); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }

.hero { position: relative; min-height: 760px; padding: calc(var(--header-height) + 62px) 0 70px; background: linear-gradient(135deg, #fffafd 0%, #fff0f7 48%, #ffe2f0 100%); overflow: hidden; }
.hero::before { content: "STUDIO"; position: absolute; right: -1vw; bottom: -6vw; color: rgba(255, 255, 255, .5); font-family: "Playfair Display", serif; font-size: clamp(9rem, 23vw, 24rem); font-weight: 600; line-height: .8; letter-spacing: -.07em; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { top: 10%; right: 8%; width: 190px; height: 190px; border: 1px solid rgba(243, 78, 170, .25); }
.hero-glow-two { left: -90px; bottom: 40px; width: 260px; height: 260px; background: rgba(255, 255, 255, .55); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(44px, 7vw, 90px); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--pink-dark); font-size: .79rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .hours h2, .contact h2, .dialog-heading h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-weight: 500; line-height: 1.04; letter-spacing: -.035em; }
.hero h1 { max-width: 700px; font-size: clamp(3.15rem, 6vw, 5.55rem); }
.hero h1 em { color: var(--pink-dark); font-weight: 500; }
.hero-text { max-width: 570px; margin: 30px 0 0; color: #584b52; font-size: clamp(1.05rem, 1.55vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease, border-color .25s ease; }
.btn svg { width: 21px; height: 21px; fill: currentColor; }
.btn-primary { color: var(--white); background: var(--pink-dark); box-shadow: 0 12px 26px rgba(217, 46, 142, .23); }
.btn-primary:hover { background: var(--ink); box-shadow: 0 16px 32px rgba(23, 18, 23, .18); transform: translateY(-3px); }
.btn-ghost { color: var(--ink); background: rgba(255, 255, 255, .55); border-color: rgba(23, 18, 23, .18); }
.btn-ghost:hover { background: var(--white); border-color: var(--pink); transform: translateY(-3px); }
.play-icon { display: grid; width: 29px; height: 29px; place-items: center; color: var(--white); background: var(--pink); border-radius: 50%; }
.play-icon svg { width: 17px; height: 17px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 32px; color: var(--muted); font-size: .86rem; font-weight: 600; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 7px; height: 7px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 0 5px rgba(243, 78, 170, .11); }
.hero-visual { position: relative; width: min(100%, 590px); justify-self: end; padding: 0 28px 28px 0; }
.hero-image-frame { position: relative; aspect-ratio: .84; padding: 11px; background: rgba(255, 255, 255, .72); border: 1px solid rgba(255, 255, 255, .9); border-radius: 48% 48% 26px 26px / 32% 32% 26px 26px; box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.hero-image-frame > img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; border-radius: inherit; }
.hero-image-frame::before { content: ""; position: absolute; z-index: -1; inset: 27px -23px -23px 34px; border: 1px solid rgba(217, 46, 142, .36); border-radius: inherit; }
.video-badge { position: absolute; right: -32px; bottom: 36px; display: flex; align-items: center; gap: 12px; min-width: 205px; padding: 12px 16px 12px 12px; color: var(--ink); background: rgba(255, 255, 255, .94); border: 1px solid rgba(255, 255, 255, .9); border-radius: 18px; box-shadow: 0 16px 42px rgba(52, 20, 37, .22); cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.video-badge:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(52, 20, 37, .28); }
.video-badge > span:first-child { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; color: var(--white); background: var(--pink); border-radius: 50%; }
.video-badge svg { width: 22px; height: 22px; fill: currentColor; }
.video-badge small, .video-badge strong { display: block; text-align: left; line-height: 1.2; }
.video-badge small { margin-bottom: 4px; color: var(--pink-dark); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.video-badge strong { font-size: .9rem; }
.hero-stamp { position: absolute; top: 20px; left: -52px; width: 124px; height: 124px; padding: 6px; background: var(--white); border-radius: 50%; box-shadow: var(--shadow-soft); }
.hero-stamp img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.story { background: var(--ivory); }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(52px, 9vw, 130px); }
.section-heading h2, .hours h2, .contact h2 { font-size: clamp(2.55rem, 4.8vw, 4.3rem); }
.section-heading > p:last-child { max-width: 650px; margin: 22px auto 0; color: var(--muted); font-size: 1.05rem; }
.story-copy { padding-top: 8px; }
.story-copy p { margin: 0 0 20px; color: var(--muted); font-size: 1.04rem; }
.story-copy .story-lead { color: var(--ink); font-family: "Playfair Display", serif; font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.45; }
.story-copy .story-lead strong { color: var(--pink-dark); font-weight: 600; }
.signature { margin-top: 34px; color: var(--pink-dark); font-family: "Playfair Display", serif; font-size: 2.2rem; font-style: italic; }

.services { background: var(--pink-pale); }
.section-heading.centered { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 355px; padding: 30px; background: rgba(255, 255, 255, .78); border: 1px solid rgba(239, 216, 228, .9); border-radius: var(--radius-md); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.service-card::after { content: ""; position: absolute; right: -50px; bottom: -60px; width: 150px; height: 150px; background: var(--pink-soft); border-radius: 50%; transition: transform .35s ease; }
.service-card:hover { background: var(--white); box-shadow: var(--shadow-soft); transform: translateY(-8px); }
.service-card:hover::after { transform: scale(1.35); }
.service-number { position: absolute; top: 22px; right: 24px; color: #caaab9; font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.service-icon { display: grid; width: 54px; height: 54px; margin-bottom: 58px; place-items: center; color: var(--pink-dark); background: var(--pink-soft); border-radius: 17px; }
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 12px; font-family: "Playfair Display", serif; font-size: 1.75rem; font-weight: 600; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: .94rem; }
.service-card a { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; color: var(--pink-dark); font-size: .87rem; font-weight: 700; }
.service-card a span { transition: transform .25s ease; }
.service-card a:hover span { transform: translateX(4px); }

.portfolio { background: var(--ivory); }
.portfolio-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 60px; margin-bottom: 64px; }
.portfolio-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 1rem; }
.gallery-block { margin-top: 68px; }
.gallery-block + .gallery-block { padding-top: 54px; border-top: 1px solid var(--line); }
.gallery-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.gallery-title-row > div:first-child { display: flex; align-items: center; gap: 14px; }
.gallery-title-row > div:first-child > span { display: grid; width: 38px; height: 38px; place-items: center; color: var(--pink-dark); background: var(--pink-soft); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.gallery-title-row h3 { margin: 0; font-family: "Playfair Display", serif; font-size: clamp(1.75rem, 3vw, 2.45rem); font-weight: 600; }
.gallery-controls { display: flex; gap: 9px; }
.gallery-controls button { display: grid; width: 46px; height: 46px; place-items: center; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 50%; font-size: 1.25rem; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.gallery-controls button:hover { color: var(--white); background: var(--pink-dark); border-color: var(--pink-dark); transform: translateY(-2px); }
.gallery-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 31.5%); gap: 18px; padding: 4px 2px 16px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-card { position: relative; aspect-ratio: .76; padding: 0; background: var(--pink-soft); border: 0; border-radius: 22px; box-shadow: 0 8px 24px rgba(69, 28, 49, .08); overflow: hidden; scroll-snap-align: start; cursor: zoom-in; }
.gallery-card::after { content: "Ver foto"; position: absolute; right: 14px; bottom: 14px; padding: 8px 12px; color: var(--white); background: rgba(23, 18, 23, .72); border-radius: 999px; font-size: .72rem; font-weight: 700; opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; backdrop-filter: blur(8px); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-card:hover::after, .gallery-card:focus-visible::after { opacity: 1; transform: translateY(0); }

.hours { padding-top: 40px; background: var(--ivory); }
.hours-card { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 65px; padding: clamp(38px, 6vw, 74px); color: var(--white); background: linear-gradient(135deg, #1f1720 0%, #3b1e31 100%); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.hours-card::before { content: ""; position: absolute; top: -220px; right: -180px; width: 480px; height: 480px; border: 1px solid rgba(243, 78, 170, .28); border-radius: 50%; box-shadow: 0 0 0 52px rgba(243, 78, 170, .05), 0 0 0 104px rgba(243, 78, 170, .035); }
.hours-intro, .hours-list { position: relative; z-index: 1; }
.eyebrow.light { color: #ff9bce; }
.hours-intro > p:not(.eyebrow) { max-width: 480px; margin: 24px 0 30px; color: #d9cad2; }
.btn-light { color: var(--ink); background: var(--white); }
.btn-light:hover { color: var(--white); background: var(--pink-dark); transform: translateY(-3px); }
.hours-list { align-self: center; padding: 8px 0; }
.hours-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; align-items: center; padding: 23px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.hours-row span { color: #ff9bce; font-family: "Playfair Display", serif; font-size: 1.28rem; }
.hours-row strong { font-size: 1.02rem; font-weight: 600; text-align: right; }
.hours-row i { margin: 0 9px; color: var(--pink); font-style: normal; }
.hours-note { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 22px; color: #d9cad2; font-size: .84rem; }
.hours-note span { width: 8px; height: 8px; background: #5bd487; border-radius: 50%; box-shadow: 0 0 0 5px rgba(91, 212, 135, .12); }

.contact { background: var(--pink-pale); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin: 25px 0 32px; color: var(--muted); font-size: 1.05rem; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; min-height: 94px; padding: 18px 20px; background: rgba(255, 255, 255, .82); border: 1px solid var(--line); border-radius: 19px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
a.contact-card:hover { border-color: rgba(243, 78, 170, .48); box-shadow: var(--shadow-soft); transform: translateX(-5px); }
.contact-icon { display: grid; width: 52px; height: 52px; place-items: center; color: var(--pink-dark); background: var(--pink-soft); border-radius: 16px; }
.contact-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-card small, .contact-card strong { display: block; }
.contact-card small { margin-bottom: 4px; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-card strong { font-size: 1rem; line-height: 1.35; }
.contact-card b { color: var(--pink-dark); font-size: 1.15rem; }

.site-footer { padding: 42px 0; color: #cdbec6; background: #171217; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.footer-brand img { width: 74px; height: 74px; border-radius: 50%; }
.footer-grid p { margin: 0; font-size: .9rem; }
.copyright { text-align: right; }
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); background: var(--green); border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 12px 30px rgba(22, 129, 72, .3); transition: transform .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }

dialog { padding: 0; border: 0; }
dialog::backdrop { background: rgba(14, 9, 12, .78); backdrop-filter: blur(7px); }
.video-dialog { width: min(92vw, 520px); max-height: 92vh; color: var(--ink); background: transparent; overflow: visible; }
.dialog-shell { position: relative; padding: 20px; background: var(--ivory); border-radius: 24px; box-shadow: 0 26px 90px rgba(0, 0, 0, .38); }
.dialog-close { position: absolute; z-index: 3; top: 12px; right: 12px; display: grid; width: 40px; height: 40px; place-items: center; color: var(--white); background: rgba(23, 18, 23, .82); border: 0; border-radius: 50%; font-size: 1.65rem; line-height: 1; cursor: pointer; }
.dialog-heading { padding: 6px 50px 18px 4px; }
.dialog-heading p { margin: 0 0 3px; color: var(--pink-dark); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.dialog-heading h2 { font-size: 1.8rem; }
.video-dialog video { display: block; width: 100%; max-height: 67vh; background: #000; border-radius: 16px; }
.lightbox { width: min(92vw, 720px); max-height: 92vh; color: var(--white); background: transparent; overflow: visible; }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; background: #160f13; border-radius: 18px; box-shadow: 0 25px 80px rgba(0, 0, 0, .45); }
.lightbox p { margin: 12px 0 0; text-align: center; }
.lightbox .dialog-close { top: -15px; right: -15px; border: 2px solid rgba(255,255,255,.6); }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  :root { --header-height: 74px; }
  .main-nav { gap: 18px; }
  .main-nav > a:not(.nav-cta) { font-size: .84rem; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 46px; }
  .hero-stamp { left: -28px; width: 98px; height: 98px; }
  .video-badge { right: -12px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 300px; }
  .service-icon { margin-bottom: 38px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 84px 0; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; gap: 0; padding: 24px 28px 30px; background: rgba(255, 250, 252, .98); border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(62, 22, 43, .12); opacity: 0; transform: translateY(-16px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav > a:not(.nav-cta) { padding: 13px 4px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 18px; text-align: center; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 46px); }
  .hero-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-visual { width: min(86%, 560px); justify-self: center; margin-top: 8px; }
  .hero-image-frame { aspect-ratio: .88; }
  .hero-stamp { left: -40px; }
  .story-grid { gap: 36px; }
  .portfolio-heading { grid-template-columns: 1fr; gap: 22px; }
  .gallery-track { grid-auto-columns: minmax(250px, 45%); }
  .hours { padding-top: 20px; }
  .hours-card { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: auto 1fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 560px) {
  :root { --radius-lg: 24px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 70px 0; }
  .brand strong { font-size: .98rem; }
  .brand small { font-size: .65rem; }
  .brand img { width: 48px; height: 48px; }
  .hero { padding-bottom: 58px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 3.6rem); }
  .hero-text { margin-top: 22px; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 28px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .hero-visual { width: calc(100% - 22px); margin-top: 22px; padding: 0 10px 18px 0; }
  .hero-image-frame { aspect-ratio: .78; border-radius: 42% 42% 22px 22px / 22% 22% 22px 22px; }
  .hero-stamp { top: -20px; left: -18px; width: 82px; height: 82px; }
  .video-badge { right: -6px; bottom: 22px; min-width: 188px; padding: 10px; }
  .section-heading h2, .hours h2, .contact h2 { font-size: clamp(2.25rem, 11vw, 3.1rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .gallery-block { margin-top: 52px; }
  .gallery-block + .gallery-block { padding-top: 42px; }
  .gallery-track { grid-auto-columns: 84%; gap: 13px; }
  .gallery-controls button { width: 42px; height: 42px; }
  .gallery-card { border-radius: 18px; }
  .hours-card { width: calc(100% - 24px); padding: 32px 24px; border-radius: 24px; }
  .hours-row { grid-template-columns: 1fr; gap: 5px; padding: 18px 0; }
  .hours-row strong { text-align: left; }
  .hours-note { justify-content: flex-start; }
  .contact-card { grid-template-columns: auto 1fr auto; padding: 15px; }
  .contact-icon { width: 46px; height: 46px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
  .copyright { text-align: center; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 55px; height: 55px; }
  .dialog-shell { padding: 15px; }
  .dialog-heading h2 { font-size: 1.45rem; }
  .lightbox .dialog-close { top: -12px; right: -5px; }
}

@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; }
  .js .reveal { opacity: 1; transform: none; }
}
