/* Auréa — design tokens are overwritten from data/site-data.js at runtime. */
@font-face {
  font-family: "Bodoni Moda Local";
  src: url("../fonts/bodoni-moda-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda Local";
  src: url("../fonts/bodoni-moda-variable-italic.woff2") format("woff2-variations");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Manrope Local";
  src: url("../fonts/manrope-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --primary: #272220;
  --secondary: #d8c8b9;
  --accent: #985845;
  --background: #f3eee7;
  --surface: #fcfaf7;
  --text: #272220;
  --muted: #6b625d;
  --white: #fffdf9;
  --line: color-mix(in srgb, var(--text) 18%, transparent);
  --display: "Bodoni Moda Local", Georgia, serif;
  --sans: "Manrope Local", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
  --header-height: 82px;
  --section-pad: clamp(6rem, 10vw, 10rem);
  --gutter: clamp(1.25rem, 4vw, 5rem);
  --max-width: 1440px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; scrollbar-color: var(--accent) var(--surface); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3, figure { margin: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; }
::selection { background: var(--accent); color: var(--white); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { border: 3px solid var(--surface); border-radius: 10px; background: var(--accent); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 9999; transform: translateY(-180%);
  background: var(--surface); color: var(--text); padding: .7rem 1rem; transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.section { max-width: var(--max-width); margin: 0 auto; padding: var(--section-pad) var(--gutter); }
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .86rem 1.45rem;
  border: 1px solid transparent; border-radius: var(--radius); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; line-height: 1; text-transform: uppercase; white-space: nowrap;
  transition: color 200ms ease, background-color 200ms ease, transform 140ms var(--ease-out), border-color 200ms ease;
}
.button:active { transform: scale(.97); }
.button--light { background: var(--white); color: var(--primary); }
.button--dark { background: var(--primary); color: var(--white); }
.button--large { min-height: 60px; padding-inline: 2.2rem; }
.text-link {
  display: inline-flex; min-height: 44px; align-items: center; gap: .85rem; padding: .45rem 0; border-bottom: 1px solid currentColor;
  font-size: .73rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
}
.text-link--light { color: var(--white); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; display: grid; grid-template-columns: 1fr auto 1fr;
  height: var(--header-height); align-items: center; gap: 2rem; padding: 0 var(--gutter); color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2); transition: color 200ms ease, background-color 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled { background: color-mix(in srgb, var(--surface) 96%, transparent); color: var(--text); box-shadow: 0 10px 34px rgba(46,34,29,.06); backdrop-filter: blur(16px); }
.brand { display: inline-flex; width: fit-content; align-items: center; gap: .85rem; line-height: 1; }
.brand__mark {
  display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid currentColor;
  border-radius: 50% 50% 44% 44%; font-family: var(--display); font-size: 1.4rem;
}
.brand__mark img { width: 70%; height: 70%; object-fit: contain; }
.brand__words { display: grid; gap: .3rem; }
.brand__words strong { font-family: var(--display); font-size: 1.5rem; font-weight: 400; letter-spacing: .03em; }
.brand__words small { font-size: .52rem; letter-spacing: .25em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.4rem); }
.desktop-nav a { position: relative; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -.55rem; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease-out); }
.desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.button--header { justify-self: end; border-color: rgba(255,255,255,.6); color: var(--white); }
.site-header.is-scrolled .button--header { border-color: var(--text); color: var(--text); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px 9px; border: 0; background: transparent; color: currentColor; }
.menu-toggle span { display: block; width: 26px; height: 1px; background: currentColor; transition: transform 220ms var(--ease-out); }
.menu-toggle span + span { margin-top: 8px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.mobile-menu { display: none; }

/* Hero */
.hero { position: relative; min-height: max(720px, 100svh); overflow: hidden; background: var(--primary); color: var(--white); }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 54% center; animation: hero-arrive 900ms var(--ease-out) both; }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,17,16,.9) 0%, rgba(19,17,16,.57) 40%, rgba(19,17,16,.08) 76%), linear-gradient(0deg, rgba(19,17,16,.36), transparent 45%); }
.hero::after { position: absolute; top: var(--header-height); bottom: 0; left: 39%; width: 1px; background: rgba(255,255,255,.2); content: ""; }
.hero__content { position: relative; z-index: 2; display: flex; min-height: max(720px, 100svh); width: min(760px, 62vw); flex-direction: column; justify-content: center; padding: calc(var(--header-height) + 5rem) var(--gutter) 7rem; }
.hero h1 { max-width: 780px; font-size: clamp(4.2rem, 6.7vw, 6rem); letter-spacing: -.04em; line-height: .92; text-wrap: balance; opacity: 0; clip-path: inset(0 0 100% 0); animation: headline-arrive 760ms 120ms var(--ease-out) forwards; }
.hero__copy { max-width: 560px; margin-top: 2.2rem; color: rgba(255,255,255,.76); font-size: clamp(.98rem, 1.2vw, 1.12rem); line-height: 1.75; opacity: 0; animation: content-arrive 620ms 220ms var(--ease-out) forwards; }
.hero__actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.8rem; opacity: 0; animation: content-arrive 520ms 320ms var(--ease-out) forwards; }
.hero__note { position: absolute; z-index: 2; right: var(--gutter); bottom: 4.5rem; display: grid; gap: .2rem; text-align: right; }
.hero__note span { color: rgba(255,255,255,.75); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }
.hero__note strong { font-family: var(--display); font-size: 1.2rem; font-weight: 400; }
.hero__scroll { position: absolute; z-index: 2; bottom: 3.3rem; left: 39%; display: flex; align-items: center; gap: .8rem; color: rgba(255,255,255,.72); font-size: .59rem; letter-spacing: .18em; text-transform: uppercase; transform: rotate(-90deg) translateX(-100%); transform-origin: left bottom; }
.hero__scroll span { width: 42px; height: 1px; overflow: hidden; background: rgba(255,255,255,.3); }
@keyframes hero-arrive { from { opacity: .45; clip-path: inset(0 0 12% 0); transform: scale(1.035); } to { opacity: 1; clip-path: inset(0); transform: scale(1); } }
@keyframes headline-arrive { from { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(18px); } to { opacity: 1; clip-path: inset(0); transform: none; } }
@keyframes content-arrive { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Trust */
.trust-strip { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-strip__track { display: grid; max-width: var(--max-width); min-height: 112px; margin: 0 auto; grid-template-columns: repeat(4, 1fr); padding: 0 var(--gutter); }
.trust-item { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; border-left: 1px solid var(--line); }
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-item__label { font-size: .69rem; font-weight: 700; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }

/* About */
.about { display: grid; grid-template-columns: minmax(320px, .88fr) minmax(420px, 1fr); align-items: center; gap: clamp(4rem, 9vw, 9rem); }
.about__visual { position: relative; }
.mirror-frame { position: relative; overflow: hidden; aspect-ratio: 2 / 2.75; border-radius: 50% 50% 4px 4px; }
.mirror-frame::after { position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.5); border-radius: inherit; content: ""; }
.mirror-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 650ms var(--ease-out); }
.about__caption { display: flex; justify-content: space-between; padding-top: 1rem; color: var(--muted); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.about__content { padding-right: clamp(0rem, 5vw, 5rem); }
.about h2, .section-heading h2, .experience h2, .testimonials h2, .location h2 { font-size: clamp(3rem, 5vw, 5.6rem); letter-spacing: -.035em; line-height: .98; text-wrap: balance; }
.about__text { display: grid; max-width: 610px; gap: 1rem; margin: 2.3rem 0 2.5rem; color: var(--muted); font-size: 1.02rem; }
.stats { display: flex; gap: clamp(2.5rem, 6vw, 6rem); margin-bottom: 2.7rem; padding: 1.8rem 0; border-block: 1px solid var(--line); }
.stat { display: grid; gap: .2rem; }
.stat strong { font-family: var(--display); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.stat span { color: var(--muted); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }

/* Services */
.services { max-width: none; padding-inline: 0; background: var(--primary); color: var(--white); }
.section-heading { display: grid; max-width: var(--max-width); margin: 0 auto; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 5rem; padding: 0 var(--gutter) clamp(4rem, 7vw, 6.5rem); }
.section-heading > p { max-width: 440px; padding-bottom: .5rem; color: rgba(255,255,255,.6); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255,255,255,.18); }
.service-card { position: relative; min-width: 0; overflow: hidden; border-right: 1px solid rgba(255,255,255,.18); }
.service-card:nth-child(3n) { border-right: 0; }
.service-card:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.18); }
.service-card__image { position: relative; overflow: hidden; aspect-ratio: 1 / 1.18; background: #181513; }
.service-card__image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(21,18,17,.35), transparent 45%); content: ""; transition: opacity .5s; }
.service-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform 650ms var(--ease-out), filter 240ms ease; }
.service-card__body { min-height: 160px; padding: 1.8rem clamp(1.25rem, 2.5vw, 2.6rem); }
.service-card h3 { margin-bottom: .65rem; font-size: clamp(1.55rem, 2.1vw, 2.1rem); line-height: 1.05; }
.service-card p { max-width: 350px; color: rgba(255,255,255,.58); font-size: .86rem; line-height: 1.55; }

