/* ═══════════════════════════════════════════════
   MURTISHI HAUSTECHNIK — Redesign 2026
   Fonts: Bebas Neue (display), DM Serif Display (headings), DM Sans (body)
   Palette: Deep Navy · Red · Blue · White
═══════════════════════════════════════════════ */

:root {
  --navy:    #0e2233;
  --navy2:   #0a1b2a;
  --red:     #e63946;
  --red2:    #b52a35;
  --blue:    #2e9ac0;
  --blue2:   #1b6a8c;
  --white:   #f7f5ef;
  --muted:   rgba(247,245,239,0.65);
  --panel:   rgba(255,255,255,0.06);
  --line:    rgba(255,255,255,0.12);
  --gold:    #d4ae68;
  --shadow:  0 32px 80px rgba(0,0,0,0.35);
  --radius:  20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--navy2);
  color: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ══ TYPOGRAPHY ══ */
h1, h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
em { font-style: italic; color: var(--blue); }
h2 em { color: var(--blue); }
.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--blue);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 120px 0; }
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
}

/* ══ NAV ══ */
.topbar {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0;
  height: 80px;
  padding: 0 clamp(16px, 3vw, 48px);
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(14,34,51,0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(14,34,51,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  background: #fff; border-radius: 8px; padding: 4px 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-icon { font-size: 14px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  background: var(--red);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
}
.nav-cta:hover { background: var(--red2); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn.primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(230,57,70,0.35);
}
.btn.primary:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(230,57,70,0.45); }
.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn.ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(20px, 5vw, 80px) 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1b2a 0%, #0d2840 50%, #071525 100%);
}

/* Wasserfall Canvas */
.waterfall-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#waterfallCanvas {
  width: 100%;
  height: 100%;
  opacity: 0.65;
}
.water-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,27,42,0.88) 0%, rgba(10,27,42,0.42) 50%, rgba(10,27,42,0.1) 100%),
    linear-gradient(to top, rgba(10,27,42,0.85) 0%, transparent 40%);
}

/* Falling drops */
.drops-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.drop {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(46,154,192,0.7), transparent);
  border-radius: 2px;
  animation: dropFall linear infinite;
}
.drop:nth-child(1)  { left:5%;   height:80px;  animation-duration:2.1s; animation-delay:-0.3s; }
.drop:nth-child(2)  { left:12%;  height:120px; animation-duration:1.8s; animation-delay:-1.1s; }
.drop:nth-child(3)  { left:19%;  height:60px;  animation-duration:2.5s; animation-delay:-0.7s; }
.drop:nth-child(4)  { left:26%;  height:100px; animation-duration:2.0s; animation-delay:-1.6s; }
.drop:nth-child(5)  { left:35%;  height:140px; animation-duration:1.6s; animation-delay:-0.4s; }
.drop:nth-child(6)  { left:43%;  height:70px;  animation-duration:2.3s; animation-delay:-0.9s; }
.drop:nth-child(7)  { left:52%;  height:110px; animation-duration:1.9s; animation-delay:-1.3s; }
.drop:nth-child(8)  { left:60%;  height:90px;  animation-duration:2.2s; animation-delay:-0.5s; }
.drop:nth-child(9)  { left:67%;  height:130px; animation-duration:1.7s; animation-delay:-1.8s; }
.drop:nth-child(10) { left:74%;  height:75px;  animation-duration:2.4s; animation-delay:-0.2s; }
.drop:nth-child(11) { left:81%;  height:105px; animation-duration:1.5s; animation-delay:-1.0s; }
.drop:nth-child(12) { left:87%;  height:85px;  animation-duration:2.0s; animation-delay:-1.4s; }
.drop:nth-child(13) { left:92%;  height:115px; animation-duration:1.8s; animation-delay:-0.6s; }
.drop:nth-child(14) { left:96%;  height:65px;  animation-duration:2.6s; animation-delay:-1.2s; }
.drop:nth-child(15) { left:8%;   height:95px;  animation-duration:2.1s; animation-delay:-2.0s; }

