/* ============================
   DJ AXIOM — GLOBAL STYLESHEET
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Space+Mono:wght@400;700&display=swap');

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

:root {
  --black:          #080808;
  --dark:           #111111;
  --charcoal:       #1a1a1a;
  --charcoal-mid:   #242424;
  --charcoal-light: #303030;
  --border:         #282828;
  --border-light:   #383838;
  --gray-dark:      #555555;
  --gray:           #7a7a7a;
  --gray-light:     #aaaaaa;
  --silver:         #cccccc;
  --white:          #efefef;
  --pure-white:     #ffffff;

  --font-display: 'Bebas Neue', cursive;
  --font-body:    'Barlow', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --nav-h:  80px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --fast:   0.25s;
  --mid:    0.45s;
  --slow:   0.7s;
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9000;
}

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--charcoal-light); border-radius: 2px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); letter-spacing: 0.04em; line-height: 1; }

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  border: 1px solid currentColor;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-white {
  color: var(--pure-white);
  border-color: var(--pure-white);
}
.btn-white:hover { background: var(--pure-white); color: var(--black); }

.btn-dark {
  color: var(--black);
  background: var(--pure-white);
  border-color: var(--pure-white);
}
.btn-dark:hover { background: transparent; color: var(--pure-white); }

.btn-outline {
  color: var(--gray-light);
  border-color: var(--border-light);
}
.btn-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.04); }

/* ─── SECTION COMMONS ─── */
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  margin-bottom: 64px;
}
.section-header .label { margin-bottom: 16px; display: block; }
.section-header h2 { font-size: clamp(3rem, 6vw, 5rem); color: var(--white); }
.section-header p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--gray-light);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.75;
}

/* ─── DIVIDER LINE ─── */
.line-accent {
  width: 48px;
  height: 2px;
  background: var(--white);
  margin: 20px 0;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  height: var(--nav-h);
  transition: background var(--mid) var(--ease), border-color var(--mid) var(--ease);
}
.header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}
.brand-dj   { color: var(--pure-white); }
.brand-name { color: var(--gray);       }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--fast) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width var(--fast) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  border: 1px solid var(--border-light);
  color: var(--silver);
  transition: all var(--fast) var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s var(--ease);
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s var(--ease);
}
.slide.active .slide-bg { transform: scale(1); }

.slide-1 .slide-bg { background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(42,42,42,0.6) 0%, rgba(10,10,10,0.85) 70%), linear-gradient(135deg, rgba(26,26,26,0.7), rgba(5,5,5,0.9)); }
.slide-2 .slide-bg { background: radial-gradient(ellipse 90% 70% at 30% 60%, rgba(36,36,36,0.6) 0%, rgba(6,6,6,0.85) 70%), linear-gradient(225deg, rgba(30,30,30,0.7), rgba(4,4,4,0.9)); }
.slide-3 .slide-bg { background: radial-gradient(ellipse 70% 80% at 60% 30%, rgba(48,48,48,0.6) 0%, rgba(8,8,8,0.85) 65%), linear-gradient(160deg, rgba(28,28,28,0.7), rgba(6,6,6,0.9)); }

/* pseudo-light circles on slides */
.slide-1 .slide-bg::before { content:''; position:absolute; width:500px; height:500px; border-radius:50%; background:rgba(255,255,255,0.03); top:-100px; right:10%; filter:blur(80px); }
.slide-2 .slide-bg::before { content:''; position:absolute; width:600px; height:600px; border-radius:50%; background:rgba(255,255,255,0.025); bottom:-150px; left:5%; filter:blur(100px); }
.slide-3 .slide-bg::before { content:''; position:absolute; width:400px; height:400px; border-radius:50%; background:rgba(200,200,200,0.04); top:50px; right:25%; filter:blur(60px); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0.25) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.slide-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease) 0.2s, transform 0.7s var(--ease) 0.2s;
}
.slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }

.slide-title {
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.92;
  color: var(--pure-white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease) 0.35s, transform 0.7s var(--ease) 0.35s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-light);
  margin-bottom: 44px;
  max-width: 420px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease) 0.5s, transform 0.7s var(--ease) 0.5s;
}
.slide.active .slide-sub { opacity: 1; transform: translateY(0); }

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease) 0.65s, transform 0.7s var(--ease) 0.65s;
}
.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
}

.slider-dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background var(--fast) var(--ease), width var(--fast) var(--ease);
}
.dot.active { background: var(--white); width: 44px; }

.slider-arrows {
  position: absolute;
  right: 40px;
  bottom: 44px;
  z-index: 10;
  display: flex;
  gap: 12px;
}
.arrow-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 1.1rem;
  transition: all var(--fast) var(--ease);
}
.arrow-btn:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.06); }

