/* =============================================
   OASIS MEDIA PRODUCTIONS — Global Styles
   ============================================= */

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

:root {
  --orange: #FF7A00;
  --black: #000000;
  --white: #FFFFFF;
  --dark-bg: #0a0a0a;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* no padding-bottom here — home page ends exactly at last frame */
}

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

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 5px solid #FF8C00;
  box-shadow: 0 4px 18px rgba(255, 140, 0, 0.7);
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

/* ---- Menu Button (circle with 3 lines) ---- */
.menu-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  border: 2.5px solid var(--orange);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  outline: none;
  flex-shrink: 0;
}

.menu-btn:hover {
  box-shadow: 0 0 14px rgba(255, 122, 0, 0.55);
  transform: scale(1.06);
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animate to X when open */
.menu-btn.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ---- Dropdown Menu ---- */
.dropdown {
  position: fixed;
  top: 96px;
  right: 40px;
  background: rgba(8, 8, 8, 0.97);
  border: 1.5px solid var(--orange);
  border-radius: 10px;
  overflow: hidden;
  min-width: 210px;
  z-index: 999;
  transform: translateY(-12px) scaleY(0.92);
  transform-origin: top right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown.open {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: all;
}

.dropdown a {
  display: block;
  padding: 18px 28px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 122, 0, 0.15);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background: rgba(255, 122, 0, 0.1);
  color: var(--orange);
  padding-left: 36px;
}

/* =============================================
   HERO / MAIN CONTENT
   ============================================= */

.frame-scroll-section {
  height: 200vh;
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 8% 80px 40px;
  text-align: right;
}

/* Frame canvas — same position as image1.png.png, 30% smaller */
#frameCanvas {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  width: 57.2%;
  height: 58.96%;
  -webkit-mask-image: linear-gradient(to right, black 75%, transparent 90%);
  mask-image: linear-gradient(to right, black 75%, transparent 90%);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

/* Subtle radial glow behind h1 */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 122, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.12;
  position: relative;
  z-index: 1;
  text-align: right;
  white-space: nowrap;
}

.hero h1 span {
  color: var(--orange);
  font-size: 0.9em;
}

.hero-sub {
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.btn-outline {
  padding: 14px 36px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  background: transparent;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--black);
}

.btn-solid {
  padding: 14px 36px;
  background: var(--orange);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1.5px solid var(--orange);
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.btn-solid:hover {
  opacity: 0.85;
}

/* =============================================
   FOOTER / BOTTOM BAR
   ============================================= */

footer {
  position: fixed;
  bottom: 50px; /* sits just above the fixed bottom-bar */
  left: 0;
  width: 100%;
  z-index: 890;
  border-top: 5px solid #FF8C00;
  box-shadow: 0 -4px 18px rgba(255, 140, 0, 0.7);
  background: var(--black);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

/* Bottom bar — fixed at bottom, always visible */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: var(--black);
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.impressum-btn {
  padding: 9px 24px;
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.impressum-btn:hover {
  background: var(--orange);
  color: var(--black);
}

/* =============================================
   INNER PAGES — shared layout
   ============================================= */

.page-wrap {
  flex: 1;
  padding: 140px 60px 200px; /* bottom clears fixed footer + bottom-bar */
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.page-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.page-title span {
  color: var(--orange);
}

.page-divider {
  width: 70px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 50px;
}

/* ---- Projects page ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}

.project-card {
  border: 1.5px solid rgba(255, 122, 0, 0.35);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.project-thumb {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 122, 0, 0.25);
}

/* YouTube thumbnail + inline player */
.project-yt {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #111;
  overflow: hidden;
}


.yt-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.project-yt:hover .yt-thumb {
  filter: brightness(0.65);
}

/* Circular play button */
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: transform 0.2s ease;
}

.project-yt:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.yt-play-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2.5px solid #FF7A00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.yt-play:hover .yt-play-circle {
  background: rgba(255, 122, 0, 0.2);
}

.project-info {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-info h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  flex: 1;
}

.project-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}

/* ---- Price CTA ---- */
.price-cta {
  margin-top: 80px;
  padding: 56px 48px;
  border: 1.5px solid rgba(255, 122, 0, 0.3);
  border-radius: 10px;
  background: rgba(255, 122, 0, 0.03);
  text-align: center;
}

.price-cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}

.price-cta-title span {
  color: var(--orange);
}

.price-cta-text {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ---- Price page ---- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}

.price-card {
  border: 1.5px solid rgba(255, 122, 0, 0.3);
  border-radius: 8px;
  padding: 36px 30px;
  background: var(--dark-bg);
  transition: border-color 0.25s ease, transform 0.25s ease;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--orange);
}

.price-card.featured::after {
  content: 'Empfohlen';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.price-card h3 {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-period {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  flex: 1;
}

.price-features li {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✦';
  color: var(--orange);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ---- Kontakt page ---- */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 750px) {
  .kontakt-layout { grid-template-columns: 1fr; }
}

.kontakt-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--orange);
}

.kontakt-info p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 28px;
}

.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
}

.kontakt-detail .icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 122, 0, 0.3);
  border-radius: 5px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  min-height: 130px;
}

/* ---- Impressum page ---- */
.impressum-content {
  max-width: 700px;
}

.impressum-content h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-top: 34px;
  margin-bottom: 10px;
}

.impressum-content p,
.impressum-content address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  font-style: normal;
}

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

/* Blur everything when lightbox is open */
body.lightbox-open > nav,
body.lightbox-open > main,
body.lightbox-open > footer {
  filter: blur(6px) brightness(0.4);
  transition: filter 0.3s ease;
  pointer-events: none;
  user-select: none;
}

