/* ==========================================================================
   ZEYCAN - OFFICIAL PORTFOLIO STYLESHEET
   Domain: Zeycan.art
   ========================================================================== */

:root {
  --bg-emerald-dark: #060b09;
  --bg-surface: #0d1714;
  --bg-card: #13221e;
  --bg-glass: rgba(6, 11, 9, 0.85);

  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-dark: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.28);
  --emerald-grad: linear-gradient(135deg, #34d399 0%, #10b981 55%, #059669 100%);

  --text-white: #ffffff;
  --text-dim: #cbd5e1;
  --text-muted: #64748b;

  --border-line: rgba(255, 255, 255, 0.08);
  --border-emerald: rgba(16, 185, 129, 0.4);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Playfair Display', -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --trans: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-emerald-dark);
  color: var(--text-dim);
  font-family: var(--font-heading);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

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

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.text-center { text-align: center; }
.text-emerald { color: var(--emerald); }
.text-emerald-glow {
  background: var(--emerald-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-surface { background-color: var(--bg-surface); }

/* Custom Cursor */
.cursor-dot, .cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--emerald);
}

.cursor-outline {
  width: 36px;
  height: 36px;
  border: 1px solid var(--emerald);
  transition: transform 0.12s ease-out;
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-outline { display: none !important; }
}

/* Scroll Progress */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--emerald-grad);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 40px;
  transition: var(--trans);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-emerald {
  background: var(--emerald-grad);
  color: #060b09;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--emerald-glow);
}

.btn-emerald:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

.btn-emerald-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-light);
  border: 1px solid var(--border-emerald);
  border-radius: 30px;
}

.btn-emerald-sm:hover {
  background: var(--emerald);
  color: #060b09;
}
.btn-outline-emerald-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
  background: transparent;
  color: var(--emerald-light);
  border: 1px solid var(--border-emerald);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
}
.btn-outline-emerald-sm:hover {
  background: rgba(16, 185, 129, 0.15);
  color: var(--text-white);
  border-color: var(--emerald);
}
.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: var(--trans);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-outline-emerald {
  border: 1px solid var(--border-line);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-emerald:hover {
  border-color: var(--emerald);
  color: var(--emerald-light);
  transform: translateY(-2px);
}

.btn-ghost-emerald {
  color: var(--emerald-light);
  font-size: 0.95rem;
}

.btn-ghost-emerald:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.btn-block { width: 100%; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 20px 0;
  transition: var(--trans);
}

.site-header.scrolled {
  padding: 12px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-box {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-white);
}

.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--emerald-light);
}

.main-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--emerald);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: var(--text-white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: var(--trans);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 310px;
  max-width: 85vw;
  height: 100vh;
  background: #09120f;
  z-index: 1100;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open { right: 0; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 18px;
}

.mobile-close {
  font-size: 2.2rem;
  color: var(--emerald-light);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0;
}

.mobile-link {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--text-dim);
}

.mobile-link:hover {
  color: var(--emerald-light);
  padding-left: 6px;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-domain {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title-wrap {
  margin-bottom: 50px;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.section-h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.emerald-bar {
  width: 50px;
  height: 3px;
  background: var(--emerald-grad);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  background: radial-gradient(circle at 75% 30%, rgba(16, 185, 129, 0.09) 0%, transparent 60%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.emerald-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--border-emerald);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-light);
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-white);
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dim);
}
.spec-pill i {
  color: var(--emerald);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-showcase {
  display: flex;
  justify-content: center;
}

.emerald-card-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.card-image-box {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-emerald);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px var(--emerald-glow);
  background: var(--bg-surface);
}

.emerald-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.emerald-card-frame:hover .emerald-img {
  transform: scale(1.03);
}

.card-tag-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(6, 11, 9, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-line);
}

.ct-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-white);
}

/* HAKKIMDA SECTION */
.about-grid-emerald {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-emerald-images {
  position: relative;
}

.img-tall {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-line);
  max-width: 380px;
  aspect-ratio: 4 / 5;
}

.img-tall img, .img-overlap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-overlap {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 230px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--bg-emerald-dark);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.about-editorial-lead {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 20px;
}

.emerald-p-lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* SETCARD SECTION */
.setcard-emerald-box {
  max-width: 1050px;
  margin: 0 auto;
}

.setcard-shell {
  background: var(--bg-surface);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 30px var(--emerald-glow);
}

.setcard-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 34px;
  background: #08100d;
  border-bottom: 1px solid var(--border-emerald);
}