/* Image CTA */
.care-cta { position: relative; min-height: min(74vw, 760px); overflow: hidden; color: var(--white); }
.care-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.care-cta__veil { position: absolute; inset: 0; background: rgba(25,21,20,.48); }
.care-cta__content { position: relative; z-index: 1; display: flex; min-height: inherit; align-items: center; flex-direction: column; justify-content: center; padding: 5rem var(--gutter); text-align: center; }
.care-cta h2 { margin-bottom: 2.5rem; font-size: clamp(3.6rem, 6.8vw, 6rem); letter-spacing: -.04em; line-height: .92; text-shadow: 0 8px 45px rgba(0,0,0,.18); }

/* Gallery */
.gallery { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(3rem, 7vw, 7rem); }
.gallery__heading { position: sticky; top: 120px; padding: 2rem 0; }
.gallery__heading h2 { font-size: clamp(4rem, 6vw, 6rem); letter-spacing: -.04em; line-height: .9; }
.gallery__heading em { display: inline-block; padding-bottom: .12em; color: var(--accent); font-weight: 400; line-height: 1.05; }
.gallery__heading > p:last-child { max-width: 420px; margin-top: 2.6rem; color: var(--muted); }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.gallery-item { position: relative; overflow: hidden; min-height: 290px; padding: 0; border: 0; border-radius: var(--radius); background: var(--secondary); cursor: zoom-in; }
.gallery-item:nth-child(3n+1) { aspect-ratio: 3 / 4; }
.gallery-item:nth-child(3n+2) { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(3n) { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(even) { margin-top: 4rem; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); transition: transform 650ms var(--ease-out), filter 240ms ease; }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,17,16,.35), transparent 45%); content: ""; opacity: 0; transition: opacity 200ms ease; }
.gallery-item span { position: absolute; z-index: 1; right: 1.2rem; bottom: 1rem; color: var(--white); font-size: .7rem; letter-spacing: .14em; opacity: 0; text-transform: uppercase; transform: translateY(6px); transition: opacity 200ms ease, transform 220ms var(--ease-out); }