.slide-number {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray-dark);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

/* ═══════════════════════════════════════
   ABOUT TEASER (index)
═══════════════════════════════════════ */
.about-teaser {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 580px;
}
.about-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #242424, #111);
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255,255,255,0.06), transparent);
}
.photo-frame {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border: 1px solid var(--border-light);
  pointer-events: none;
}
.photo-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

/* silhouette svg placeholder */
.dj-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  opacity: 0.18;
}

.about-text { }
.about-text .label { display: block; margin-bottom: 16px; }
.about-text h2 { font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 24px; }
.about-text p {
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-top: 6px;
}

.client-logo img {
  max-width: 180px;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════
   SERVICES TEASER (index)
═══════════════════════════════════════ */
.services-teaser {
  background: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--border);
}
.service-card {
  padding: 44px 36px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  transition: background var(--fast) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.03);
  opacity: 0;
  transition: opacity var(--fast) var(--ease);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--charcoal-mid); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--gray);
}
.service-card h3 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 300;
}
.service-arrow {
  display: inline-flex;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray-dark);
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  transition: color var(--fast) var(--ease);
}
.service-card:hover .service-arrow { color: var(--white); }
.service-arrow::after {
  content: '→';
  transition: transform var(--fast) var(--ease);
}
.service-card:hover .service-arrow::after { transform: translateX(6px); }

/* ═══════════════════════════════════════
   LOGO CAROUSEL
═══════════════════════════════════════ */
.carousel-section {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  overflow: hidden;
}
.carousel-label {
  text-align: center;
  margin-bottom: 44px;
}
.carousel-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.carousel-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: carousel-scroll 26s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  border-right: 1px solid var(--border);
  min-width: 180px;
  transition: all var(--fast) var(--ease);
}
.client-logo:hover { opacity: 1; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  color: var(--gray-dark);
  white-space: nowrap;
  transition: color var(--fast) var(--ease);
}
.client-logo:hover .logo-text { color: var(--silver); }

/* ═══════════════════════════════════════
   PAGE HERO BANNER (inner pages)
═══════════════════════════════════════ */
.page-hero {
  padding-top: var(--nav-h);
  height: 45vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  width: 100%;
}
.page-hero-content .label { display: block; margin-bottom: 14px; }
.page-hero-content h1 { font-size: clamp(4rem, 8vw, 7rem); color: var(--white); }

/* ═══════════════════════════════════════
   BIO PAGE
═══════════════════════════════════════ */
.bio-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.bio-text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 24px;
}
.bio-text p.lead {
  font-size: 1.25rem;
  color: var(--silver);
  font-weight: 400;
}

.bio-sidebar {}
.sidebar-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-list {}
.sidebar-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list .key { color: var(--gray); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.sidebar-list .val { color: var(--silver); }

.timeline {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.timeline h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 48px; }
.timeline-items {}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1px 1fr;
  gap: 0 28px;
  margin-bottom: 0;
}
.tl-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gray-dark);
  padding-top: 2px;
  text-align: right;
}
.tl-line {
  background: var(--border);
  position: relative;
}
.tl-line::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--charcoal-light);
  border: 1px solid var(--border-light);
}
.tl-body {
  padding-bottom: 44px;
  padding-top: 2px;
}
.tl-body h4 { font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
.tl-body p  { font-size: 0.9rem; color: var(--gray); font-weight: 300; line-height: 1.75; }

/* Genres Tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border-light);
  color: var(--gray-light);
  transition: all var(--fast) var(--ease);
}
.tag:hover { border-color: var(--white); color: var(--white); }

/* ═══════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.svc-card {
  padding: 52px 48px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  transition: background var(--fast) var(--ease);
  position: relative;
}
.svc-card:hover { background: var(--charcoal-mid); }
.svc-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  transition: color var(--mid) var(--ease);
}
.svc-card:hover .svc-num { color: var(--charcoal-light); }
.svc-card h3 { font-size: 2.2rem; color: var(--white); margin-bottom: 16px; }
.svc-card p  { font-size: 0.92rem; color: var(--gray); line-height: 1.8; font-weight: 300; }
.svc-price {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.process-section { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--border);
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
.process-step p  { font-size: 0.88rem; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* CTA Band */
.cta-band {
  padding: 90px 0;
  text-align: center;
  background: var(--dark);
}
.cta-band h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 24px; }
.cta-band p { color: var(--gray-light); font-weight: 300; margin-bottom: 40px; font-size: 1.05rem; }