@keyframes dropFall {
  0%   { top: -150px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot.red  { background: var(--red); box-shadow: 0 0 8px var(--red); }
.dot.blue { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(72px, 12vw, 160px);
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero-title .line2 {
  display: block;
  font-size: clamp(54px, 8.5vw, 110px);
  color: rgba(255,255,255,0.85);
}
.hero-title .line2 em {
  color: var(--blue);
  font-style: normal;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--blue);
  line-height: 1;
}
.stat span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.stat-div {
  width: 1px; height: 40px;
  background: var(--line);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ══ BAND ══ */
.band {
  overflow: hidden;
  background: var(--red);
  padding: 14px 0;
  white-space: nowrap;
}
.band-track {
  display: inline-flex;
  gap: 28px;
  animation: bandScroll 25s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
}
.band-dot { color: rgba(255,255,255,0.5); }
@keyframes bandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══ SERVICE CARDS ══ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.scard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.scard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(46,154,192,0.3); }
.scard:hover::before { transform: scaleX(1); }
.scard-icon {
  width: 56px; height: 56px;
  background: rgba(46,154,192,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  color: var(--blue);
}
.scard-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 10px;
}
.scard h3 {
  font-size: 22px;
  font-family: 'DM Serif Display', serif;
  margin-bottom: 12px;
  line-height: 1.15;
}
.scard p { color: var(--muted); font-size: 14px; line-height: 1.65; font-weight: 300; }
.scard-line {
  position: absolute;
  bottom: 0; left: 26px; right: 26px;
  height: 1px;
  background: var(--line);
}

/* ══ ÜBER UNS ══ */
.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(46,154,192,0.08), rgba(230,57,70,0.04));
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-shape {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.about-shape svg {
  filter: drop-shadow(0 20px 60px rgba(46,154,192,0.2));
  animation: floatAnim 4s ease-in-out infinite;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.about-badge {
  position: absolute;
  bottom: 10px; right: 0;
  width: 110px; height: 110px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 40px rgba(230,57,70,0.5);
}
.about-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
}
.about-badge span { font-size: 10px; line-height: 1.3; opacity: 0.85; }
.about-content h2 { font-size: clamp(34px, 4vw, 56px); margin-bottom: 24px; }
.about-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 300;
}
.about-content > p { color: var(--muted); line-height: 1.7; margin-bottom: 32px; font-weight: 300; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.afeat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.afeat-icon {
  width: 26px; height: 26px;
  background: rgba(46,154,192,0.15);
  border: 1px solid rgba(46,154,192,0.4);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--blue);
  flex-shrink: 0;
}

/* ══ PROJEKTE ══ */
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pcard { border-radius: var(--radius); overflow: hidden; }
.pcard-img {
  position: relative;
  aspect-ratio: 3/4;
  background: #0a1824;
  overflow: hidden;
}
.pcard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.75) saturate(0.9);
}
.pcard:hover .pcard-img img {
  transform: scale(1.07);
  filter: brightness(0.9) saturate(1.1);
}
.pcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,27,42,0.95) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transform: translateY(8px);
  transition: transform 0.35s;
}
.pcard:hover .pcard-overlay { transform: translateY(0); }
.pcard-cat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 6px;
}
.pcard-overlay h3 {
  font-size: 18px;
  line-height: 1.2;
  font-family: 'DM Serif Display', serif;
}

