/* ── RESET & VARIABLES ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #e8701a;
  --orange2: #f08030;
  --orange-lt: #faa05a;
  --grey: #888888;
  --grey-bg: #b0b0b0;
  --grey-dark: #6a6a6a;
  --bg: #f0ede8;
  --bg-dark: #e4e0d8;
  --bg-deeper: #d6d1c8;
  --white: #ffffff;
  --black: #1a1a1a;
  --text-dark: #2a2a2a;
  --text-mid: #444444;
  --text-lt: #666666;
  --blue-drop: #7ab8d4;
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ── SVG LOGO ── */
.logo-svg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-svg img {
  display: block;
  height: 72px;
  width: auto;
}
.logo-icon {
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 100%;
  height: 100%;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo-text .o-ring {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  vertical-align: super;
  margin-left: 2px;
}
.logo-text em {
  font-style: normal;
  color: var(--orange);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--orange);
  padding: 8px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar,
.topbar a {
  color: var(--white);
  text-decoration: none;
}
.topbar a:hover {
  opacity: 0.8;
}
.topbar-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.tb-pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 2px solid rgba(232, 112, 26, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 36px;
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--orange2) !important;
}
.nav-cta::after {
  display: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.08) brightness(0.55);
}
.hero-bg-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 70% at 25% 40%, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.75) 70%);
}

.hero-art {
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 128px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  inset: 0;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 80px solid rgba(232, 112, 26, 0.13);
  z-index: 0;
  animation: spinSlow 30s linear infinite;
}
.hero-circle2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 4px solid rgba(232, 112, 26, 0.2);
  z-index: 1;
}
@keyframes spinSlow {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-visual {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg {
  width: 100%;
  height: auto;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 30% 25%, rgba(232, 112, 26, 0.20), rgba(232, 112, 26, 0) 70%),
    radial-gradient(60% 60% at 70% 80%, rgba(232, 112, 26, 0.10), rgba(0, 0, 0, 0) 70%);
  filter: blur(0.2px);
  z-index: -1;
}

.hero-visual .hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.45),
    0 10px 26px rgba(232, 112, 26, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  filter: saturate(0.95) contrast(1.05);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 40px 60px 70px;
  max-width: 660px;
  animation: fadeUp 0.7s ease both;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: var(--black);
  margin-bottom: 10px;
}
h1 .line2 {
  color: var(--orange);
  display: block;
}
h1 .line3 {
  color: var(--text-mid);
  font-size: 0.62em;
  display: block;
  font-weight: 700;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-lt);
  margin: 24px 0 36px;
  max-width: 480px;
  line-height: 1.7;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(232, 112, 26, 0.4);
}
.btn-orange:hover {
  background: #d0641a;
  box-shadow: 0 10px 32px rgba(232, 112, 26, 0.55);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid rgba(0, 0, 0, 0.25);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  background: #f5f5f5;
}

.hero-features {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.hf {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 0;
  margin-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.hf:last-child {
  border-right: none;
}
.hf .dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── NUDIMO BANNER ── */
.nudimo-bar {
  background: var(--black);
  padding: 28px 40px;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 0;
  align-items: center;
}
.nudimo-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nudimo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.nudimo-item:last-child {
  border-right: none;
}
.nudimo-item .ni-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.nudimo-item p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.nudimo-item strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 2px;
}

/* ── SECTIONS ── */
section {
  padding: 88px 40px;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 18px;
}
h2 em {
  font-style: normal;
  color: #c85a0a;
}
.section-intro {
  color: var(--text-lt);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* ── USLUGE ── */
#usluge {
  background: var(--bg-dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(232, 112, 26, 0.2);
}
.service-card:hover::after {
  width: 100%;
}
.svc-icon {
  width: 54px;
  height: 54px;
  background: rgba(232, 112, 26, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .svc-icon {
  background: rgba(232, 112, 26, 0.22);
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}
.service-card p {
  color: var(--text-lt);
  font-size: 14px;
  line-height: 1.65;
}

/* ── ZASTO MI ── */
#zasto {
  background: var(--bg);
}
.zasto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-p {
  color: var(--text-lt);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--bg-dark);
  border-radius: 10px;
  border-left: 4px solid var(--orange);
  transition: box-shadow 0.3s;
}
.why-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.why-item .wi-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.why-item h4 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--black);
}
.why-item p {
  color: var(--text-lt);
  font-size: 13px;
  line-height: 1.6;
}

