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

:root {
  --bg: #080808;
  --bg2: #0d0d0d;
  --white: #f5f5f5;
  --muted: rgba(245,245,245,0.38);
  --accent: #C8A96E;
  --accent2: #e2c99a;
  --border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

/* Accessibility */
:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

/* Custom cursor — desktop only */
#cursor, #cursor-ring {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  #cursor {
    display: block;
    position: fixed;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
  }
  #cursor-ring {
    display: block;
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(200,169,110,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
  }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 52px;
  border-bottom: 1px solid var(--border);
}
.logo {
  text-decoration: none;
  position: relative;
  z-index: 101;
  display: inline-flex;
  align-items: center;
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transform-origin: left center;
}
.logo-text span { color: var(--accent); }
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
nav.scrolled .logo-text {
  opacity: 0;
  transform: translateY(-50%) scale(0.3);
  pointer-events: none;
}
nav.scrolled .logo-img {
  opacity: 1;
  transform: scale(1);
}
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-size: 11px; font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 11px; font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 10px 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  position: relative;
  z-index: 101;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* HERO */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 52px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-color: #0a0908;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(200,169,110,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,169,110,0.03) 0%, transparent 50%),
    linear-gradient(160deg, rgba(15,14,11,0.48) 0%, rgba(8,8,8,0.38) 50%, rgba(6,6,8,0.52) 100%);
}

.hero-grid {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, transparent 30%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 30%, black 100%);
}

.hero-content { position: relative; z-index: 3; max-width: 800px; }