/* ═══════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════ */
.gallery-filter {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--border);
  color: var(--gray-dark);
  transition: all var(--fast) var(--ease);
}
.filter-btn:hover { border-color: var(--border-light); color: var(--gray-light); }
.filter-btn.active { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.04); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--charcoal);
}
.gallery-item.tall   { aspect-ratio: 1/1.6; }
.gallery-item.wide   { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--mid) var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  opacity: 0;
  transition: opacity var(--fast) var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  padding: 0 20px;
}
.gallery-overlay-cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Gallery placeholder backgrounds */
.gal-bg-1 { background: linear-gradient(135deg, #1a1a1a, #0a0a0a); }
.gal-bg-2 { background: linear-gradient(225deg, #222, #0d0d0d); }
.gal-bg-3 { background: linear-gradient(160deg, #1c1c1c, #090909); }
.gal-bg-4 { background: linear-gradient(200deg, #202020, #0b0b0b); }
.gal-bg-5 { background: linear-gradient(120deg, #191919, #080808); }
.gal-bg-6 { background: linear-gradient(300deg, #1e1e1e, #0c0c0c); }
.gal-bg-7 { background: linear-gradient(170deg, #212121, #0a0a0a); }
.gal-bg-8 { background: linear-gradient(240deg, #1b1b1b, #080808); }

.gallery-ph {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gallery-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(255,255,255,0.05), transparent 70%);
}

/* Gallery placeholder wrapper */
.gal-ph-wrap {
  position: absolute;
  inset: 0;
}
.gal-ph-wrap .img-ph {
  border: 1px dashed var(--border-light);
}
.gal-ph-wrap .gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}
.gal-ph-wrap .gallery-photo[src=""],
.gal-ph-wrap .gallery-photo:not([src]) { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fast) var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content {
  max-width: 900px;
  width: 90%;
  text-align: center;
}
.lightbox-img-wrap {
  aspect-ratio: 16/9;
  background: var(--charcoal);
  margin-bottom: 20px;
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 1.5rem;
  color: var(--gray);
  transition: color var(--fast) var(--ease);
  line-height: 1;
}
.lightbox-close:hover { color: var(--white); }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap {}
.contact-form-wrap h2 { font-size: clamp(2.5rem, 4vw, 3.8rem); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--gray); font-weight: 300; margin-bottom: 44px; font-size: 0.95rem; }

.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gray); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dark); }
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info {}
.info-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 36px;
  margin-bottom: 20px;
}
.info-card h4 { font-size: 1.5rem; margin-bottom: 20px; color: var(--white); }
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 36px;
  height: 36px;
  background: var(--charcoal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.info-text .info-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-dark);
  display: block;
  margin-bottom: 3px;
}
.info-text .info-val {
  font-size: 0.9rem;
  color: var(--silver);
  font-weight: 300;
}

.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  transition: all var(--fast) var(--ease);
}
.social-link:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.05); }

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 20px; }
.form-success h3 { font-size: 2.5rem; margin-bottom: 12px; }
.form-success p  { color: var(--gray); font-weight: 300; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-brand { font-size: 2rem; display: inline-flex; margin-bottom: 20px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; font-weight: 300; line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 28px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-dark);
  font-size: 0.8rem;
  transition: all var(--fast) var(--ease);
}
.footer-social a:hover { border-color: var(--border-light); color: var(--gray-light); }

.footer-col h5 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--gray-dark);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 300;
  transition: color var(--fast) var(--ease);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p, .footer-bottom a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.footer-bottom a:hover { color: var(--gray); }
.footer-bottom p a { color: var(--gray-dark); border-bottom: 1px solid var(--border); padding-bottom: 1px; }
.footer-bottom p a:hover { color: var(--silver); border-color: var(--gray-dark); }

/* ═══════════════════════════════════════
   IMAGE PLACEHOLDERS
═══════════════════════════════════════ */

/* Shared placeholder wrapper — sits behind the <img> */
.img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--charcoal-mid);
  border: 2px dashed var(--border-light);
  z-index: 0;
  pointer-events: none;
  text-align: center;
  padding: 20px;
}
.img-ph-icon {
  font-size: 2.2rem;
  opacity: 0.3;
  line-height: 1;
}
.img-ph-filename {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--charcoal-light);
  padding: 5px 12px;
  border: 1px solid var(--border-light);
}
.img-ph-note {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.img-ph-size {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--border-light);
  margin-top: -6px;
}

/* The actual <img> tag — sits on top; hides placeholder when loaded */
.slide-photo,
.bio-photo-img,
.gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}

