/* ============================================================
   JUAN AMADEO — Fotografía de Bodas & Eventos
   style.css — Design System Completo
   Clean Modern · Blanco & Negro · Dark/Light Mode
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Outfit:wght@200;300;400;500&family=DM+Mono:wght@300;400&display=swap');

/* ── CSS Variables — Dark Mode (default) ──────────────────── */
:root {
  --bg:          #080808;
  --bg-2:        #111111;
  --bg-3:        #1a1a1a;
  --border:      #2a2a2a;
  --border-soft: #1e1e1e;
  --text:        #f2ede6;
  --text-2:      #a09a92;
  --text-3:      #555250;
  --accent:      #f2ede6;
  --accent-inv:  #080808;
  --gold:        #c9a84c;
  --gold-2:      #e8c97a;
  --gold-glow:   rgba(201,168,76,0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.6);

  --nav-h: 72px;
}

/* ── Light Mode ────────────────────────────────────────────── */
[data-theme="light"] {
  --bg:          #f8f6f1;
  --bg-2:        #eeece7;
  --bg-3:        #e4e1da;
  --border:      #d8d3cb;
  --border-soft: #e4e1da;
  --text:        #0f0d0a;
  --text-2:      #5e5a54;
  --text-3:      #a09990;
  --accent:      #0f0d0a;
  --accent-inv:  #f8f6f1;
  --gold:        #b8892a;
  --gold-2:      #c9a84c;
  --gold-glow:   rgba(184,137,42,0.14);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.4s var(--ease-in-out), color 0.4s var(--ease-in-out);
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; }

/* ── Custom Cursor ─────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: background 0.3s;
  mix-blend-mode: exclusion;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid var(--text-3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.4s var(--ease-out-expo),
              height 0.4s var(--ease-out-expo),
              border-color 0.3s;
}
.cursor-ring.expanded { width: 72px; height: 72px; border-color: var(--text-2); }

/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3rem;
}
.preloader__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
}
.preloader__name span { font-style: italic; color: var(--gold); }
.preloader__track {
  width: 240px; height: 1px;
  background: var(--border);
  position: relative;
}
.preloader__fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%;
  background: var(--gold);
  transition: width 0.05s linear;
}
.preloader__pct {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.2em;
}

/* ── Topbar ────────────────────────────────────────────────── */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  transition: background 0.5s var(--ease-in-out),
              border-color 0.5s,
              backdrop-filter 0.5s;
}
#topbar.scrolled {
  background: rgba(12,12,12,0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
[data-theme="light"] #topbar.scrolled {
  background: rgba(250,249,247,0.88);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-logo em { font-style: italic; color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

/* Theme toggle */
.theme-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: none;
  color: var(--text-2);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.theme-toggle:hover { border-color: var(--text); color: var(--text); background: var(--bg-3); }

/* CTA button */
.nav-cta {
  padding: 0.6rem 1.6rem;
  background: var(--gold);
  color: #080808;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: transparent; color: var(--gold); box-shadow: 0 0 18px var(--gold-glow); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 20px; }
.hamburger.active span:nth-child(1) { width: 22px; transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { width: 22px; transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease-out-expo);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--text); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
canvas#three-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  min-height: calc(100svh - var(--nav-h));
}
.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; transform: translateY(12px);
}
.hero__kicker::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 11rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 960px;
}
.hero__title .clip { overflow: hidden; display: block; }
.hero__title .line { display: block; transform: translateY(110%); }
.hero__title em { font-style: italic; color: var(--gold); }

.hero__desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

/* Buttons */
.btn-primary {
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: #080808;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--gold);
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 0 28px var(--gold-glow); }

.btn-ghost {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-ghost:hover { border-color: var(--text-2); color: var(--text); transform: translateY(-2px); }

/* Hero scroll indicator */
.hero__scroll {
  position: relative; z-index: 1;
  padding: 2rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-soft);
  opacity: 0;
}
.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-3);
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 80px; height: 1px;
  background: var(--border);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--text-2);
  animation: slideRight 2s var(--ease-in-out) infinite;
}
@keyframes slideRight { 0%{left:-100%} 100%{left:100%} }