.hero-eyebrow {
  font-size: 10px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
  display: block;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px; /* fallback */
  font-size: clamp(68px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero-title .line2 { color: var(--accent); }

.hero-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent);
  color: var(--bg);
  padding: 16px 36px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.25s; flex-shrink: 0; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  font-size: 11px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
  display: flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { color: var(--white); }

.scroll-hint {
  position: absolute; right: 52px; bottom: 80px;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.18em; color: var(--muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* STATS */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.02em;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 10px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* SECTION common */
section { padding: 120px 52px; }

.section-eyebrow {
  font-size: 10px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px; /* fallback */
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 20px;
}

/* SERVICES */
.services { background: var(--bg); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}
.services-desc {
  max-width: 360px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
/* 6 stĺpcov: prvé 3 karty zaberajú po 2 (rad po troch),
   posledné 2 karty po 3 (rad po dvoch) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.services-grid .service-card { grid-column: span 2; }
.services-grid .service-card:nth-child(n+4) { grid-column: span 3; }
.service-card {
  background: var(--bg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
  z-index: 3;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4,4,4,0.42);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover { background: #0f0f0f; }
.service-card:hover::before { width: 100%; }
.service-card:hover::after { opacity: 1; }
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  opacity: 0.6;
}
.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.service-tag {
  display: inline-block;
  margin-top: 24px;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(200,169,110,0.25);
  padding: 4px 12px;
}
.service-num, .service-icon, .service-name, .service-desc, .service-tag {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85);
}
.service-video {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
  transition: opacity 0.55s ease;
}
.service-card:hover .service-video { opacity: 1; }

.service-slide {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.service-slide.preview { opacity: 0.22; }
.service-slide.active { opacity: 1; }

@media (hover: none) {
  .service-video { opacity: 0.4; }
  .service-slide.preview { opacity: 0.4; }
  .service-card::after { opacity: 0.75; }
  .service-card.tapped .service-video { opacity: 1; }
  .service-card.tapped::after { opacity: 1; }
  .service-card.tapped .service-slide.active { opacity: 1; }
  .service-card.tapped .service-slide.preview { opacity: 0; }
}

/* HERO VIDEO */
.hero-video {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* PORTFOLIO */
.portfolio { background: var(--bg2); padding-bottom: 0; }
.portfolio-header { margin-bottom: 64px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: #111;
}
.portfolio-item:first-child { grid-row: span 2; }

.portfolio-item-inner {
  width: 100%; height: 100%;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.portfolio-item:first-child .portfolio-item-inner { min-height: 580px; }

/* Portfolio images */
.portfolio-img {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}
.portfolio-item:hover .portfolio-img { transform: scale(1.05); }

/* Gradient fallback when no image */
.portfolio-item:nth-child(1) .portfolio-item-inner {
  background: linear-gradient(160deg, #0f1215 0%, #1a2028 50%, #0a0e12 100%);
}
.portfolio-item:nth-child(2) .portfolio-item-inner {
  background: linear-gradient(160deg, #141210 0%, #201a14 100%);
}
.portfolio-item:nth-child(3) .portfolio-item-inner {
  background: linear-gradient(160deg, #0e1210 0%, #16201a 100%);
}

.portfolio-visual {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}
.portfolio-item:first-child .portfolio-visual { font-size: 120px; }

.portfolio-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  z-index: 2;
}
.portfolio-info { position: relative; z-index: 3; }
.portfolio-category {
  font-size: 9px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.portfolio-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

/* WHY US */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.why-left .section-title { margin-bottom: 32px; }
.why-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 48px;
}
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.why-point:last-child { border-bottom: none; }
.why-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}
.why-point-text { font-size: 13px; color: var(--muted); line-height: 1.7; }
.why-point-text strong { color: var(--white); font-weight: 500; display: block; margin-bottom: 4px; }
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: rgba(200,169,110,0.25);
  transform: translateY(-4px);
}
.why-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.why-card-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-header { margin-bottom: 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonial-card {
  background: var(--bg2);
  padding: 40px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  font-size: 12px; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testimonial-role {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.08em;
}

/* CONTACT */
.contact {
  background: var(--bg);
  padding: 120px 52px;
  position: relative;
  overflow: hidden;
}
.contact-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; /* fallback */
  font-size: clamp(48px, 5.5vw, 88px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.contact-headline span { color: var(--accent); }
.contact-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail:hover { color: var(--accent); }
.contact-detail-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: border-color 0.2s;
}
.contact-detail:hover .contact-detail-icon { border-color: rgba(200,169,110,0.4); }

/* Form */
.contact-form-wrap { position: relative; }

.contact-form {
  display: flex;
  flex-direction: column;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.form-group label {
  font-size: 10px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.form-group:focus-within label { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 10px 2px 12px;
  outline: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.45s ease, border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,245,245,0.18);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: transparent;
  background-size: 100% 1px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f5f5f566' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(var(--accent), var(--accent));
  background-size: 12px 7px, 0% 1px;
  background-position: right 4px center, left bottom;
  background-repeat: no-repeat, no-repeat;
  padding-right: 28px;
  cursor: pointer;
}
.form-group select:focus {
  background-size: 12px 7px, 100% 1px;
}
.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-row .form-group { margin-bottom: 0; }
.form-row-wrap { margin-bottom: 30px; }

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  padding: 17px 36px;
  font-size: 12px;
}
.form-submit:disabled {
  opacity: 0.6;
  transform: none !important;
  cursor: not-allowed;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  border: 1px solid;
  text-align: center;
}
.form-status.success {
  display: block;
  border-color: rgba(200,169,110,0.4);
  color: var(--accent);
}
.form-status.error {
  display: block;
  border-color: rgba(232,112,112,0.4);
  color: #e87070;
}

/* FOOTER */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 52px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}
.logo-footer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}
.logo-footer span { color: var(--accent); }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 10px; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: rgba(245,245,245,0.2);
  letter-spacing: 0.08em;
}

/* REVEAL animations — hidden only when JS confirms support (html.js-anim),
   so old browsers without IntersectionObserver still see all content */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-anim .reveal {
  opacity: 0;
  transform: translateY(30px);
}
.js-anim .reveal.from-top { transform: translateY(-30px); }
.js-anim .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* GALLERY HINT */
.portfolio-has-gallery { cursor: pointer; }
.portfolio-gallery-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 4;
  background: rgba(8,8,8,0.72);
  border: 1px solid rgba(200,169,110,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 8px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}
.portfolio-has-gallery:hover .portfolio-gallery-hint,
.portfolio-has-gallery:focus .portfolio-gallery-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(4,4,4,0.97);
  display: none;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  padding: 10px; z-index: 10;
  transition: color 0.2s; line-height: 0;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-main {
  flex: 1; display: flex; align-items: center;
  min-height: 0; padding: 58px 16px 10px;
  gap: 0;
}
.lightbox-nav {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  padding: 16px 10px; flex-shrink: 0;
  transition: color 0.2s, transform 0.2s; line-height: 0;
}
.lightbox-nav:hover { color: var(--accent); }
.lightbox-prev:hover { transform: translateX(-3px); }
.lightbox-next:hover { transform: translateX(3px); }
.lightbox-view {
  flex: 1; display: flex;
  align-items: center; justify-content: center;
  min-height: 0; height: 100%; overflow: hidden;
}
.lightbox-view img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; display: block;
  animation: lbIn 0.22s ease;
}
.lightbox-view iframe {
  width: 100%;
  max-width: 880px; /* fallback */
  max-width: min(880px, 100%);
  aspect-ratio: 16/9;
  border: none;
  animation: lbIn 0.22s ease;
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-footer {
  padding: 10px 40px 22px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; flex-shrink: 0;
}
.lightbox-meta {
  display: flex; align-items: center; gap: 16px;
}
.lightbox-title {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}
.lightbox-counter {
  font-size: 10px; color: rgba(245,245,245,0.2);
  letter-spacing: 0.1em;
}
.lightbox-thumbs {
  display: flex; gap: 6px;
  flex-wrap: wrap; justify-content: center;
}
.lightbox-thumb {
  width: 62px; height: 42px; object-fit: cover;
  opacity: 0.38; cursor: pointer;
  transition: opacity 0.2s;
  outline: 1px solid transparent; outline-offset: 2px;
}
.lightbox-thumb:hover { opacity: 0.65; }
.lightbox-thumb.active { opacity: 1; outline-color: var(--accent); }
.lightbox-thumb-video {
  width: 62px; height: 42px;
  background: #181818; border: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.38; cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s; flex-shrink: 0;
}
.lightbox-thumb-video:hover { opacity: 0.65; }
.lightbox-thumb-video.active { opacity: 1; border-color: var(--accent); }

@media (max-width: 600px) {
  .lightbox-main { padding: 54px 4px 8px; }
  .lightbox-nav { padding: 12px 6px; }
  .lightbox-footer { padding: 8px 14px 18px; }
  .lightbox-thumb, .lightbox-thumb-video { width: 48px; height: 34px; }
}

/* ── RESPONSIVE ── */

@media (max-width: 1100px) {
  .why-grid { gap: 60px; }
  .contact-inner { gap: 60px; }
  .footer-grid { gap: 48px; }
  .service-card { padding: 40px 32px; }
}

@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }

  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--muted);
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a::after { display: none; }

  section { padding: 80px 24px; }
  .stats-strip { padding: 28px 24px; }
  footer { padding: 48px 24px 32px; }

  .hero { padding: 0 24px 60px; }
  .hero-title { font-size: 72px; font-size: clamp(56px, 14vw, 90px); }
  .scroll-hint { display: none; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; padding: 0; }
  .stat-num { font-size: 40px; }

  .services-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card,
  .services-grid .service-card:nth-child(n+4) { grid-column: auto; }
  .service-card { padding: 32px 28px; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-row: span 1; }
  .portfolio-item:first-child .portfolio-item-inner { min-height: 380px; }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-right { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 52px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 52px; }
  .hero-sub { font-size: 13px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }

  .stats-strip { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-row-wrap { margin-bottom: 0; }
  .form-row .form-group { margin-bottom: 20px; }

  .why-right { grid-template-columns: 1fr 1fr; }

  .contact-headline { font-size: 56px; font-size: clamp(42px, 12vw, 72px); }
}

@media (max-width: 400px) {
  .hero-title { font-size: 44px; }
  .stats-strip { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr 1fr; }
}

/* PORTFOLIO CTA (homepage) */
.portfolio-cta {
  display: flex;
  justify-content: center;
  padding: 72px 24px 96px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 16px 36px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-outline:hover { background: var(--accent); color: var(--bg); transform: translateY(-2px); }
.btn-outline svg { transition: transform 0.25s; flex-shrink: 0; }
.btn-outline:hover svg { transform: translateX(4px); }

/* PORTFOLIO PAGE */
.portfolio-page { padding-top: 160px; min-height: 100vh; }
.portfolio-page .portfolio-header { margin-bottom: 40px; }
.portfolio-page .portfolio-grid { grid-template-rows: none; }
.portfolio-page .portfolio-item:first-child { grid-row: auto; }
.portfolio-page .portfolio-item-inner,
.portfolio-page .portfolio-item:first-child .portfolio-item-inner { min-height: 360px; }
.portfolio-page .portfolio-item:first-child .portfolio-visual { font-size: 64px; }

.filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 11px 26px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-tab:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: var(--bg); }

@media (max-width: 768px) {
  .portfolio-page { padding-top: 120px; }
  .portfolio-page .portfolio-item-inner,
  .portfolio-page .portfolio-item:first-child .portfolio-item-inner { min-height: 300px; }
}

/* FOOTER LEGAL LINKS */
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--accent); }

/* LEGAL / TEXT PAGES */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 180px;
  padding-bottom: 100px;
}
.legal-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px; /* fallback */
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.legal-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  margin: 40px 0 12px;
  color: var(--white);
}
.legal-page p, .legal-page li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,245,245,0.72);
  margin-bottom: 14px;
}
.legal-page a { color: var(--accent); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-operator {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* FAQ ACCORDION */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: '+';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245,245,245,0.72);
  padding-bottom: 24px;
  max-width: 640px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 500;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(16px);
  opacity: 0;
  animation: bannerIn 0.5s ease 0.8s forwards;
}
@keyframes bannerIn {
  to { transform: none; opacity: 1; }
}
.cookie-banner p {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(245,245,245,0.72);
}
.cookie-banner a { color: var(--accent); text-decoration: none; }
.cookie-banner a:hover { text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn {
  padding: 11px 24px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}
.cookie-btn-accept {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--bg);
}
.cookie-btn-accept:hover { background: var(--accent2); border-color: var(--accent2); }
.cookie-btn-decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}
.cookie-btn-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }

/* CENTERED CONTACT SECTION */
.contact-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  gap: 0;
}
.contact-centered .contact-sub { max-width: 460px; margin-bottom: 36px; }
.contact-actions { margin-bottom: 56px; }
.contact-actions .btn-primary { padding: 18px 48px; font-size: 12px; }
.contact-details-row {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

/* CONTACT MODAL */
.contact-modal {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4,4,4,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
}
.contact-modal.open { display: flex; }
.contact-modal-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 48px;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.contact-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.05em;
  margin: 4px 0 32px;
  color: var(--white);
}
.contact-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.contact-modal-close:hover { color: var(--white); }

@media (max-width: 600px) {
  .contact-modal { padding: 12px; }
  .contact-modal-panel { padding: 36px 24px; max-height: calc(100vh - 24px); }
  .contact-modal-title { font-size: 32px; }
  .contact-details-row { flex-direction: column; align-items: center; gap: 14px; }
}

/* SERVICE CHOICES — multi-select chips */
.service-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}
.service-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.service-choice span {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
  -webkit-user-select: none;
}
.service-choice span:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.service-choice input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.service-choice input:focus-visible + span {
  outline: 1px solid var(--accent);
  outline-offset: 2px;
}

/* MOBILE / iOS POLISH */
/* iOS Safari zoomuje stránku pri fokuse na input s font-size < 16px */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
  .legal-page { padding-top: 140px; }
}
/* iOS: 100vh presahuje viditeľnú plochu kvôli lište prehliadača — svh meria skutočnú */
@supports (height: 100svh) {
  .hero { height: 100svh; }
  .contact-modal-panel { max-height: calc(100svh - 48px); }
  @media (max-width: 600px) {
    .contact-modal-panel { max-height: calc(100svh - 24px); }
  }
}