.st-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--emerald-light);
}

.st-id {
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--emerald-light);
  margin-left: 12px;
}

.st-agency {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.setcard-body-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  padding: 36px;
}

.setcard-visuals {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sv-portrait, .sv-full {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-line);
}

.sv-portrait img, .sv-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(6, 11, 9, 0.85);
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--emerald-light);
  border: 1px solid var(--border-emerald);
}

.talent-heading {
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.talent-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-white);
}

.talent-spec {
  font-size: 0.82rem;
  color: var(--emerald-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.measurements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.m-cell {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-lbl i {
  color: var(--emerald);
  width: 16px;
}

.m-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
}

.setcard-note-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.snh-icon i {
  color: var(--emerald);
  margin-top: 2px;
}

.setcard-buttons-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* GALERİ SECTION */
.emerald-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  color: var(--text-dim);
  transition: var(--trans);
}

.filter-tab:hover {
  border-color: var(--emerald);
  color: var(--text-white);
}

.filter-tab.active {
  background: var(--emerald-grad);
  color: #060b09;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--emerald-glow);
}

.emerald-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.emerald-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  transition: var(--trans);
}

.emerald-item.hide { display: none; }

.e-item-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.e-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.e-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 11, 9, 0.94) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.emerald-item:hover .e-item-overlay { opacity: 1; }
.emerald-item:hover .e-item-inner img { transform: scale(1.06); }
.emerald-item:hover { border-color: var(--border-emerald); transform: translateY(-4px); }

.eio-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--emerald-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.eio-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.eio-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--emerald);
  color: #060b09;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* İLETİŞİM SECTION */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
}

.booking-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  padding: 40px;
}

.agency-flag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-light);
  font-weight: 700;
  margin-bottom: 16px;
}

.b-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 24px;
}

.b-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.b-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.b-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.b-val {
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 600;
}

.booking-form-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 40px;
}

.bf-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.bf-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.bf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.bf-field label {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}

.bf-field input, .bf-field textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--trans);
}

.bf-field input:focus, .bf-field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 15px var(--emerald-glow);
}

.form-status {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid #22c55e;
  color: #4ade80;
}

/* FOOTER */
.site-footer {
  background: #030605;
  border-top: 1px solid var(--border-line);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-line);
}

.f-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  display: block;
  margin-bottom: 8px;
}

.f-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.f-domain strong { color: var(--emerald-light); }

.footer-col-nav h4, .footer-col-agency h4 {
  font-size: 0.85rem;
  color: var(--emerald-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-nav a {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.footer-col-nav a:hover { color: var(--emerald-light); }

.footer-col-agency p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.back-top {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-line);
  color: var(--emerald-light);
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.back-top:hover {
  background: var(--emerald);
  color: #060b09;
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 5, 0.94);
  backdrop-filter: blur(12px);
}

.lightbox-container {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2.2rem;
}

.lightbox-close:hover { color: var(--emerald-light); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(19, 34, 30, 0.85);
  border: 1px solid var(--border-emerald);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--emerald);
  color: #060b09;
}

.lightbox-prev { left: -65px; }
.lightbox-next { right: -65px; }

.lightbox-img {
  max-width: 80vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-emerald);
}

.lightbox-caption { margin-top: 16px; }

.lightbox-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-white);
}

.lightbox-caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="up"] { transform: translateY(35px); }
[data-reveal="left"] { transform: translateX(-35px); }
[data-reveal="right"] { transform: translateX(35px); }

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Print */
@media print {
  body { background: #fff !important; color: #000 !important; }
  .site-header, .site-footer, .hero-section, .about-section, .lookbook-section, .booking-section, .cursor-dot, .cursor-outline, .scroll-progress-bar, .setcard-buttons-bar, .lightbox-modal {
    display: none !important;
  }
  .setcard-section { padding: 0 !important; }
  .setcard-shell { border: 2px solid #000 !important; box-shadow: none !important; }
  .m-cell, .setcard-top-bar { background: #f8fafc !important; color: #000 !important; }
  .talent-name, .m-val { color: #000 !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 3.5rem; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-showcase { order: -1; }
  .about-grid-emerald { grid-template-columns: 1fr; }
  .setcard-body-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-h1 { font-size: 2.8rem; }
  .emerald-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-row { grid-template-columns: 1fr; }
  .measurements-grid { grid-template-columns: 1fr; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.2rem; }
  .emerald-gallery-grid { grid-template-columns: 1fr; }
}