/* Experience */
.experience { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(4rem, 9vw, 10rem); padding-top: calc(var(--section-pad) * .8); border-top: 1px solid var(--line); }
.experience__intro { position: sticky; top: 120px; align-self: start; }
.experience__list { border-top: 1px solid var(--line); }
.experience-item { padding: 2.2rem .3rem; border-bottom: 1px solid var(--line); transition: color 200ms ease, background-color 200ms ease; }
.experience-item > div { transition: transform 240ms var(--ease-out); }
.experience-item h3 { margin-bottom: .55rem; font-size: 1.8rem; }
.experience-item p { max-width: 580px; color: var(--muted); font-size: .94rem; }

/* Testimonials */
.testimonials { max-width: none; background: var(--surface); }
.testimonials__head { max-width: var(--max-width); margin: 0 auto 4.5rem; padding-inline: var(--gutter); }
.testimonials__head h2 { max-width: 900px; }
.testimonials__list { display: grid; max-width: var(--max-width); margin: 0 auto; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.testimonial { min-height: 330px; padding: 2.3rem clamp(1.5rem, 3vw, 3.2rem); border-right: 1px solid var(--line); }
.testimonial:last-child { border-right: 0; }
.testimonial__stars { color: var(--accent); font-size: .72rem; letter-spacing: .3em; }
.testimonial blockquote { margin: 2.2rem 0 3rem; font-family: var(--display); font-size: clamp(1.45rem, 2.3vw, 2.05rem); line-height: 1.35; }
.testimonial footer { color: var(--muted); font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.testimonials__controls { display: none; }

/* Instagram */
.instagram { padding-top: var(--section-pad); }
.instagram__head { display: flex; align-items: flex-end; justify-content: space-between; padding-top: 0; padding-bottom: 3rem; }
.instagram__head h2 { font-size: clamp(3.2rem, 5.8vw, 5.8rem); letter-spacing: -.035em; line-height: .92; }
.instagram__grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.instagram__item { position: relative; overflow: hidden; aspect-ratio: 1 / 1.18; background: var(--secondary); }
.instagram__item::after { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(39,34,32,.48); color: var(--white); content: "Ver post"; font-size: .65rem; font-weight: 700; letter-spacing: .14em; opacity: 0; text-transform: uppercase; transition: opacity 200ms ease; }
.instagram__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease-out); }

