:root {
  --black: #0a0a0a;
  --graphite: #1a1a1a;
  --graphite-light: #2a2a2a;
  --burgundy: #2c0e14;
  --burgundy-light: #4a1a24;
  --gold: #c9a84c;
  --gold-light: #e0c26a;
  --gold-dark: #a8882e;
  --copper: #b87333;
  --warm-white: #f5f0e8;
  --text-light: #e8e0d6;
  --text-muted: #9a9086;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 60px rgba(0, 0, 0, 0.6);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* ============================
   BUTTONS
   ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(245, 240, 232, 0.3);
}

.btn-ghost:hover {
  border-color: var(--text-light);
  background: rgba(245, 240, 232, 0.08);
}

.btn-full {
  width: 100%;
}

/* ============================
   HEADER
   ============================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .header-inner {
    height: 80px;
  }
}

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color var(--transition);
}

.logo:hover {
  color: var(--gold-light);
}

@media (min-width: 768px) {
  .logo {
    font-size: 34px;
  }
}

.nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
}

.nav.active {
  display: flex;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light);
  padding: 10px 20px;
  transition: color var(--transition);
  letter-spacing: 0.03em;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-cta {
  display: none;
  margin-top: 16px;
}

.nav.active .nav-cta {
  display: inline-flex;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    gap: 4px;
  }

  .nav-list {
    flex-direction: row;
    gap: 2px;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 14px;
    font-weight: 400;
    color: var(--text-muted);
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 0;
    margin-left: 16px;
    padding: 10px 22px;
    font-size: 13px;
  }

  .menu-toggle {
    display: none;
  }
}

/* ============================
   HERO
   ============================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1600&q=85') center center / cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(44, 14, 20, 0.6) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  margin: 24px auto 0;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.85);
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

@media (min-width: 600px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.hero-scroll-indicator span {
  display: block;
  width: 20px;
  height: 34px;
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ============================
   TRUST BAR
   ============================ */

.trust-bar {
  background: var(--graphite);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  padding: 16px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-dot {
  color: var(--gold);
  font-size: 8px;
}

/* ============================
   SECTIONS
   ============================ */

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

@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

.section-dark {
  background: var(--black);
}

.section-warm {
  background: var(--graphite);
  position: relative;
}

.section-warm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 10px;
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

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

/* ============================
   CARDS
   ============================ */

.card-grid {
  display: grid;
  gap: 20px;
}

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

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

@media (min-width: 600px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--graphite-light);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card-hover:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-accent {
  border-left: 3px solid var(--gold);
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 16px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.15) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background var(--transition);
}

.card-hover:hover .card-img-overlay {
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.05) 100%);
}

.card-img-overlay .card-title {
  font-size: 22px;
  margin-bottom: 0;
}

/* ============================
   WEEKEND PROGRAM BADGE
   ============================ */

.vikend-program-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.badge-sep {
  color: rgba(201, 168, 76, 0.3);
}

/* ============================
   CAFFE SECTION
   ============================ */

.caffe-layout {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .caffe-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.caffe-features {
  margin-top: 24px;
}

.caffe-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  font-size: 15px;
  color: var(--text-light);
}

.caffe-features li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.caffe-image {
  position: relative;
}

.caffe-img-frame {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
}

.caffe-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  transform: translate(12px, 12px);
  z-index: -1;
}

/* ============================
   GALLERY
   ============================ */

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

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: rgba(10, 10, 10, 0.6);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============================
   TRUST / POVERENJE
   ============================ */

.trust-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.trust-item {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.trust-item:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.03);
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.trust-label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============================
   KONTAKT
   ============================ */

.kontakt-layout {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .kontakt-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.kontakt-details {
  margin: 32px 0;
}

.kontakt-block {
  margin-bottom: 24px;
}

.kontakt-block h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.kontakt-block p,
.kontakt-block li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.kontakt-link {
  color: var(--text-light);
  transition: color var(--transition);
}

.kontakt-link:hover {
  color: var(--gold);
}

.kontakt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kontakt-form-wrapper {
  background: var(--graphite-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 24px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--gold);
}

.form-input:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* ============================
   FOOTER
   ============================ */

.footer {
  background: var(--graphite);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================
   MOBILE STICKY CTA
   ============================ */

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  z-index: 900;
}

.mobile-sticky-cta .btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 13px;
}

.mobile-sticky-cta .btn-outline {
  background: rgba(201, 168, 76, 0.08);
}

@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }
}

/* ============================
   RESPONSIVE FIXES
   ============================ */

@media (max-width: 359px) {
  .hero-title {
    font-size: 28px;
  }

  .container {
    padding: 0 16px;
  }

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

  .gallery-item--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .card {
    padding: 20px 16px;
  }

  .form-row-inline {
    grid-template-columns: 1fr;
  }
}

/* ============================
   ANIMATIONS
   ============================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   LIGHTBOX
   ============================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ============================
   PARALLAX WAVE / RHYTHM LINES
   ============================ */

.wave-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}