/* ── Section Base ──────────────────────────────────────────── */
.section {
  padding: clamp(4rem, 10vw, 9rem) clamp(1.5rem, 4vw, 4rem);
}
.section--alt { background: var(--bg-2); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::after {
  content: attr(data-num);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.6rem;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.85;
}

/* Reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ABOUT / SPLIT SECTION ─────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
}
@media(max-width:900px){ .about-grid{ grid-template-columns:1fr; gap:3rem; } }

.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s;
}
.about-img-wrap:hover img { transform: scale(1.04); filter: grayscale(80%); }

.about-img-badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--text);
  color: var(--accent-inv);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.3;
}
.about-img-badge strong { display: block; font-size: 2rem; font-style: normal; font-weight: 700; }

.about-content { display: flex; flex-direction: column; gap: 2rem; }
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}
.tag:hover { border-color: var(--text-2); color: var(--text-2); }

/* ── STATS ─────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media(max-width:700px){ .stats-grid{ grid-template-columns: repeat(2,1fr); } }

.stat-item {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  transition: background 0.3s;
}
.stat-item:hover { background: var(--bg-3); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services-list { display: flex; flex-direction: column; gap: 0; }

.service-row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.25s;
  border-radius: var(--radius-sm);
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: none;
}
.service-row:hover { background: var(--bg-3); }
@media(max-width:600px){ .service-row{ grid-template-columns:1fr auto; } }

.service-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.3s;
}
.service-row:hover .service-row__name { color: var(--text); }
.service-row__info {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
}
@media(max-width:600px){ .service-row__info{ display:none; } }

.service-row__arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  font-size: 1rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.3s;
}
.service-row:hover .service-row__arrow {
  border-color: var(--text);
  color: var(--accent-inv);
  background: var(--text);
  transform: rotate(45deg);
}

/* ── PORTFOLIO PREVIEW ─────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.pf-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: none;
}
.pf-item:nth-child(1) { grid-column: 1/8; grid-row: 1; aspect-ratio: 4/3; }
.pf-item:nth-child(2) { grid-column: 8/13; grid-row: 1; aspect-ratio: 3/4; }
.pf-item:nth-child(3) { grid-column: 1/5; grid-row: 2; aspect-ratio: 1; }
.pf-item:nth-child(4) { grid-column: 5/9; grid-row: 2; aspect-ratio: 1; }
.pf-item:nth-child(5) { grid-column: 9/13; grid-row: 2; aspect-ratio: 1; }

@media(max-width:900px){
  .portfolio-grid{ grid-template-columns:1fr 1fr; }
  .pf-item:nth-child(n){ grid-column:auto; grid-row:auto; aspect-ratio:1; }
  .pf-item:nth-child(1){ grid-column:1/-1; aspect-ratio:16/9; }
}
@media(max-width:500px){
  .portfolio-grid{ grid-template-columns:1fr; }
  .pf-item:nth-child(n){ grid-column:auto; }
}

.pf-item img {
  width:100%; height:100%;
  object-fit:cover;
  filter: grayscale(100%);
  transition: transform 0.7s var(--ease-out-expo), filter 0.5s;
}
.pf-item:hover img { transform: scale(1.06); filter: grayscale(50%); }

.pf-item__overlay {
  position:absolute; inset:0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.pf-item:hover .pf-item__overlay { opacity: 1; }
.pf-item__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── PROCESS / TIMELINE ────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media(max-width:900px){ .process-steps{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:500px){ .process-steps{ grid-template-columns:1fr; } }

/* Connecting line */
.process-steps::before {
  content:'';
  position:absolute;
  top: 28px; left: 28px; right: 28px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
@media(max-width:900px){ .process-steps::before{ display:none; } }

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.process-step__num {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
  background: var(--bg);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.process-step:hover .process-step__num {
  border-color: var(--text);
  color: var(--text);
  background: var(--bg-3);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}
.process-step__body {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media(max-width:900px){ .testimonials-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:600px){ .testimonials-grid{ grid-template-columns:1fr; } }

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.3s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.testimonial-card:hover {
  border-color: var(--text-3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex; gap: 4px;
  color: var(--text-3);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.testimonial-event {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
}

/* ── AWARDS ────────────────────────────────────────────────── */
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s;
  border-radius: var(--radius-sm);
  padding-left: 0.5rem;
}
.award-item:hover { background: var(--bg-3); }
.award-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  min-width: 60px;
}
.award-icon { font-size: 1.4rem; }
.award-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text);
  flex: 1;
}
.award-org {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media(max-width:600px){ .award-org{ display:none; } }

/* ── INSTAGRAM FEED ────────────────────────────────────────── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
@media(max-width:700px){ .insta-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:400px){ .insta-grid{ grid-template-columns:repeat(2,1fr); } }

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.insta-item img {
  width:100%; height:100%;
  object-fit:cover;
  filter: grayscale(100%);
  transition: transform 0.5s var(--ease-out-expo), filter 0.4s;
}
.insta-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.insta-item__icon {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,0.45);
  opacity:0;
  transition: opacity 0.3s;
  font-size: 1.5rem;
  color:#fff;
}
.insta-item:hover .insta-item__icon { opacity:1; }

/* ── VIDEO ─────────────────────────────────────────────────── */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-3);
}
.video-wrap iframe {
  width:100%; height:100%;
  border:none;
  filter: grayscale(100%);
}
.video-cover {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,0.35);
  cursor: none;
  transition: background 0.3s;
}
.video-cover:hover { background: rgba(0,0,0,0.1); }
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:#fff; padding-left:4px;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s;
}
.video-cover:hover .play-btn {
  transform: scale(1.12);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
}
@media(max-width:700px){ .pricing-grid{ grid-template-columns:1fr; } }

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.pricing-card:hover {
  border-color: var(--text-3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  background: var(--text);
  color: var(--accent-inv);
  border-color: var(--text);
}
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-includes li,
.pricing-card.featured .pricing-name { color: var(--accent-inv); opacity: 0.85; }
.pricing-card.featured .pricing-amount { color: var(--accent-inv); opacity: 1; }
.pricing-badge {
  position:absolute; top:-1px; right: 2rem;
  padding: 0.3rem 1rem;
  background: var(--text);
  color: var(--accent-inv);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-card.featured .pricing-badge {
  background: var(--bg);
  color: var(--text);
}
.pricing-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.pricing-amount sup { font-size: 1.2rem; font-weight: 400; vertical-align: top; margin-top: 0.4rem; }
.pricing-amount span { font-size: 1rem; font-weight: 300; color: var(--text-3); }
.pricing-desc { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }
.pricing-includes { list-style:none; display:flex; flex-direction:column; gap:0.6rem; flex:1; }
.pricing-includes li {
  font-size: 0.85rem;
  color: var(--text-2);
  display: flex; align-items: center; gap: 0.6rem;
}
.pricing-includes li::before { content:'✓'; color: var(--text-3); font-size: 0.75rem; }
.pricing-card.featured .pricing-includes li::before { color: var(--accent-inv); opacity: 0.6; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { display:flex; flex-direction:column; gap:0; max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.faq-question {
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem;
  padding: 1.5rem 0;
  background:none; border:none;
  font-family: var(--font-display);
  font-size: clamp(1rem,1.8vw,1.25rem);
  color: var(--text);
  text-align:left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--text-2); }
.faq-icon {
  width:32px; height:32px; flex-shrink:0;
  border:1px solid var(--border);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--text-3);
  transition: transform 0.35s var(--ease-out-expo), border-color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--text-2); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.8;
  padding-bottom: 1.5rem;
  max-width: 620px;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: var(--text);
  color: var(--accent-inv);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0 clamp(1.5rem, 4vw, 4rem);
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--accent-inv);
}
.cta-banner__title em { font-style: italic; opacity: 0.6; }
.btn-dark {
  padding: 1rem 2.5rem;
  background: var(--accent-inv);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-dark:hover { opacity: 0.85; transform: translateY(-2px); }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: clamp(3rem,6vw,6rem) clamp(1.5rem,4vw,4rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media(max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:500px){ .footer-grid{ grid-template-columns:1fr; } }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-brand-name em { font-style:italic; color:var(--gold); }
.footer-tagline { font-size: 0.9rem; color: var(--text-2); line-height:1.7; max-width:280px; margin-bottom:1.5rem; }
.footer-social { display:flex; gap:0.8rem; flex-wrap:wrap; }
.footer-social a {
  width:40px; height:40px;
  border:1px solid var(--border);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; color:var(--text-3);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color:var(--text-2); color:var(--text); }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--text-3);
  margin-bottom:1.5rem;
}
.footer-col-links { list-style:none; display:flex; flex-direction:column; gap:0.8rem; }
.footer-col-links a {
  font-size:0.9rem;
  color:var(--text-2);
  transition:color 0.2s;
}
.footer-col-links a:hover { color:var(--text); }

