/* ==========================================================================
   Look Foto Cabine — stylesheet
   Design tokens
   ========================================================================== */
:root {
  --bg: #0C0B10;
  --bg-alt: #100E15;
  --card: #16141C;
  --text: #F7F2EA;
  --text-72: rgba(247, 242, 234, 0.72);
  --text-70: rgba(247, 242, 234, 0.7);
  --text-65: rgba(247, 242, 234, 0.65);
  --text-60: rgba(247, 242, 234, 0.6);
  --text-45: rgba(247, 242, 234, 0.45);
  --border: rgba(247, 242, 234, 0.1);
  --border-strong: rgba(247, 242, 234, 0.22);
  --gold: #F2C744;
  --gold-soft: rgba(242, 199, 68, 0.35);
  --pink: #EE5A83;

  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --pill: 100px;

  --container: 1240px;
  --pad-x: clamp(16px, 4vw, 40px);
  --section-y: clamp(56px, 8vw, 110px);

  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Archivo", "Segoe UI", Helvetica, sans-serif;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --header-h: 84px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-padding-top: var(--header-h);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, p, figure { margin: 0; }

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

a {
  color: var(--gold);
  text-decoration: none;
}
a:hover { color: var(--pink); }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-main {
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.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;
  top: -60px;
  left: 12px;
  z-index: 100;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--pill);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Motion
   ========================================================================== */
@keyframes lfc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes lfc-flash {
  0%, 92%, 100% { opacity: 0.25; }
  94% { opacity: 1; }
  96% { opacity: 0.35; }
  98% { opacity: 0.9; }
}
@keyframes lfc-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes lfc-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lfc-glow-pulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
@keyframes lfc-spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes lfc-in-video {
  from { opacity: 0; transform: translateY(22px) rotate(3deg) scale(0.97); }
  to { opacity: 1; transform: translateY(0) rotate(3deg) scale(1); }
}
@keyframes lfc-float-video {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-7px) rotate(3deg); }
}
@keyframes lfc-in-a {
  from { opacity: 0; transform: translateY(22px) rotate(-6deg) scale(0.97); }
  to { opacity: 1; transform: translateY(0) rotate(-6deg) scale(1); }
}
@keyframes lfc-float-a {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-9px) rotate(-6deg); }
}
@keyframes lfc-in-b {
  from { opacity: 0; transform: translateY(22px) rotate(7deg) scale(0.97); }
  to { opacity: 1; transform: translateY(0) rotate(7deg) scale(1); }
}
@keyframes lfc-float-b {
  0%, 100% { transform: translateY(0) rotate(7deg); }
  50% { transform: translateY(-6px) rotate(7deg); }
}

[data-reveal] { opacity: 0; }
[data-reveal][data-revealed] {
  animation: lfc-in 0.7s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; animation: none !important; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .marquee-track { animation: none !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(12, 11, 16, 0.6);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(12, 11, 16, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--text); }

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 199, 68, 0.18);
  animation: lfc-flash 4.5s infinite;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-desktop__link {
  position: relative;
  color: var(--text-72);
  font-size: 15px;
  transition: color 0.2s var(--ease);
}
.nav-desktop__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-desktop__link:hover,
.nav-desktop__link:focus-visible {
  color: var(--text);
}
.nav-desktop__link:hover::after,
.nav-desktop__link:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  gap: 5px;
  background: rgba(247, 242, 234, 0.08);
  border: 1px solid rgba(247, 242, 234, 0.14);
  border-radius: 14px;
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}
.nav-toggle__bar--accent {
  width: 12px;
  background: var(--gold);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ==========================================================================
   Mobile menu overlay
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--bg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.mobile-menu[data-open] {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
}
.mobile-menu__close {
  width: 48px;
  height: 48px;
  font-size: 24px;
  line-height: 1;
  background: rgba(247, 242, 234, 0.08);
  color: var(--text);
  border: 1px solid rgba(247, 242, 234, 0.14);
  border-radius: 14px;
}

.mobile-menu__nav {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 34px);
  font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__link:last-child { border-bottom: none; }
.mobile-menu__link:hover { color: var(--gold); }

.mobile-menu__actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 20px;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--pill);
  font-weight: 600;
  text-align: center;
  max-width: 100%;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg);
  font-size: 15px;
  padding: 12px 20px;
}
.btn--gold:hover { background: var(--text); color: var(--bg); }

.btn--gold-lg {
  background: var(--gold);
  color: var(--bg);
  font-size: 17px;
  padding: 18px 30px;
  box-shadow: 0 14px 40px rgba(242, 199, 68, 0.22);
}
.btn--gold-lg:hover { background: var(--text); color: var(--bg); }

.btn--gold-xl {
  background: var(--gold);
  color: var(--bg);
  font-size: 18px;
  padding: 20px 34px;
  box-shadow: 0 16px 44px rgba(242, 199, 68, 0.2);
}
.btn--gold-xl:hover { background: var(--text); color: var(--bg); }