/* If image fails / not yet added — placeholder stays visible */
.slide-photo[src=""],
.slide-photo:not([src]),
.bio-photo-img[src=""],
.bio-photo-img:not([src]),
.gallery-photo[src=""],
.gallery-photo:not([src]) {
  display: none;
}

/* ═══════════════════════════════════════
   ANIMATIONS & UTILITIES
═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-teaser-inner     { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap       { max-height: 420px; }
  .services-grid          { grid-template-columns: 1fr 1fr; }
  .services-full-grid     { grid-template-columns: 1fr; }
  .bio-layout             { grid-template-columns: 1fr; }
  .contact-layout         { grid-template-columns: 1fr; }
  .process-steps          { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step           { border-bottom: 1px solid var(--border); }
  .footer-grid            { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid           { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide      { grid-column: span 1; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  :root { --section-padding: 70px; }
  .container { padding: 0 24px; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 28px;
    border-bottom: 1px solid var(--border);
  }
  .nav-link { font-size: 0.9rem; }
  .nav-menu.open .nav-link { font-size: 0.85rem; }

  .section { padding: 70px 0; }
  .services-grid      { grid-template-columns: 1fr; }
  .about-stats        { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 36px; }
  .slider-arrows      { display: none; }
  .gallery-grid       { grid-template-columns: 1fr; }
  .gallery-item.tall  { aspect-ratio: 1; }
  .process-steps      { grid-template-columns: 1fr; }
  .process-step       { border-right: none; }
}

/* ═══════════════════════════════════════
   MUSIC PLAYER — STICKY BAR
═══════════════════════════════════════ */

body.player-active .footer { padding-bottom: calc(72px + 48px); }

.music-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 7500;
  height: 72px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  user-select: none;
}
.music-player.visible { transform: translateY(0); }

/* Track Info */
.mp-track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  min-width: 260px;
  max-width: 280px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  height: 100%;
}
.mp-artwork {
  width: 42px; height: 42px;
  background: var(--charcoal-mid);
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mp-artwork-icon { font-size: 1.1rem; color: var(--gray-dark); transition: opacity 0.3s; }
.mp-artwork.playing .mp-artwork-icon { opacity: 0; }
.mp-artwork-bars {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 3px; padding: 10px 10px 8px;
  opacity: 0; transition: opacity 0.3s;
}
.mp-artwork.playing .mp-artwork-bars { opacity: 1; }
.mp-bar { width: 4px; background: var(--white); border-radius: 2px; height: 4px; }
.mp-artwork.playing .mp-bar:nth-child(1) { animation: mpbar 0.8s ease-in-out infinite; }
.mp-artwork.playing .mp-bar:nth-child(2) { animation: mpbar 0.8s ease-in-out 0.15s infinite; }
.mp-artwork.playing .mp-bar:nth-child(3) { animation: mpbar 0.8s ease-in-out 0.3s infinite; }
.mp-artwork.playing .mp-bar:nth-child(4) { animation: mpbar 0.8s ease-in-out 0.1s infinite; }
@keyframes mpbar { 0%,100%{height:4px} 50%{height:22px} }

.mp-track-info { min-width: 0; }
.mp-title {
  font-family: var(--font-display);
  font-size: 1rem; color: var(--white); letter-spacing: 0.05em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2;
}
.mp-artist {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-dark); margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Controls */
.mp-controls {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 0 24px; height: 100%;
}
.mp-buttons { display: flex; align-items: center; gap: 8px; }
.mp-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.85rem;
  transition: color var(--fast) var(--ease), transform var(--fast) var(--ease);
  border-radius: 50%; flex-shrink: 0;
}
.mp-btn:hover { color: var(--white); transform: scale(1.1); }
.mp-btn.mp-play-btn {
  width: 38px; height: 38px;
  background: var(--white); color: var(--black);
  font-size: 0.9rem; border-radius: 50%; margin: 0 4px;
}
.mp-btn.mp-play-btn:hover { background: var(--silver); transform: scale(1.06); }
.mp-btn.active { color: var(--white); }

.mp-progress-wrap {
  width: 100%; max-width: 500px;
  display: flex; align-items: center; gap: 10px;
}
.mp-time {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.08em; color: var(--gray-dark);
  min-width: 32px; flex-shrink: 0;
}
.mp-time.right { text-align: right; }
.mp-progress {
  flex: 1; height: 3px; background: var(--border-light);
  cursor: pointer; position: relative; border-radius: 2px;
}
.mp-progress-fill {
  height: 100%; background: var(--white); border-radius: 2px;
  width: 0%; transition: width 0.1s linear; position: relative;
}
.mp-progress-fill::after {
  content: ''; position: absolute; right: -5px; top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px; height: 10px;
  background: var(--white); border-radius: 50%;
  transition: transform var(--fast) var(--ease);
}
.mp-progress:hover .mp-progress-fill::after { transform: translateY(-50%) scale(1); }