/* Location */
.location { display: grid; min-height: 820px; grid-template-columns: 1.08fr .92fr; background: var(--surface); }
.location__map { position: relative; min-height: 700px; background: #d8d1c9; }
.location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) sepia(.12) contrast(.9); }
.location__map-label { position: absolute; right: 1.5rem; bottom: 1.5rem; display: grid; min-width: 180px; gap: .25rem; padding: 1rem 1.2rem; background: var(--primary); color: var(--white); }
.location__map-label span { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.location__map-label strong { font-family: var(--display); font-size: 1.05rem; font-weight: 400; }
.location__content { align-self: center; max-width: 700px; padding: var(--section-pad) clamp(2rem, 6vw, 7rem); }
.location address { display: grid; gap: .35rem; margin: 2.5rem 0; color: var(--muted); font-style: normal; }
.location address strong { margin-bottom: .3rem; color: var(--text); font-family: var(--display); font-size: 1.5rem; font-weight: 400; }
.location address a { display: inline-flex; width: fit-content; min-height: 44px; align-items: center; margin-top: .4rem; border-bottom: 1px solid var(--line); }
.hours { margin: 2rem 0 2.8rem; border-block: 1px solid var(--line); }
.hours__toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 1.25rem 0; border: 0; background: transparent; color: var(--text); cursor: pointer; font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hours__symbol { position: relative; display: block; width: 15px; height: 15px; }
.hours__symbol::before, .hours__symbol::after { position: absolute; top: 7px; left: 1px; width: 13px; height: 1px; background: currentColor; content: ""; transition: transform 180ms var(--ease-out); }
.hours__symbol::after { transform: rotate(90deg); }
.hours__toggle[aria-expanded="true"] .hours__symbol::after { transform: rotate(0deg); }
.hours__list { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 260ms var(--ease-out), opacity 180ms ease; }
.hours__inner { min-height: 0; overflow: hidden; }
.hours__list.is-open { grid-template-rows: 1fr; opacity: 1; }
.hours__list.is-open .hours__inner { padding-bottom: 1.3rem; }
.hours__row { display: flex; justify-content: space-between; gap: 2rem; padding: .28rem 0; color: var(--muted); font-size: .82rem; }
.hours__row span:last-child { color: var(--text); font-variant-numeric: tabular-nums; }
.location__actions { display: flex; align-items: center; gap: 2rem; }

/* Final CTA and footer */
.final-cta { display: flex; min-height: 670px; align-items: center; flex-direction: column; justify-content: center; padding: 7rem var(--gutter); background: var(--accent); color: var(--white); text-align: center; }
.final-cta h2 { font-size: clamp(4rem, 6.8vw, 6rem); letter-spacing: -.04em; line-height: .92; }
.final-cta > p { max-width: 520px; margin: 2rem auto 2.4rem; color: rgba(255,255,255,.94); }
.site-footer { padding: 5rem var(--gutter) 1.5rem; background: var(--primary); color: var(--white); }
.site-footer__top { display: grid; max-width: var(--max-width); margin: 0 auto; grid-template-columns: .8fr 1.2fr; gap: 5rem; padding-bottom: 5rem; }
.brand--footer { align-self: start; }
.brand--footer .brand__words strong { font-size: 2rem; }
.site-footer__links { display: grid; grid-template-columns: .6fr .7fr 1fr; gap: 3rem; }
.site-footer__links > div { display: flex; align-items: flex-start; flex-direction: column; gap: .65rem; }
.site-footer__links span { margin-bottom: .6rem; color: var(--secondary); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }
.site-footer__links a, .site-footer__links p { color: rgba(255,255,255,.66); font-size: .84rem; }
.site-footer__bottom { display: flex; max-width: var(--max-width); margin: 0 auto; justify-content: space-between; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.68); font-size: .7rem; letter-spacing: .05em; }
.site-footer__bottom a { color: rgba(255,255,255,.72); }

