/* ============================================================
   LUMIÈRE · Nail Studio — Palermo, Buenos Aires
   Light, editorial, champagne-gold identity.
   Authored for Pyscis portfolio.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* superficies */
  --bg:            #FBF8F3;  /* crema dominante */
  --bg-surface:    #FFFFFF;  /* navbar scrolleada, paneles */
  --bg-elevated:   #F3ECE3;  /* tercer nivel, tarjetas */
  --surface-glass: rgba(255, 255, 255, 0.60);
  --border-glass:  rgba(43, 36, 32, 0.10);

  /* acento de marca */
  --accent:        #B8894E;  /* oro champagne */
  --accent-deep:   #9C7038;  /* oro profundo p/ texto fino sobre claro */
  --accent-2:      #C49A8E;  /* rosé secundario, sólo detalles */
  --accent-dim:    rgba(184, 137, 78, 0.12);
  --accent-glow:   rgba(184, 137, 78, 0.25);
  --rose-dim:      rgba(196, 154, 142, 0.16);
  --on-accent:     #FFFFFF;

  /* texto: 4 niveles */
  --text-1: #2B2420;
  --text-2: #5C5249;
  --text-3: #8A7F74;
  --text-4: #B3A99E;

  /* tipografía */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* forma */
  --r-card: 18px;
  --r-btn:  999px;
  --r-sm:   10px;

  /* movimiento */
  --t-fast: 150ms ease;
  --t-base: 300ms ease;
  --t-slow: 600ms cubic-bezier(.25, .46, .45, .94);

  /* sombras (luz, no peso) */
  --shadow-sm:  0 2px 14px rgba(43, 36, 32, 0.05);
  --shadow-md:  0 14px 40px rgba(43, 36, 32, 0.08);
  --shadow-lg:  0 30px 70px rgba(43, 36, 32, 0.12);
  --shadow-glow: 0 16px 50px var(--accent-glow);

  /* layout */
  --container: 1200px;
  --gutter: 24px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--accent); color: var(--on-accent); }

/* scrollbar fino, color de marca */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 999px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
html { scrollbar-color: var(--accent-2) var(--bg); scrollbar-width: thin; }

/* ---------- A11Y ---------- */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 2000;
  background: var(--text-1); color: var(--bg);
  padding: 12px 22px; border-radius: var(--r-btn);
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  transition: top var(--t-base);
}
.skip-link:focus { top: 16px; }

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

.img-fallback {
  background: linear-gradient(135deg, var(--bg-elevated), var(--accent-dim));
}
.img-fallback::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 30% 20%, var(--rose-dim), transparent 60%);
}

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 112px 0; position: relative; }

/* ---------- SHARED: EYEBROW / DIVIDER / TITLE ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow::before { display: none; }
.section-head .eyebrow { gap: 0; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-top: 18px;
}

.divider {
  display: block;
  width: 64px; height: 1px;
  background: var(--accent);
  margin: 26px auto;
  position: relative;
}
.divider::before, .divider::after {
  content: "";
  position: absolute; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%) rotate(45deg);
}
.divider::before { left: -2px; }
.divider::after { right: -2px; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* section-head left-aligned variant inside split */
.studio__body .section-head { text-align: left; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--r-btn);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  white-space: nowrap;
  position: relative;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-deep);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-glass);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

/* link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  transition: gap var(--t-base), color var(--t-base);
}
.link-arrow svg { transition: transform var(--t-base); }
.link-arrow:hover { gap: 14px; color: var(--text-1); }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow--lg { font-size: 14px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base), padding var(--t-base);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height var(--t-base);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--border-glass);
  box-shadow: var(--shadow-sm);
}
.nav.is-scrolled .nav__inner { height: 70px; }

.nav__brand { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-mark {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-1);
}
.nav__brand-sub {
  font-size: 9.5px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-top: 2px;
  padding-left: 2px;
}

.nav__links {
  display: flex;
  gap: 38px;
  margin-left: auto;
  margin-right: 38px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding: 6px 0;
  transition: color var(--t-base);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t-base);
}
.nav__links a:hover { color: var(--text-1); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 12px 26px; }

/* hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px; height: 30px;
  justify-content: center;
  align-items: center;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-1);
  padding: 8px 0;
  transition: color var(--t-base);
}
.mobile-menu__nav a:hover { color: var(--accent-deep); font-style: italic; }
.mobile-menu__cta { margin-top: 26px; }
.mobile-menu__foot {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.mobile-menu__foot a { transition: color var(--t-base); }
.mobile-menu__foot a:hover { color: var(--accent-deep); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 84px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
/* LIGHT veil — crema gradient, not black overlay */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(251,248,243,0.96) 0%, rgba(251,248,243,0.82) 34%, rgba(251,248,243,0.30) 64%, rgba(251,248,243,0.10) 100%),
    linear-gradient(0deg, rgba(251,248,243,0.55) 0%, transparent 30%);
}