.footer-bottom {
  padding-top:2rem;
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
}
.footer-copy {
  font-family:var(--font-mono);
  font-size:0.65rem;
  color:var(--text-3);
  letter-spacing:0.1em;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

/* ── Noise overlay ─────────────────────────────────────────── */
.noise {
  position:fixed; inset:0;
  pointer-events:none; z-index:9000;
  opacity:0.025;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:200px;
}

/* ─── GALLERY PAGE ─────────────────────────────────────────── */
.gallery-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  padding-left: clamp(1.5rem,4vw,4rem);
  padding-right: clamp(1.5rem,4vw,4rem);
  border-bottom: 1px solid var(--border);
}
.gallery-filters {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  cursor: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--text);
  color: var(--accent-inv);
  background: var(--text);
}

/* Swiper */
.carousel-section {
  padding: clamp(3rem,6vw,6rem) 0;
  border-bottom: 1px solid var(--border);
}
.carousel-label {
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 clamp(1.5rem,4vw,4rem);
  margin-bottom: 2.5rem;
}
.swiper { padding: 0 clamp(1.5rem,4vw,4rem) !important; overflow: visible !important; }
.swiper-wrapper { align-items: center; }
.swiper-slide {
  width: min(460px, 80vw);
  height: min(580px, 70vh);
  border-radius: var(--radius-md);
  overflow: hidden;
  filter: grayscale(100%) brightness(0.55) saturate(0);
  transition: filter 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  cursor: none;
  flex-shrink: 0;
}
.swiper-slide-active {
  filter: grayscale(100%) brightness(1) saturate(0);
  transform: scale(1.02);
}
.swiper-slide img { width:100%; height:100%; object-fit:cover; }