.whatsapp-float { position: fixed; z-index: 90; right: 1.4rem; bottom: 1.4rem; display: flex; height: 54px; align-items: center; gap: .6rem; padding: 0 1.05rem; border-radius: 30px; background: #236f4c; color: #fff; box-shadow: 0 12px 32px rgba(39,34,32,.2); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform 160ms var(--ease-out), background-color 200ms ease; }
.whatsapp-float::before { position: absolute; inset: -6px; border: 1px solid rgba(35,111,76,.38); border-radius: inherit; content: ""; animation: wa-pulse 1.2s 900ms var(--ease-out) 1 both; }
.whatsapp-float svg { width: 23px; height: 23px; }
.whatsapp-float:active { transform: scale(.97); }
@keyframes wa-pulse { 0%, 45% { opacity: 0; transform: scale(.9); } 60% { opacity: 1; } 100% { opacity: 0; transform: scale(1.13); } }

/* Lightbox */
.lightbox { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; overflow: hidden; border: 0; background: rgba(19,17,16,.96); color: var(--white); }
.lightbox[open] { display: grid; grid-template-columns: 104px 1fr 104px; align-items: center; animation: lightbox-in 220ms var(--ease-out); }
.lightbox--instant[open] { animation: none; }
.lightbox::backdrop { background: rgba(19,17,16,.85); }
.lightbox figure { display: grid; min-width: 0; height: 88dvh; place-items: center; }
.lightbox img { max-width: min(1100px, 80vw); max-height: 82dvh; object-fit: contain; }
.lightbox figcaption { width: min(100%, 720px); padding: .7rem 1rem 0; color: rgba(255,255,255,.62); font-size: .68rem; letter-spacing: .1em; line-height: 1.5; text-align: center; text-transform: uppercase; }
.lightbox button { border: 0; background: transparent; color: var(--white); cursor: pointer; }
.lightbox__close { position: fixed; z-index: 1; top: 1.2rem; right: 1.5rem; width: 48px; height: 48px; font-size: 2rem; font-weight: 200; }
.lightbox__nav { min-width: 78px; min-height: 46px; justify-self: center; border: 1px solid rgba(255,255,255,.3) !important; border-radius: 28px !important; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background-color 200ms ease, transform 140ms var(--ease-out); }
.lightbox__nav:active { transform: scale(.97); }
@keyframes lightbox-in { from { opacity: 0; } }

/* Scroll reveals are opt-in only when JS is active. */
.js .reveal { opacity: 0; transition: opacity 560ms ease; }
.js .reveal--image { clip-path: inset(0 0 10% 0); transition: opacity 560ms ease, clip-path 680ms var(--ease-out); }
.js .reveal.is-visible { opacity: 1; clip-path: inset(0); }
.js .stagger-item { opacity: 0; transform: translateY(12px); transition: opacity 420ms ease, transform 480ms var(--ease-out); }
.js .stagger-item.is-visible { opacity: 1; transform: none; }

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .button--light:hover { background: var(--secondary); }
  .button--dark:hover { background: var(--accent); }
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .button--header:hover, .site-header.is-scrolled .button--header:hover { border-color: var(--accent); background: var(--accent); color: var(--white); }
  .mirror-frame:hover img { transform: scale(1.025); }
  .service-card:hover img { transform: scale(1.045); filter: saturate(1); }
  .gallery-item:hover img { transform: scale(1.04); filter: saturate(1); }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-item:hover span { opacity: 1; transform: none; }
  .experience-item:hover { color: var(--accent); background: color-mix(in srgb, var(--accent) 4%, transparent); }
  .experience-item:hover > div { transform: translateX(8px); }
  .instagram__item:hover img { transform: scale(1.05); }
  .instagram__item:hover::after { opacity: 1; }
  .site-footer__links a:hover, .site-footer__bottom a:hover { color: var(--white); }
  .whatsapp-float:hover { background: #195c3e; transform: translateY(-3px); }
  .lightbox__nav:hover { background: var(--accent); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__image, .hero h1, .hero__copy, .hero__actions, .whatsapp-float::before { animation: none !important; opacity: 1; clip-path: none; transform: none; }
  .js .reveal, .js .reveal--image, .js .stagger-item { opacity: 1; clip-path: none; transform: none; transition: opacity 150ms ease; }
  .mobile-menu { clip-path: none; transition: opacity 150ms ease, visibility 150ms; }
  .mobile-menu nav a { transform: none; transition: opacity 150ms ease; }
  .site-header { transition: color 150ms ease, background-color 150ms ease, box-shadow 150ms ease; }
  .hours__list { transition: opacity 150ms ease; }
  .lightbox[open] { animation: none; }
  .button:hover, .mirror-frame:hover img, .service-card:hover img, .gallery-item:hover img, .experience-item:hover > div, .instagram__item:hover img, .whatsapp-float:hover { transform: none; }
}

@media (prefers-contrast: more) {
  :root { --line: color-mix(in srgb, var(--text) 45%, transparent); }
  .hero__copy, .section-heading > p, .service-card p, .site-footer__links a, .site-footer__links p { color: var(--white); }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled { background: var(--surface); backdrop-filter: none; }
}