.hero__content { position: relative; z-index: 2; width: 100%; }
.hero__panel { max-width: 620px; }

.hero__eyebrow { margin-bottom: 28px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--text-1);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
.hero__rule {
  display: block;
  width: 80px; height: 1px;
  background: var(--accent);
  margin: 34px 0 28px;
}
.hero__sub {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 460px;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* floating meta strip */
.hero__meta {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-btn);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
  box-shadow: var(--shadow-sm);
}
.hero__meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-2);
}

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--accent-deep);
  animation: scrollDrop 2.2s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes scrollDrop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}
.hero__scroll-text {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
}

/* ============================================================
   BAND / MARQUEE
   ============================================================ */
.band {
  background: var(--text-1);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}
.band__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.band__track span:not(.band__dot) {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 400;
  color: var(--bg);
  white-space: nowrap;
}
.band__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.services { background: var(--bg); }

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

.svc-group {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.svc-group:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.svc-group__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.svc-group__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
}
.svc-group__line {
  flex: 1; height: 1px;
  background: var(--border-glass);
}

.svc-list { display: flex; flex-direction: column; }
.svc {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-glass);
  transition: padding-left var(--t-base);
}
.svc:last-child { border-bottom: none; }
.svc:hover { padding-left: 6px; }

.svc__text { display: flex; flex-direction: column; gap: 4px; }
.svc__name {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: .005em;
}
.svc__desc {
  font-size: 0.86rem;
  color: var(--text-3);
  line-height: 1.5;
}
.svc__tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  vertical-align: middle;
  margin-left: 4px;
}
.svc__price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--accent-deep);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.svc--feature .svc__name { color: var(--accent-deep); }

/* note card */
.svc-note {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, var(--accent-dim), var(--rose-dim));
  border-radius: var(--r-sm);
  border: 1px solid var(--border-glass);
}
.svc-note__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
}
.svc-note__text {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ============================================================
   ESTUDIO / SPLIT
   ============================================================ */
.studio { background: var(--bg-elevated); }
.studio__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.studio__media {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.studio__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.studio__media:hover img { transform: scale(1.04); }
.studio__media-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  background: var(--bg-surface);
  padding: 14px 20px;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.studio__media-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--accent-deep);
  line-height: 1;
}
.studio__media-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
  order: -1;
  margin-bottom: 4px;
}

.studio__text {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
}
.studio__text:first-of-type { margin-top: 4px; }

.studio__stats {
  display: flex;
  gap: 36px;
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
  flex-wrap: wrap;
}
.studio__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1;
}
.studio__stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 6px;
  letter-spacing: .02em;
}

/* ============================================================
   GALERÍA
   ============================================================ */
.gallery { background: var(--bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,36,32,0.45) 0%, transparent 45%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }

.gallery__cap {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.gallery__item:hover .gallery__cap {
  opacity: 1;
  transform: translateY(0);
}

.gallery__cta { text-align: center; margin-top: 48px; }

/* ============================================================
   OPINIONES
   ============================================================ */
.reviews { background: var(--bg-elevated); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 14px; right: 26px;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--accent-dim);
  font-weight: 700;
}
.review:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent);
}
.review__stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.review__quote {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--text-1);
  font-weight: 400;
  flex: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border-glass);
}
.review__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review__meta { display: flex; flex-direction: column; }
.review__name {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-1);
}
.review__role {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact { background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: stretch;
}

.contact__info {
  display: flex;
  flex-direction: column;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.contact__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-glass);
}
.contact__item:first-child { padding-top: 0; }
.contact__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__label {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 5px;
}
.contact__value {
  display: block;
  font-size: 1rem;
  color: var(--text-1);
  line-height: 1.55;
}
.contact__muted { color: var(--text-3); font-size: 0.9rem; }
.contact__value--link { color: var(--accent-deep); transition: color var(--t-base); }
.contact__value--link:hover { color: var(--text-1); }