/* ══ SERVICE SECTION ══ */
.service-section {
  background: linear-gradient(135deg, #1a3a5c 0%, #0e2233 50%, #1a2840 100%);
  padding: 100px 0;
  position: relative;
}
.water-wave-top, .water-wave-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 80px;
}
.water-wave-top { top: 0; }
.water-wave-bottom { bottom: 0; }
.water-wave-top svg, .water-wave-bottom svg {
  width: 100%; height: 100%;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svcard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.svcard:hover { transform: translateY(-6px); border-color: rgba(46,154,192,0.4); }
.svcard-icon { font-size: 44px; margin-bottom: 18px; display: block; }
.svcard h3 { font-size: 22px; font-family: 'DM Serif Display', serif; margin-bottom: 12px; color: #fff; }
.svcard p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.65; font-weight: 300; }

/* ══ ÖFFNUNGSZEITEN ══ */
.hours-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.hday {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 12px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.hday:not(.closed):hover { transform: translateY(-4px); border-color: rgba(46,154,192,0.4); }
.hday.closed { opacity: 0.4; }
.hday-name {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
}
.hday-time { font-size: 13px; color: var(--muted); font-weight: 300; }

/* ══ KARTE ══ */
.map-section { padding-bottom: 0; }
.map-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.map-info {
  background: var(--navy);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.map-address {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}
.map-address svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.map-address strong { display: block; color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.map-address a { color: var(--blue); font-weight: 500; }
.map-address a:hover { text-decoration: underline; }

/* ══ KONTAKT ══ */
.contact-section { padding: 120px 0; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-logo { height: 60px; width: auto; margin-bottom: 24px; background: #fff; border-radius: 10px; padding: 6px 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.contact-info {
  padding: 36px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-info > p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
.cinfo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.cinfo-item:last-child { border-bottom: none; }
.cinfo-item svg { color: var(--blue); flex-shrink: 0; }
.cinfo-item a { color: var(--blue); }
.cinfo-item a:hover { text-decoration: underline; }
.contact-form {
  display: grid;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
input, textarea {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  padding: 14px 16px;
  font: 400 14px/1 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus { border-color: var(--blue); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
textarea { resize: vertical; line-height: 1.6; }

/* ══ FOOTER ══ */
.footer {
  background: #060f18;
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { height: 44px; width: auto; background: #fff; border-radius: 8px; padding: 4px 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.back-top {
  width: 38px; height: 38px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.back-top:hover { background: var(--blue); color: #fff; }

/* ══ REVEAL ANIMATION ══ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    top: 84px; right: 14px; left: auto;
    width: min(320px, calc(100vw - 28px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(14,34,51,0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transform-origin: top right;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-link { justify-content: flex-start; padding: 12px 16px; }
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
  .service-grid, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 320px; margin: 0 auto; }
  .hours-strip { grid-template-columns: repeat(4, 1fr); }
  .map-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .about-shape { max-width: 260px; }
}

@media (max-width: 640px) {
  .topbar { height: 68px; padding: 0 16px; }
  .brand-logo { height: 44px; }
  .hero { padding: 0 20px 60px; min-height: 100svh; }
  .hero-title .line1 { font-size: 72px; }
  .hero-title .line2 { font-size: 52px; }
  .hero-stats { gap: 20px; }
  .stat strong { font-size: 28px; }
  .section { padding: 80px 0; }
  .service-grid, .project-grid, .service-cards { grid-template-columns: 1fr; }
  .hours-strip { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .map-wrap iframe { height: 280px; }
  .hero-actions .btn { width: 100%; }
}


/* =========================================================
   RESPONSIVE + CMS FINAL — PC / TABLET / SMARTPHONE
   ========================================================= */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img, svg, video, iframe { max-width: 100%; }
* { box-sizing: border-box; }

.pcard-desc { margin-top: 8px; color: rgba(255,255,255,.74); font-size: 13px; line-height: 1.45; }
.pcard-fallback { width:100%; min-height:360px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg, rgba(46,154,192,.28), rgba(230,57,70,.18)); color:#fff; font-family:'Bebas Neue', sans-serif; letter-spacing:.2em; }
.scard-icon span { font-family:'Bebas Neue', sans-serif; font-size:28px; color: var(--blue); }

@media (min-width: 1101px) {
  .topbar { height: 82px; padding-inline: clamp(24px, 3vw, 58px); }
  .main-nav { gap: clamp(8px, 1.2vw, 18px); }
  .nav-link { padding: 10px 12px; }
  .nav-cta { white-space: nowrap; }
}

@media (max-width: 1100px) {
  .topbar { height: 74px; padding: 0 18px; overflow: visible; }
  .brand-logo { max-height: 50px; width: auto; }
  .nav-cta { display:none; }
  .menu-toggle { display:flex !important; align-items:center; justify-content:center; z-index:10002; }
  .main-nav {
    position: fixed !important;
    top: 84px !important;
    right: 14px !important;
    left: auto !important;
    width: min(320px, calc(100vw - 28px)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    padding: 14px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 18px !important;
    background: rgba(7,21,37,.98) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.45) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    z-index: 10001 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) scale(.98) !important;
    transform-origin: top right !important;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
  }
  .main-nav.is-open { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; transform: translateY(0) scale(1) !important; }
  .main-nav .nav-link { min-height: 48px; justify-content:flex-start; border-radius: 12px; width:100%; }
  .hero { min-height: 100svh; padding: 110px 24px 58px; align-items:flex-end; }
  .hero-content { max-width: 760px; }
  .hero-title .line1 { font-size: clamp(64px, 15vw, 126px); }
  .hero-title .line2 { font-size: clamp(46px, 10vw, 88px); }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .stat-div { display:none; }
  .service-grid, .project-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .about-wrap, .contact-wrap, .map-wrap { grid-template-columns: 1fr !important; gap: 40px; }
  .service-cards { grid-template-columns: 1fr 1fr !important; }
  .footer-inner { gap: 28px; }
}

@media (max-width: 720px) {
  .topbar { height: 66px; padding: 0 14px; }
  .brand-logo { max-height: 42px; }
  .menu-toggle { width:42px; height:42px; }
  .main-nav { top:78px !important; right:10px !important; left:auto !important; width: min(300px, calc(100vw - 20px)) !important; }
  .hero { padding: 96px 16px 44px; min-height: 100svh; }
  .hero-tag { font-size: 12px; gap: 8px; flex-wrap: wrap; letter-spacing: .12em; }
  .hero-title { margin-bottom: 20px; }
  .hero-title .line1 { font-size: clamp(58px, 22vw, 92px); }
  .hero-title .line2 { font-size: clamp(42px, 16vw, 68px); }
  .hero-sub { font-size: 16px; max-width: 100%; margin-bottom: 26px; }
  .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 30px; }
  .btn { width:100%; justify-content:center; min-height: 52px; }
  .hero-stats { display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; width:100%; }
  .stat strong { font-size: 28px; }
  .stat span { font-size: 10px; }
  .hero-scroll-hint { display:none; }
  .band-track { font-size: 14px; }
  .section { padding: 72px 0; }
  .wrap { width: min(100% - 30px, 1180px); }
  .section-head { margin-bottom: 36px; }
  .section-head h2, .about-content h2 { font-size: clamp(34px, 10vw, 48px); line-height:1.05; }
  .section-head .eyebrow, .eyebrow { font-size: 13px; letter-spacing:.16em; }
  .service-grid, .project-grid, .service-cards, .about-features, .hours-strip { grid-template-columns: 1fr !important; }
  .scard, .svcard { padding: 26px 22px; }
  .pcard-img img, .pcard-fallback { min-height: 260px; height: 260px; object-fit: cover; }
  .about-section { padding: 76px 0; }
  .about-visual { order: 2; }
  .about-content { order: 1; }
  .about-badge { width: 92px; height: 92px; }
  .map-wrap iframe { min-height: 300px; height: 300px; }
  .map-info { padding: 20px; }
  .form-row { grid-template-columns: 1fr !important; }
  input, textarea { font-size:16px !important; }
  .footer-links { flex-wrap: wrap; justify-content:center; }
  .footer-copy { flex-direction: column; gap: 16px; text-align:center; }
}

@media (max-width: 420px) {
  .brand-logo { max-height: 36px; }
  .hero-title .line1 { font-size: 54px; }
  .hero-title .line2 { font-size: 40px; }
  .hero-stats { grid-template-columns: 1fr; text-align:left; }
  .stat { display:flex; align-items:center; gap:14px; }
  .section-head h2, .about-content h2 { font-size: 32px; }
}

/* ── Lightbox ── */
#lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#lb-overlay.lb-open { display: flex; }
#lb-box {
  position: relative;
  width: min(95vw, 1300px);
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lb-img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 16px 60px rgba(0,0,0,.7);
}
#lb-caption {
  color: #fff;
  margin-top: 12px;
  font-size: 15px;
  text-align: center;
  opacity: .85;
}
#lb-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: .8;
  transition: opacity .2s;
}
#lb-close:hover { opacity: 1; }
.pcard-clickable { cursor: zoom-in; }
.pcard-zoom {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  letter-spacing: .05em;
}
@media (max-width: 600px) {
  #lb-img { max-height: 70vh; }
  #lb-close { top: -36px; font-size: 20px; }
}