.orange-panel {
  background: var(--orange);
  border-radius: 16px;
  padding: 44px 40px;
  color: var(--white);
  position: sticky;
  top: 120px;
  overflow: hidden;
}
.orange-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.orange-panel::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.panel-logo,
.panel-video {
  position: relative;
  z-index: 2;
}
.panel-video {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.panel-video-el {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #111;
}
.panel-video-mute {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  font-size: 14px;
  z-index: 3;
}
.panel-video-mute:hover {
  background: rgba(0, 0, 0, 0.50);
}
.panel-logo {
  margin-bottom: 30px;
}
.panel-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 900;
  color: white;
}
.panel-why {
  margin-bottom: 24px;
}
.panel-why-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}
.panel-why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.panel-why-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
}
.panel-phone {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 18px;
}
.panel-phone-sub {
  font-size: 12px;
  opacity: 0.75;
  font-weight: 500;
  margin-bottom: 2px;
}
.panel-phone .ph-icon {
  font-size: 24px;
  animation: ring 2.5s infinite;
}
@keyframes ring {
  0%,
  100% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-18deg);
  }
  20% {
    transform: rotate(18deg);
  }
  30% {
    transform: rotate(-9deg);
  }
  40% {
    transform: rotate(9deg);
  }
  50% {
    transform: rotate(0);
  }
}

/* ── PROCES ── */
#proces {
  background: var(--bg-dark);
}
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0,
    var(--orange) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}
.proc-step {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}
.proc-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(232, 112, 26, 0.4);
}
.proc-step h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.proc-step p {
  color: var(--text-lt);
  font-size: 13px;
  line-height: 1.6;
}

/* ── FAQ ── */
#faq {
  background: var(--bg-dark);
}
.faq-wrap {
  max-width: 780px;
}
.faq-item {
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.faq-q:hover {
  background: rgba(232, 112, 26, 0.06);
}
.faq-q .chev {
  color: var(--orange);
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-q.open .chev {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  color: var(--text-lt);
  font-size: 14px;
  line-height: 1.7;
}

/* ── CONTACT ── */
#kontakt {
  background: var(--black);
}
#kontakt h2 {
  color: var(--white);
}
#kontakt h2 em {
  color: rgba(255, 255, 255, 0.7);
}
#kontakt .section-label {
  color: var(--orange);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

#kontakt .section-label {
  margin-bottom: 8px;
}

#kontakt h2 {
  margin-bottom: 10px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 6px;
}
.contact-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 2px;
}
.ci-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.ci-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(232, 112, 26, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(232, 112, 26, 0.2);
}

.ci-ico i {
  display: block;
  line-height: 1;
}
.ci-item h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 3px;
}
.ci-item a,
.ci-item p {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.ci-item a:hover {
  color: var(--orange-lt);
}

.cform {
  background: #242424;
  border-radius: 14px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  margin-top: -6px;
}
.cform h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
}
.fg {
  margin-bottom: 14px;
}
.fg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--orange);
}
.fg textarea {
  min-height: 100px;
  resize: vertical;
}
.fg select option {
  background: #2a2a2a;
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
#send-btn {
  width: 100%;
  margin-top: 4px;
}
#form-msg {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  min-height: 20px;
}
#form-msg.ok {
  color: #6edf9e;
}
#form-msg.err {
  color: #ff7070;
}