.contact__btn { margin-top: 30px; width: 100%; }

/* stylized map */
.contact__map {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  min-height: 420px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-glass) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-glass) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.6;
}
.map-streets { position: absolute; inset: 0; }
.map-street { position: absolute; background: var(--bg-surface); box-shadow: 0 0 0 1px var(--border-glass); }
.map-street--h1 { top: 32%; left: 0; right: 0; height: 16px; }
.map-street--h2 { top: 68%; left: 0; right: 0; height: 22px; }
.map-street--v1 { left: 28%; top: 0; bottom: 0; width: 16px; }
.map-street--v2 { left: 64%; top: 0; bottom: 0; width: 22px; }
.map-block { position: absolute; background: var(--bg-surface); border-radius: 4px; box-shadow: 0 0 0 1px var(--border-glass); opacity: 0.7; }
.map-block--1 { top: 40%; left: 34%; width: 26%; height: 22%; }
.map-block--2 { top: 8%; left: 70%; width: 22%; height: 20%; }
.map-block--3 { top: 74%; left: 6%; width: 18%; height: 18%; }

.map-pin {
  position: absolute;
  top: 50%; left: 46%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-pin__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-surface);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.map-pin__pulse {
  position: absolute;
  top: 0; left: 50%;
  width: 18px; height: 18px;
  margin-left: -9px;
  border-radius: 50%;
  background: var(--accent-glow);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(4); opacity: 0; }
}
.map-pin__label {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-1);
  background: var(--bg-surface);
  padding: 3px 12px;
  border-radius: var(--r-btn);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.map-tag {
  position: absolute;
  bottom: 18px; right: 18px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--surface-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: var(--r-btn);
  border: 1px solid var(--border-glass);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-1);
  color: var(--bg);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__mark {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--bg);
}
.footer__desc {
  font-size: 0.96rem;
  color: rgba(251, 248, 243, 0.62);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 340px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(251, 248, 243, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 248, 243, 0.75);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  transform: translateY(-2px);
}

.footer__nav-title {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer__nav { display: flex; flex-direction: column; gap: 11px; }
.footer__nav a, .footer__hours p {
  font-size: 0.95rem;
  color: rgba(251, 248, 243, 0.62);
  transition: color var(--t-base);
}
.footer__nav a:hover { color: var(--bg); }
.footer__hours p { margin-bottom: 8px; line-height: 1.5; }

.footer__bottom {
  border-top: 1px solid rgba(251, 248, 243, 0.12);
  padding-top: 28px;
  padding-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy, .footer__credit {
  font-size: 0.86rem;
  color: rgba(251, 248, 243, 0.5);
}
.footer__credit a {
  color: var(--accent);
  font-weight: 500;
  transition: color var(--t-base);
}
.footer__credit a:hover { color: var(--bg); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.fab {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.5);
}
.fab::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fabPulse 2.6s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94), transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO STAGGER (load)
   ============================================================ */
.hero__eyebrow,
.hero__title,
.hero__rule,
.hero__sub,
.hero__actions,
.hero__meta {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hero__eyebrow { animation-delay: 0.15s; }
.hero__title   { animation-delay: 0.30s; }
.hero__rule    { animation-delay: 0.45s; }
.hero__sub     { animation-delay: 0.58s; }
.hero__actions { animation-delay: 0.70s; }
.hero__meta    { animation-delay: 0.95s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .section { padding: 88px 0; }
  .services__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .studio__grid { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .studio__grid { grid-template-columns: 1fr; gap: 36px; }
  .studio__media { max-width: 460px; }
  .studio__body .section-head { text-align: center; margin-left: auto; margin-right: auto; }

  .reviews__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__map { min-height: 340px; order: -1; }

  .hero__meta { display: none; }
  .gallery__grid { grid-auto-rows: 200px; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 44px; }

  .hero { padding-top: 70px; }
  .hero__sub { font-size: 1.06rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  .svc-group { padding: 28px 22px; }
  .svc__desc { display: none; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__cap { opacity: 1; transform: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .review { padding: 28px 24px; }
  .studio__stats { gap: 24px; }
  .studio__stat-num { font-size: 2rem; }

  .band__track span:not(.band__dot) { font-size: 1.4rem; }
  .fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .band__track { animation: none; }
  .hero__eyebrow, .hero__title, .hero__rule, .hero__sub, .hero__actions, .hero__meta { opacity: 1; transform: none; }
}