/* PACKAGES */
.packages { background: var(--bg); }
.packages-header { margin-bottom: 64px; }
.packages .section-title span { color: var(--accent); }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr; }
}

.tier-card {
  background: var(--bg2);
  padding: 40px 30px;
  cursor: pointer;
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: none;
  color: inherit;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.tier-card:hover { background: #131313; }
.tier-card.is-best {
  background: linear-gradient(180deg, rgba(200,169,110,0.1), transparent 40%), var(--bg2);
}
.tier-card.is-best:hover {
  background: linear-gradient(180deg, rgba(200,169,110,0.14), transparent 40%), #131313;
}

.tier-index {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-bottom: 22px;
}
.tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.tier-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.tier-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.tier-price-from {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--white);
  letter-spacing: 0.03em;
}
.tier-tagline {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 24px;
}
.tier-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  transition: color 0.25s;
}
.tier-arrow { color: var(--accent); transition: transform 0.2s ease; }
.tier-card:hover .tier-link { color: var(--white); }
.tier-card:hover .tier-arrow { transform: translateX(5px); }

.packages-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* Package modal */
.package-modal-panel { max-width: 480px; }
.pkg-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin: -20px 0 14px;
}
.pkg-tagline {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 26px;
}
.pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(245,245,245,0.85);
  line-height: 1.5;
}
.pkg-check { color: var(--accent); font-weight: 600; flex-shrink: 0; }
.pkg-cta { width: 100%; justify-content: center; }