/* ── MARQUEE ── */
.mq-wrap {
  background: var(--orange);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.mq-track {
  display: inline-flex;
  animation: mq 20s linear infinite;
}
.mq-track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 28px;
}
.mq-track .sep {
  color: var(--white);
  opacity: 1;
  padding: 0 4px;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── FLOAT BUTTON ── */
.float-stack {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s;
}
.social-btn img {
  width: 20px;
  height: 20px;
  display: block;
}
.social-btn:hover {
  transform: scale(1.1);
}
.social-btn.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888);
}
.social-btn.fb {
  /* plavo → ljubičasto → crveno (da se uklopi sa IG i call) */
  background: linear-gradient(45deg, #1877f2, #7a1ff0, #e03a7b);
}
.social-btn.call {
  background: var(--orange);
  box-shadow: 0 8px 28px rgba(232, 112, 26, 0.55);
}

.float-btn {
  position: static;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(232, 112, 26, 0.55);
  animation: floatIn 0.6s 0.8s ease both;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(232, 112, 26, 0.7);
}
.float-btn .fi {
  font-size: 20px;
  animation: ring 2.5s infinite;
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── FOOTER ── */
footer {
  background: #111;
  border-top: 3px solid var(--orange);
  padding: 52px 40px 24px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 14px;
}
.footer-emails {
  margin-top: 12px;
}
.footer-emails a,
.footer-emails a:link,
.footer-emails a:visited {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-emails a:hover,
.footer-emails a:visited:hover,
.footer-emails a:focus-visible {
  color: var(--orange-lt);
}
.contact-info .ci-item p a {
  color: var(--orange);
  text-decoration: none;
}
.contact-info .ci-item p a:hover {
  text-decoration: underline;
}
footer h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 16px;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul a,
footer ul a:link,
footer ul a:visited {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
footer ul a:hover,
footer ul a:visited:hover,
footer ul a:focus-visible {
  color: var(--orange-lt);
}
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-logo {
  margin-bottom: 12px;
}
.footer-logo-icon {
  width: 38px;
  height: 38px;
}
.footer-brand-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 900;
  color: white;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-dark);
  border: 2px dashed rgba(232, 112, 26, 0.35);
  transition: border-color 0.3s, transform 0.3s;
  cursor: zoom-in;
  position: relative;
}
.gallery-item:hover {
  border-color: var(--orange);
  transform: scale(1.02);
}
.gallery-item::after {
  content: "⤢";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(26, 26, 26, 0.55);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  font-size: 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* ── LIGHTBOX (Galerija) ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}
.lightbox.open {
  display: block;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.open .lb-backdrop {
  opacity: 1;
}
.lb-dialog {
  position: relative;
  width: min(1100px, calc(100vw - 24px));
  margin: 6vh auto 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.lightbox.open .lb-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.lb-img {
  width: 100%;
  height: min(76vh, 760px);
  object-fit: contain;
  display: block;
  background: #0f0f0f;
}
.lb-caption {
  display: none;
}
.lb-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.lb-close:hover {
  background: rgba(255, 255, 255, 0.18);
}
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 26px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.lb-prev {
  left: 10px;
}
.lb-next {
  right: 10px;
}
.lb-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.gp-icon {
  font-size: 32px;
  opacity: 0.5;
}
.gp-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gallery-note {
  text-align: center;
  color: var(--text-lt);
  font-size: 13px;
  margin-top: 20px;
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 440px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CTA ── */
.cta-banner {
  background: var(--orange);
  padding: 64px 40px;
  text-align: center;
}
.cta-title {
  color: white;
  margin-bottom: 12px;
}
.cta-title em {
  color: rgba(255, 255, 255, 0.75);
}
.cta-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-btn {
  font-size: 17px;
  padding: 16px 36px;
}

/* CTA dugmad: manje "stiker", više web-CTA */
.btn-cta {
  border-radius: 14px;
  text-transform: none;
  letter-spacing: normal;
  padding: 14px 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.btn-cta-outline {
  border-radius: 14px;
  text-transform: none;
  letter-spacing: normal;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.btn-cta-outline:hover {
  border-color: rgba(232, 112, 26, 0.55);
  color: var(--orange);
  background: rgba(255, 255, 255, 0.55);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .zasto-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    padding-top: 0;
  }
  .cform {
    margin-top: 0;
  }
  .process-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-row::before {
    display: none;
  }
  .nudimo-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .nudimo-title {
    border: none;
    padding-right: 0;
  }
  .nudimo-item {
    border: none;
    padding: 0;
  }
  .hero-visual {
    width: 300px;
    opacity: 0.92;
    display: flex;
  }
  .hero-art {
    right: 60px;
    width: 560px;
    height: 560px;
  }
  .hero-circle {
    width: 560px;
    height: 560px;
    border-width: 68px;
  }
  .hero-circle2 {
    width: 360px;
    height: 360px;
  }
  nav {
    padding: 12px 20px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    border-top: 2px solid rgba(232, 112, 26, 0.2);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 10px 16px;
  }

  .hero-content {
    padding: 20px 16px 8px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 36px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .nudimo-bar {
    padding: 18px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-row {
    gap: 20px;
  }

  .float-btn {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .cform {
    padding: 22px;
  }
}
@media (max-width: 640px) {
  /* Hero: vertikalni telefon – prvo tekst, ispod ceo krug + slika (nema uporednog ređanja) */
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 28px;
    overflow-x: hidden;
  }

  .hero-content {
    order: 1;
    width: 100%;
    max-width: none;
    text-align: center;
    margin: 0 auto;
    padding: 32px 16px 12px;
    box-sizing: border-box;
  }

  .hero-art {
    order: 2;
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    transform: none;
    width: min(360px, 88vw);
    height: min(360px, 88vw);
    max-width: 100%;
    margin: 8px auto 20px;
    flex-shrink: 0;
  }

  .hero-circle {
    display: block;
    width: 100%;
    height: 100%;
    border-width: clamp(26px, 7.5vw, 44px);
  }

  .hero-circle2 {
    display: block;
    width: 66%;
    height: 66%;
  }

  .hero-visual {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    max-width: 220px;
    margin: 0;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .panel-video-el {
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fg-row {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 46px;
  }
  .topbar-right {
    display: none;
  }
  .process-row {
    grid-template-columns: 1fr;
  }
}

/* ── PAGE HERO (galerija.html, kontakt.html) ── */
.page-hero {
  background: var(--bg);
  padding: 52px 40px 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-lt);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--text-lt);
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 12px;
}
.page-title em {
  font-style: normal;
  color: #c85a0a;
}
.page-intro {
  font-size: 17px;
  color: var(--text-lt);
  max-width: 520px;
  line-height: 1.7;
}

/* ── NAV ACTIVE STATE ── */
.nav-active {
  color: var(--orange) !important;
}
.nav-active::after {
  width: 100% !important;
}

/* ── GALLERY FILTERS ── */
.gallery-filters {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 40px;
  position: sticky;
  top: 100px;
  z-index: 100;
}
.filter-tabs {
  display: flex;
  gap: 0;
  max-width: 1160px;
  margin: 0 auto;
}
.filter-btn {
  background: none;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-lt);
  padding: 16px 24px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  border-bottom: 3px solid transparent;
}
.filter-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.filter-btn:hover {
  color: var(--orange);
}
.filter-btn.active {
  color: var(--orange);
}
.filter-btn.active::after {
  transform: scaleX(1);
}

/* hidden filter state */
.gallery-grid.hidden,
.video-grid.hidden,
[data-category].hidden {
  display: none;
}
.section-label.hidden {
  display: none;
}

/* ── GALERIJA MAIN ── */
.galerija-main {
  background: var(--bg);
  padding: 60px 40px 80px;
}
.galerija-main .section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.video-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.video-item video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #111;
}
.video-item video.video-vert {
  aspect-ratio: 9/16;
}
.video-label {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--bg-dark);
}

/* ── VIDEO GRID (galerija.html) kao slike ── */
.video-gallery .video-thumb {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #111;
}
.video-card[data-video-orientation="v"] .video-thumb {
  /* vertikalni snimci: thumbnail okrenut 90° da bude “ravan” u kocki */
  aspect-ratio: 16/9;
  object-fit: cover;
  transform: rotate(90deg) scale(1.18);
  transform-origin: 50% 50%;
}
.video-card {
  position: relative;
  cursor: pointer;
}
.video-card::after {
  content: "▶";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  transform: translateY(0);
  transition: transform 0.2s ease, background 0.2s ease;
  pointer-events: none;
}
.video-card:hover::after {
  background: rgba(232, 112, 26, 0.65);
  transform: translateY(-2px);
}

/* ── VIDEO LIGHTBOX ── */
.vlb-dialog {
  width: min(980px, 92vw);
  padding: 18px;
}
.vlb-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: #000;
  aspect-ratio: 16/9;
  object-fit: contain;
  max-height: 82vh;
}
.vlb-dialog.is-vert .vlb-video {
  aspect-ratio: 9/16;
  width: min(420px, 84vw);
  max-height: 82vh;
  margin: 0 auto;
}

.vlb-dialog.is-rotated .vlb-video {
  transform: rotate(90deg);
  transform-origin: center;
  width: min(82vh, 92vw);
  max-height: min(92vw, 82vh);
}
.vlb-dialog.is-rotated-neg .vlb-video {
  transform: rotate(-90deg);
  transform-origin: center;
  width: min(82vh, 92vw);
  max-height: min(92vw, 82vh);
}

.vlb-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.vlb-btn {
  width: 40px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-size: 14px;
}
.vlb-btn:hover {
  background: rgba(232, 112, 26, 0.35);
  border-color: rgba(232, 112, 26, 0.5);
}
.vlb-time {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  min-width: 92px;
  text-align: center;
}
.vlb-range {
  flex: 1;
  accent-color: var(--orange);
}

/* ── FAQ LAYOUT (kontakt.html) ── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.faq-side {
  position: sticky;
  top: 120px;
}

.faq-contact-card {
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--orange);
}
.fcc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 8px;
}
.faq-contact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}
.faq-contact-card p {
  color: var(--text-lt);
  font-size: 14px;
  line-height: 1.6;
}
.fcc-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}
.fcc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.fcc-row a {
  color: var(--text-mid);
  text-decoration: none;
}
.fcc-row a:hover {
  color: var(--orange);
}

/* ── RESPONSIVE (pages) ── */
@media (max-width: 960px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-side {
    position: static;
    order: -1;
  }
  .gallery-filters {
    padding: 0 20px;
    top: 72px;
  }
  .filter-btn {
    padding: 14px 14px;
    font-size: 12px;
  }
  .galerija-main {
    padding: 40px 20px 60px;
  }
  .page-hero {
    padding: 36px 20px 32px;
  }
  .filter-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 960px) {
  .orange-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