.slide-caption {
  position:absolute; bottom:0; left:0; right:0;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}
.swiper-slide-active .slide-caption { transform: translateY(0); }
.slide-caption h3 { font-family:var(--font-display); font-size:1.3rem; color:#fff; font-weight:400; }
.slide-caption p  { font-family:var(--font-mono); font-size:0.65rem; color:rgba(255,255,255,0.6); margin-top:0.3rem; letter-spacing:0.12em; }

.carousel-controls {
  display:flex; align-items:center; justify-content:space-between;
  padding: 2rem clamp(1.5rem,4vw,4rem) 0;
}
.carousel-btns { display:flex; gap:0.75rem; }
.slide-btn {
  width:48px; height:48px;
  border:1px solid var(--border);
  border-radius:50%;
  background:none;
  color:var(--text-2);
  font-size:1rem;
  display:flex; align-items:center; justify-content:center;
  cursor:none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.slide-btn:hover { border-color:var(--text); background:var(--text); color:var(--accent-inv); }
.slide-counter {
  font-family:var(--font-mono);
  font-size:0.7rem; color:var(--text-3); letter-spacing:0.15em;
}

/* Masonry */
.masonry-section {
  padding: clamp(3rem,6vw,6rem) clamp(1.5rem,4vw,4rem);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.masonry-grid { columns: 3; column-gap: 1rem; }
@media(max-width:900px){ .masonry-grid{ columns:2; } }
@media(max-width:500px){ .masonry-grid{ columns:1; } }

.m-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: none;
}
.m-item img {
  width:100%; display:block;
  filter: grayscale(100%);
  transition: transform 0.6s var(--ease-out-expo), filter 0.5s;
}
.m-item:hover img { transform:scale(1.04); filter:grayscale(60%); }
.m-item__info {
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  justify-content:flex-end;
  padding:1.2rem;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.65));
  opacity:0;
  transition: opacity 0.35s;
}
.m-item:hover .m-item__info { opacity:1; }
.m-item__info h4 { font-family:var(--font-display); font-size:1rem; color:#fff; font-weight:400; }
.m-item__info span { font-family:var(--font-mono); font-size:0.6rem; color:rgba(255,255,255,0.6); letter-spacing:0.12em; }

/* Lightbox */
.lightbox {
  position:fixed; inset:0;
  background:rgba(0,0,0,0.95);
  z-index:8000;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition: opacity 0.4s;
  backdrop-filter:blur(12px);
}
.lightbox.active { opacity:1; pointer-events:all; }
.lightbox img {
  max-width:90vw; max-height:90vh;
  object-fit:contain;
  filter:grayscale(100%);
  border-radius:var(--radius-sm);
  transform:scale(0.96);
  transition: transform 0.5s var(--ease-out-expo);
}
.lightbox.active img { transform:scale(1); }
.lb-close {
  position:absolute; top:1.5rem; right:1.5rem;
  width:48px; height:48px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:50%;
  background:none; color:#fff;
  font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  cursor:none;
  transition: border-color 0.2s, background 0.2s;
}
.lb-close:hover { border-color:#fff; background:rgba(255,255,255,0.1); }

/* ── Responsive helpers ────────────────────────────────────── */
@media(max-width:900px){
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
}
@media(max-width:600px){
  .about-img-badge { right:0.5rem; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .cta-banner { flex-direction:column; text-align:center; }
}