.btn--outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 17px;
  padding: 18px 28px;
}
.btn--outline:hover { border-color: var(--text); color: var(--text); }

.btn--outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 16px;
  padding: 16px 26px;
}
.btn--outline-gold:hover { background: var(--gold); color: var(--bg); }

.btn--pale {
  background: var(--text);
  color: var(--bg);
  font-size: 16px;
  padding: 16px 26px;
  white-space: nowrap;
}
.btn--pale:hover { background: var(--gold); }

.btn--ghost-sm {
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 15px;
  padding: 14px 22px;
}
.btn--ghost-sm:hover { border-color: var(--gold); color: var(--gold); }

.btn--block {
  width: 100%;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }

@media (hover: none) {
  .btn:hover { transform: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 88px) 0 clamp(28px, 4vw, 52px);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(242, 199, 68, 0.16), transparent 68%);
  pointer-events: none;
  animation: lfc-glow-pulse 9s ease-in-out infinite;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: var(--pill);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: lfc-rise 0.6s var(--ease) both;
}
.hero__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 8.4vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  animation: lfc-rise 0.65s var(--ease) 0.09s both;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__lede {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--text-72);
  margin: 0 0 30px;
  max-width: 30em;
  text-wrap: pretty;
  animation: lfc-rise 0.6s var(--ease) 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: lfc-rise 0.6s var(--ease) 0.3s both;
}

.hero__note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-45);
  animation: lfc-rise 0.55s var(--ease) 0.38s both;
}

.hero__media {
  position: relative;
  min-height: clamp(340px, 46vw, 520px);
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
}

.hero__media-item {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(247, 242, 234, 0.12);
  background: var(--bg-alt);
}

.hero__media-item--video {
  top: 0; right: 4%;
  width: 62%;
  aspect-ratio: 3 / 4;
  animation: lfc-in-video 0.7s var(--ease) 0.26s both, lfc-float-video 7s ease-in-out 0.96s infinite;
}
.hero__media-item--a {
  bottom: 2%; left: 0;
  width: 46%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation: lfc-in-a 0.7s var(--ease) 0.38s both, lfc-float-a 8s ease-in-out 1.08s infinite;
}
.hero__media-item--b {
  bottom: 26%; right: 0;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: lfc-in-b 0.7s var(--ease) 0.48s both, lfc-float-b 6.5s ease-in-out 1.18s infinite;
}

.hero__media-item img,
.hero__media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: var(--bg-alt);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: lfc-marquee 34s linear infinite;
}
.marquee-set {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-45);
  white-space: nowrap;
}
.marquee-set [data-sep] {
  display: inline-block;
  color: var(--gold);
  animation: lfc-spin-slow 14s linear infinite;
}
.marquee-set [data-sep="alt"] {
  color: var(--pink);
  animation-duration: 18s;
  animation-direction: reverse;
}

/* ==========================================================================
   Section headers
   ========================================================================== */
section { padding: var(--section-y) var(--pad-x); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow--pink { color: var(--pink); }
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 12px 0 0;
}

.section-lede {
  max-width: 32ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-60);
}
.section-lede[data-reveal] { animation-delay: 0.12s; }

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(276px, 100%), 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.service-card:hover {
  border-color: rgba(242, 199, 68, 0.45);
  transform: translateY(-4px);
}
.service-card[data-reveal][data-revealed] { animation-duration: 0.6s; }
.service-card:nth-child(4n+1) { animation-delay: 0ms; }
.service-card:nth-child(4n+2) { animation-delay: 60ms; }
.service-card:nth-child(4n+3) { animation-delay: 120ms; }
.service-card:nth-child(4n+4) { animation-delay: 180ms; }

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.045); }

.service-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 6px 11px;
  border-radius: var(--pill);
}

.service-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.service-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-65);
  text-wrap: pretty;
}

.service-card__cta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card__cta span { transition: transform 0.18s var(--ease); }
.service-card__cta:hover span { transform: translateX(3px); }

.support-banner {
  margin-top: clamp(20px, 3vw, 34px);
  background: linear-gradient(100deg, rgba(238, 90, 131, 0.14), rgba(242, 199, 68, 0.1));
  border: 1px solid rgba(247, 242, 234, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.support-banner__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.support-banner__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-72);
  max-width: 60ch;
  text-wrap: pretty;
}

/* ==========================================================================
   Showcase (video features)
   ========================================================================== */
.showcase {
  background: var(--bg-alt);
  border-top: 1px solid rgba(247, 242, 234, 0.08);
  border-bottom: 1px solid rgba(247, 242, 234, 0.08);
}

.showcase-list {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
}

.showcase-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}

.showcase-item__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(247, 242, 234, 0.12);
  background: var(--bg);
  aspect-ratio: 9 / 13;
  max-height: 560px;
}
.showcase-item__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--bg);
}