/* ── LEGACY BROWSER FALLBACKS (Safari < 14) ──
   `inset` je podporovaný od Safari 14.1 — rovnako ako flex `gap`,
   takže slúži ako spoľahlivý test na staré prehliadače. */
@supports not (inset: 0) {
  /* grid gap → grid-gap (Safari 10.1–11) */
  .stats-strip { grid-gap: 24px; }
  .services-grid { grid-gap: 1px; }
  .portfolio-grid { grid-gap: 2px; }
  .why-grid { grid-gap: 100px; }
  .why-right { grid-gap: 16px; }
  .testimonials-grid { grid-gap: 1px; }
  .contact-inner { grid-gap: 100px; }
  .form-row { grid-gap: 28px; }
  .footer-grid { grid-gap: 80px; }
  .tiers-grid { grid-gap: 1px; }

  /* flex gap → margins */
  .nav-links li + li { margin-left: 40px; }
  .hero-actions > * + * { margin-left: 32px; }
  .hero-eyebrow::before, .section-eyebrow::before { margin-right: 14px; }
  .btn-primary svg, .btn-outline svg { margin-left: 12px; }
  .btn-ghost svg { margin-right: 8px; }
  .why-point { margin-bottom: 24px; }
  .why-dot { margin-right: 16px; }
  .footer-links li + li { margin-top: 10px; }
  .footer-legal a + a { margin-left: 18px; }
  .contact-details-row .contact-detail + .contact-detail { margin-left: 32px; }
  .contact-detail-icon { margin-right: 14px; }
  .form-group label { margin-bottom: 10px; }
  .service-choices .service-choice { margin: 0 10px 10px 0; }
  .cookie-banner p { margin-bottom: 16px; }
  .cookie-banner-actions .cookie-btn + .cookie-btn { margin-left: 12px; }
  .filter-tabs .filter-tab { margin: 0 10px 10px 0; }
  .tier-price-from { margin-right: 8px; }
  .tier-link .tier-arrow { margin-left: 8px; }
  .pkg-list li { margin-bottom: 11px; }
  .pkg-check { margin-right: 12px; }
  .lightbox-thumbs .lightbox-thumb,
  .lightbox-thumbs .lightbox-thumb-video { margin: 0 3px; }
  .lightbox-meta .lightbox-counter { margin-left: 16px; }
}

/* aspect-ratio až od Safari 15 — starším dáme pevnú výšku videa */
@supports not (aspect-ratio: 16 / 9) {
  .lightbox-view iframe { height: 60vh; }
}