/* Volume & Extras */
.mp-extras {
  display: flex; align-items: center; gap: 6px;
  padding: 0 20px; min-width: 200px;
  justify-content: flex-end;
  border-left: 1px solid var(--border);
  height: 100%; flex-shrink: 0;
}
.mp-vol-wrap { display: flex; align-items: center; gap: 8px; }
.mp-vol-icon {
  font-size: 0.85rem; color: var(--gray-dark);
  flex-shrink: 0; cursor: pointer; transition: color var(--fast);
}
.mp-vol-icon:hover { color: var(--gray-light); }
.mp-volume {
  width: 72px; height: 3px; background: var(--border-light);
  cursor: pointer; position: relative; border-radius: 2px;
}
.mp-volume-fill {
  height: 100%; background: var(--gray);
  border-radius: 2px; width: 75%;
}
.mp-playlist-btn {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid var(--border);
  color: var(--gray-dark); margin-left: 8px;
  transition: all var(--fast) var(--ease); white-space: nowrap;
}
.mp-playlist-btn:hover, .mp-playlist-btn.active { border-color: var(--border-light); color: var(--gray-light); }
.mp-close {
  width: 32px; height: 32px; display: flex; align-items: center;
  justify-content: center; color: var(--gray-dark); font-size: 0.75rem;
  transition: color var(--fast); margin-left: 4px; flex-shrink: 0;
}
.mp-close:hover { color: var(--gray-light); }

/* Playlist Drawer */
.mp-playlist {
  position: fixed; bottom: 72px; right: 0;
  width: 340px; max-height: 360px;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light); border-bottom: none;
  z-index: 7400;
  transform: translateY(calc(100% + 72px));
  transition: transform 0.4s var(--ease);
  overflow: hidden; display: flex; flex-direction: column;
}
.mp-playlist.open { transform: translateY(0); }
.mp-playlist-header {
  padding: 16px 20px 12px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.mp-playlist-header span {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-dark);
}
.mp-playlist-header small { font-family: var(--font-mono); font-size: 0.58rem; color: var(--border-light); }
.mp-playlist-items { overflow-y: auto; flex: 1; }
.mp-playlist-items::-webkit-scrollbar { width: 3px; }
.mp-playlist-items::-webkit-scrollbar-track { background: transparent; }
.mp-playlist-items::-webkit-scrollbar-thumb { background: var(--border-light); }
.mp-pl-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background var(--fast);
}
.mp-pl-item:last-child { border-bottom: none; }
.mp-pl-item:hover { background: rgba(255,255,255,0.03); }
.mp-pl-item.active { background: rgba(255,255,255,0.05); }
.mp-pl-num {
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--border-light); min-width: 18px; text-align: right; flex-shrink: 0;
}
.mp-pl-item.active .mp-pl-num { color: var(--white); }
.mp-pl-info { flex: 1; min-width: 0; }
.mp-pl-name {
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--gray-light); letter-spacing: 0.05em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mp-pl-item.active .mp-pl-name { color: var(--white); }
.mp-pl-genre {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-dark); margin-top: 2px;
}
.mp-pl-dur { font-family: var(--font-mono); font-size: 0.6rem; color: var(--gray-dark); flex-shrink: 0; }

/* Open Trigger */
.mp-trigger {
  position: fixed; bottom: 24px; right: 24px; z-index: 7400;
  display: flex; align-items: center; gap: 10px;
  background: rgba(10,10,10,0.95); border: 1px solid var(--border-light);
  backdrop-filter: blur(12px); padding: 10px 18px 10px 12px;
  cursor: pointer; transition: all var(--fast) var(--ease);
}
.mp-trigger:hover { border-color: var(--white); }
.mp-trigger.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
.mp-trigger-icon {
  width: 32px; height: 32px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--black); flex-shrink: 0;
}
.mp-trigger-label { font-family: var(--font-display); font-size: 0.9rem; color: var(--white); letter-spacing: 0.06em; line-height: 1.1; }
.mp-trigger-sub { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-dark); }

@media (max-width: 768px) {
  .mp-track   { min-width: 0; max-width: 160px; padding: 0 12px; }
  .mp-extras  { display: none; }
  .mp-controls { padding: 0 12px; }
  .mp-playlist { width: 100%; right: 0; left: 0; }
  body.player-active .footer { padding-bottom: calc(72px + 80px); }
}