.showcase-item__tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.showcase-item__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.showcase-item__text {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--text-70);
  margin: 0 0 26px;
  max-width: 44ch;
  text-wrap: pretty;
}

/* ==========================================================================
   Steps
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-card__n {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 0.8;
  color: rgba(242, 199, 68, 0.9);
  letter-spacing: -0.04em;
}
.step-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.step-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-65);
  text-wrap: pretty;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-section { background: var(--bg-alt); border-top: 1px solid rgba(247, 242, 234, 0.08); }

.gallery-hint { margin: 0; font-size: 14px; color: var(--text-45); }
.gallery-hint[data-reveal] { animation-delay: 0.12s; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
  gap: 10px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 1px solid rgba(247, 242, 234, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  cursor: zoom-in;
  aspect-ratio: 1;
  min-height: 120px;
  transition: border-color 0.18s var(--ease);
}
.gallery-item:hover { border-color: var(--gold); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 11, 16, 0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item[data-reveal][data-revealed] { animation-duration: 0.55s; }
.gallery-item:nth-child(6n+1) { animation-delay: 0ms; }
.gallery-item:nth-child(6n+2) { animation-delay: 45ms; }
.gallery-item:nth-child(6n+3) { animation-delay: 90ms; }
.gallery-item:nth-child(6n+4) { animation-delay: 135ms; }
.gallery-item:nth-child(6n+5) { animation-delay: 180ms; }
.gallery-item:nth-child(6n+6) { animation-delay: 225ms; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 7, 11, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s var(--ease), visibility 0.2s;
}
.lightbox[data-open] { visibility: visible; opacity: 1; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.lightbox__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 48px; height: 48px;
  font-size: 24px;
  color: var(--text);
  background: rgba(247, 242, 234, 0.1);
  border: 1px solid rgba(247, 242, 234, 0.2);
  border-radius: 50%;
  cursor: pointer;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.about-grid > [data-reveal]:nth-child(2) { animation-delay: 0.12s; }

.about-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 12px 0 20px;
}

.about-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-72);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.about-text:last-child { margin-bottom: 0; }

.about-media {
  display: grid;
  gap: 14px;
}
.about-media__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(247, 242, 234, 0.12);
  aspect-ratio: 4 / 3;
}
.about-media__photo img { width: 100%; height: 100%; object-fit: cover; }

.reviews-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
}
.reviews-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.reviews-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-60);
  margin: 0 0 18px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-section {
  background: var(--bg-alt);
  border-top: 1px solid rgba(247, 242, 234, 0.08);
  padding-bottom: clamp(120px, 12vw, 110px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.contact-grid > [data-reveal]:nth-child(2) { animation-delay: 0.12s; }

.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}
.contact-title span { color: var(--gold); }

.contact-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-72);
  margin: 0 0 12px;
  max-width: 46ch;
  text-wrap: pretty;
}

.contact-hint {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gold);
  margin: 0 0 26px;
  max-width: 46ch;
}

.contact-cards {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  color: var(--text);
  transition: border-color 0.18s var(--ease);
}
.contact-card:hover { border-color: var(--gold); }
.contact-card__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-45);
  margin-bottom: 6px;
}
.contact-card__value { font-size: 20px; font-weight: 600; }
.contact-card__value--email { font-size: 18px; font-weight: 600; word-break: break-all; }
.contact-card__arrow { color: var(--gold); flex-shrink: 0; }

.contact-card--static {
  display: block;
  cursor: default;
}
.contact-card--static .contact-card__value {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}

.contact-social {
  display: flex;
  gap: 12px;
}
.contact-social a {
  flex: 1;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.contact-social a:hover { border-color: var(--pink); color: var(--pink); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 30px var(--pad-x) clamp(96px, 10vw, 40px);
  border-top: 1px solid rgba(247, 242, 234, 0.08);
}
.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-45);
}

@media (min-width: 1024px) {
  .site-footer { padding-bottom: 30px; }
}

/* ==========================================================================
   Mobile sticky CTA bar
   ========================================================================== */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(12, 11, 16, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  display: flex;
  gap: 10px;
  animation: lfc-rise 0.5s var(--ease) 0.6s both;
}
.mobile-cta__whatsapp {
  flex: 1;
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 17px;
  padding: 17px;
  border-radius: var(--pill);
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease);
}
.mobile-cta__whatsapp:active { transform: scale(0.97); }
.mobile-cta__call {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 242, 234, 0.22);
  border-radius: 50%;
  color: var(--text);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease);
}
.mobile-cta__call:active { transform: scale(0.93); }

@media (min-width: 1024px) {
  .mobile-cta { display: none; }
  .contact-section,
  section:last-of-type { padding-bottom: var(--section-y); }
}

/* ==========================================================================
   Barra de progresso de leitura
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 100;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  will-change: transform;
  pointer-events: none;
}