/* Full-screen overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

/* Dark clickable backdrop */
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

/* Centered video box */
.lightbox-container {
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 122, 0, 0.35);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 122, 0, 0.08);
  transform: scale(0.93);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-container {
  transform: scale(1);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  border: 1.5px solid var(--orange);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: var(--orange);
  transform: scale(1.1);
}

/* 16:9 video area (default) */
.lightbox-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

/* 9:16 portrait for Shorts */
.lightbox-video.is-short {
  width: min(400px, 90vw);
  margin: 0 auto;
  padding-top: 0;
  height: min(711px, 80vh);
}

.lightbox-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =============================================
   NAV LINKS (Startseite / Über uns / Dienstleistungen)
   ============================================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-family: inherit;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link-btn::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

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

.nav-link-btn:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link-btn.active {
  color: var(--orange);
}

.nav-link-btn.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* =============================================
   NAV PANELS
   ============================================= */

/* Dark backdrop behind panel */
.panel-backdrop {
  position: fixed;
  inset: 0;
  top: 96px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.panel-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* Panel container */
.nav-panel {
  position: fixed;
  top: 96px;
  left: 0;
  width: 100%;
  z-index: 950;
  background: rgba(4, 4, 4, 0.98);
  border-bottom: 2px solid rgba(255, 122, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
}

.nav-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Inner layout */
.nav-panel-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 38px 60px 42px;
  position: relative;
}

/* Close button (top-right of panel) */
.panel-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: none;
  border: 1.5px solid rgba(255, 122, 0, 0.35);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.panel-close-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 122, 0, 0.08);
}

/* Panel headings */
.nav-panel h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.nav-panel h2 span {
  color: var(--orange);
}

/* Lead paragraph */
.panel-lead {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 28px;
}

/* CTA row (Startseite panel) */
.panel-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* About grid (Über uns panel) */
.panel-about-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.panel-about-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.panel-about-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 122, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.panel-about-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 3px;
}

/* Services grid (Dienstleistungen panel) */
.panel-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 6px;
}

.panel-service-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 8px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.panel-service-card:hover {
  border-color: rgba(255, 122, 0, 0.55);
  background: rgba(255, 122, 0, 0.04);
}

.panel-service-icon {
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(255, 122, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
}

.panel-service-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: var(--white);
}

.panel-service-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
}

.panel-service-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.panel-service-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 122, 0, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.panel-service-link:hover {
  color: var(--orange);
}

/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  background: rgba(4, 4, 4, 0.97);
  border-top: 2px solid var(--orange);
  box-shadow: 0 -6px 28px rgba(255, 122, 0, 0.18);
  padding: 22px 40px;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  flex: 1;
  min-width: 260px;
}

.cookie-text a {
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cookie-text a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btns .btn-solid,
.cookie-btns .btn-outline {
  padding: 10px 26px;
  font-size: 0.78rem;
}

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

/* ---- Tablet (≤ 900px) ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .panel-services-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Mobile landscape / small tablet (≤ 768px) ---- */
@media (max-width: 768px) {

  /* Nav */
  nav { padding: 16px 20px; }
  .dropdown { right: 20px; }

  /* Hero — center everything */
  .hero {
    align-items: center;
    text-align: center;
    padding: 100px 24px 80px;
    justify-content: center;
  }

  .hero h1 {
    text-align: center;
    white-space: normal;
    font-size: clamp(2rem, 11vw, 3.8rem);
  }

  .hero-sub {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .hero-cta {
    justify-content: center;
    gap: 12px;
  }

  /* Canvas — full-screen subtle background on mobile */
  #frameCanvas {
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 75%, transparent 100%);
  }

  /* Nav panels */
  .nav-panel-inner { padding: 24px 20px 28px; }
  .panel-services-grid { grid-template-columns: 1fr; }
  .panel-cta-row { flex-direction: column; gap: 10px; }
  .panel-about-grid { grid-template-columns: 1fr; }

  /* Footer */
  footer {
    bottom: 44px;
    padding: 14px 20px;
    font-size: 0.74rem;
  }

  /* Bottom bar */
  .bottom-bar { padding: 10px 20px; }

  /* Inner pages */
  .page-wrap { padding: 110px 20px 180px; }

  /* Buttons */
  .btn-solid,
  .btn-outline { padding: 12px 26px; font-size: 0.8rem; }

  /* Cookie banner */
  .cookie-inner { flex-direction: column; gap: 14px; }
  .cookie-btns { width: 100%; justify-content: center; }

  /* Projects grid */
  .projects-grid { grid-template-columns: 1fr; }

  /* Price grid */
  .price-grid { grid-template-columns: 1fr; }

  /* Kontakt layout */
  .kontakt-layout { flex-direction: column; gap: 32px; }
}

/* ---- Small phone (≤ 480px) ---- */
@media (max-width: 480px) {

  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.8rem);
    letter-spacing: 0.04em;
  }

  .hero-sub {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero-cta { flex-direction: column; align-items: center; }

  nav { padding: 14px 16px; }
  .dropdown { right: 16px; }

  footer { padding: 12px 16px; }
  .bottom-bar { padding: 8px 16px; }

  .page-wrap { padding: 100px 16px 160px; }

  .btn-solid,
  .btn-outline { padding: 11px 20px; font-size: 0.76rem; width: 100%; text-align: center; }

  .page-title { font-size: clamp(2rem, 10vw, 3rem); }
}
