/* ================================================================
   HANSEATIC EVENTS — Global Stylesheet
   Design: Dark industrial / high-energy DJ aesthetic
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,900;1,700&family=Barlow:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --red:       #e8001d;
  --red-dark:  #b80018;
  --red-glow:  rgba(232, 0, 29, .3);
  --red-soft:  rgba(232, 0, 29, .1);
  --black:     #040404;
  --dark:      #0c0c0c;
  --dark2:     #131313;
  --dark3:     #1a1a1a;
  --dark4:     #222;
  --white:     #f2ede8;
  --gray:      #5a5a5a;
  --lgray:     #999;
  --border:    rgba(255,255,255,.07);
  --border-r:  rgba(232,0,29,.2);

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-serif: 'DM Serif Display', serif;

  --nav-h: 70px;
  --max-w: 1240px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--font-head); line-height: 1; }
.eyebrow {
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: .7rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; text-transform: uppercase;
  line-height: .95; margin-bottom: 1.2rem;
}
.section-title em { color: var(--red); font-style: normal; }
.section-sub {
  font-size: .95rem; font-weight: 300; color: var(--lgray);
  max-width: 560px; line-height: 1.85;
}
.red-line { width: 36px; height: 3px; background: var(--red); margin: 1rem 0; }
.red-line.center { margin: 1rem auto; }

/* ─── LAYOUT ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.section-wrap { padding: 6rem 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2.2rem; font-family: var(--font-head);
  font-size: 1rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; transition: all .25s; cursor: pointer; border: none;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 35px var(--red-glow); }
.btn-outline { border: 1px solid rgba(242,237,232,.2); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-wa { background: #22c55e; color: #fff; }
.btn-wa:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(34,197,94,.3); }

/* ─── NAV ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  transition: all .4s;
}
.site-nav.scrolled {
  background: rgba(4,4,4,.97);
  border-bottom: 1px solid var(--border-r);
  backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 900; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white);
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span {
  font-size: .42rem; letter-spacing: .45em; font-weight: 400;
  color: var(--red); text-transform: uppercase;
  font-family: var(--font-body);
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(242,237,232,.5); transition: color .2s; font-weight: 500;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red); color: #fff !important;
  padding: .55rem 1.5rem; font-weight: 700 !important;
  font-family: var(--font-head); font-size: .9rem !important;
  letter-spacing: .1em;
}
.nav-cta:hover { background: var(--red-dark) !important; box-shadow: 0 0 20px var(--red-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 600; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 900px) {
  .site-nav { padding: 0 1.5rem; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(4,4,4,.98); flex-direction: column;
    justify-content: center; align-items: center; gap: 2.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(232,0,29,.08) 0%, transparent 60%),
    linear-gradient(135deg, #040404 0%, #0a0202 50%, #040404 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: .03;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-noise {
  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");
  opacity: .5; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .7rem; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem;
}
.hero-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.15; } }

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(5.5rem, 14vw, 13rem);
  font-weight: 900; text-transform: uppercase;
  line-height: .88; letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.hero-h1 .line-red { color: var(--red); display: block; }
.hero-h1 .line-outline {
  -webkit-text-stroke: 2px rgba(242,237,232,.15);
  color: transparent; display: block;
}

.hero-desc {
  font-size: 1rem; font-weight: 300; color: var(--lgray);
  max-width: 440px; line-height: 1.85; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat { }
.stat-n {
  font-family: var(--font-head); font-size: 3rem; font-weight: 900;
  color: var(--red); line-height: 1; display: block;
}
.stat-l { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gray); }

/* Hero right visual */
.hero-visual {
  position: absolute; right: -5%; top: 0; bottom: 0; width: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .35; mix-blend-mode: luminosity;
  mask-image: linear-gradient(to right, transparent, rgba(0,0,0,.8) 30%, rgba(0,0,0,.8) 70%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, rgba(0,0,0,.8) 30%, rgba(0,0,0,.8) 70%, transparent);
}
.hero-vinyl {
  position: absolute;
  width: 380px; height: 380px;
  background:
    conic-gradient(from 0deg,
      #111 0deg, #1a1a1a 10deg, #111 20deg, #1a1a1a 30deg,
      #111 40deg, #1a1a1a 50deg, #111 60deg, #1a1a1a 70deg,
      #111 80deg, #1a1a1a 90deg, #111 100deg, #1a1a1a 110deg,
      #111 120deg, #1a1a1a 130deg, #111 140deg, #1a1a1a 150deg,
      #111 160deg, #1a1a1a 170deg, #111 180deg, #1a1a1a 190deg,
      #111 200deg, #1a1a1a 210deg, #111 220deg, #1a1a1a 230deg,
      #111 240deg, #1a1a1a 250deg, #111 260deg, #1a1a1a 270deg,
      #111 280deg, #1a1a1a 290deg, #111 300deg, #1a1a1a 310deg,
      #111 320deg, #1a1a1a 330deg, #111 340deg, #1a1a1a 350deg, #111 360deg
    );
  border-radius: 50%;
  animation: spin 12s linear infinite;
  box-shadow: 0 0 80px rgba(232,0,29,.15);
}
.hero-vinyl::after {
  content: '';
  position: absolute; inset: 28%;
  background: radial-gradient(circle, var(--red) 0%, #900 40%, #333 45%, #111 50%);
  border-radius: 50%;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--red); padding: .8rem 0; overflow: hidden;
}
.trust-inner {
  display: flex; gap: 4rem; align-items: center;
  animation: marquee 20s linear infinite; width: max-content;
}
.trust-item {
  display: flex; align-items: center; gap: .7rem; white-space: nowrap;
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.trust-item svg { flex-shrink: 0; opacity: .6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SERVICES GRID ─── */
.services-section { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 4rem;
}
.service-card {
  background: var(--dark2); padding: 3rem 2.5rem;
  position: relative; overflow: hidden; transition: background .3s;
  group: true;
}
.service-card:hover { background: var(--dark3); }
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red); transform: scaleY(0); transform-origin: bottom; transition: transform .4s;
}
.service-card:hover::before { transform: scaleY(1); }
.service-num {
  font-family: var(--font-head); font-size: 6rem; font-weight: 900;
  color: rgba(232,0,29,.06); position: absolute; top: 1rem; right: 1.5rem;
  line-height: 1; pointer-events: none;
}
.service-ico { font-size: 2rem; margin-bottom: 1.5rem; display: block; }
.service-card h3 {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: .8rem; color: var(--white);
}
.service-card p { font-size: .9rem; font-weight: 300; color: var(--lgray); line-height: 1.85; }
.service-price {
  display: inline-block; margin-top: 1.5rem; background: var(--red-soft);
  color: var(--red); padding: .3rem 1rem; font-size: .75rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}

/* ─── PAKETE ─── */
.pakete-section { background: var(--black); }
.pakete-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; margin-top: 4rem;
}
.paket-card {
  background: var(--dark2); padding: 2.5rem 2rem;
  position: relative; transition: all .3s; border: 1px solid transparent;
}
.paket-card:hover { border-color: var(--border-r); transform: translateY(-4px); background: var(--dark3); }
.paket-card.featured {
  border: 1px solid var(--red);
  background: linear-gradient(160deg, rgba(232,0,29,.06) 0%, var(--dark2) 100%);
}
.paket-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: .25rem 1rem; white-space: nowrap;
}
.paket-name {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: .3rem;
}
.paket-sub { font-size: .78rem; color: var(--gray); margin-bottom: 1.5rem; }
.paket-price {
  font-family: var(--font-head); font-size: 4.5rem; font-weight: 900;
  color: var(--red); line-height: 1; margin-bottom: .2rem;
}
.paket-price-note { font-size: .72rem; color: var(--gray); margin-bottom: 2rem; }
.paket-features { list-style: none; margin-bottom: 2rem; }
.paket-features li {
  padding: .5rem 0; border-bottom: 1px solid var(--border);
  font-size: .87rem; color: rgba(242,237,232,.75);
  display: flex; align-items: flex-start; gap: .7rem;
}
.paket-features li::before { content: '▸'; color: var(--red); flex-shrink: 0; margin-top: .1rem; }
.paket-link {
  display: block; text-align: center; padding: .9rem;
  border: 1px solid var(--red); color: var(--red);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; transition: all .2s;
}
.paket-link:hover, .paket-card.featured .paket-link { background: var(--red); color: #fff; }

/* ─── DJ TRAILER FEATURE ─── */
.trailer-section { background: var(--dark2); overflow: hidden; position: relative; }
.trailer-section::after {
  content: 'TRAILER'; position: absolute;
  font-family: var(--font-head); font-size: 18rem; font-weight: 900;
  color: rgba(232,0,29,.03); top: -3rem; right: -3rem;
  line-height: 1; pointer-events: none; white-space: nowrap; text-transform: uppercase;
}
.trailer-img-wrap { position: relative; }
.trailer-img-wrap img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  border: 1px solid var(--border-r); filter: contrast(1.05) saturate(.9);
}
.trailer-stamp {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: #fff; padding: 1.5rem 2rem; text-align: center;
  box-shadow: 0 20px 50px rgba(232,0,29,.4);
}
.trailer-stamp strong { display: block; font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.trailer-stamp span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }

.trailer-feats { list-style: none; margin: 2rem 0; }
.trailer-feats li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.tf-ico { font-size: 1.3rem; flex-shrink: 0; }
.trailer-feats li h4 { font-size: .92rem; font-weight: 600; margin-bottom: .2rem; }
.trailer-feats li p { font-size: .82rem; color: var(--lgray); line-height: 1.6; }

.gear-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.gear-chip {
  display: flex; align-items: center; gap: .4rem;
  background: var(--dark3); border: 1px solid var(--border-r);
  color: rgba(242,237,232,.6); padding: .35rem .8rem; font-size: .72rem;
}
.gear-chip::before { content: '✓'; color: var(--red); font-size: .7rem; }

/* ─── BBQ ─── */
.bbq-section { background: var(--black); }
.bbq-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(145deg, #1a0400, #0a0100);
  border: 1px solid var(--border-r);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: rgba(232,0,29,.35); font-size: .8rem; letter-spacing: .1em;
}
.bbq-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0; }
.bbq-tag {
  background: var(--red-soft); color: var(--red);
  padding: .3rem .9rem; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.bbq-price-box {
  background: var(--dark2); border: 1px solid var(--border-r);
  padding: 1.5rem; display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem;
}
.bbq-price { font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.bbq-per { font-size: .72rem; color: var(--gray); }

/* ─── CITIES / REGIONEN ─── */
.cities-section { background: var(--dark); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1px; margin-top: 3.5rem;
}
.city-card {
  background: var(--dark2); padding: 1.8rem 1.2rem; text-align: center;
  text-decoration: none; color: var(--white); transition: all .25s;
  border: 1px solid transparent; display: block;
}
.city-card:hover { background: var(--dark3); border-color: var(--border-r); transform: translateY(-3px); }
.city-ico { font-size: 1.8rem; display: block; margin-bottom: .6rem; }
.city-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: .2rem; }
.city-sub { font-size: .7rem; color: var(--gray); }

/* ─── REVIEWS ─── */
.reviews-section { background: var(--dark2); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.review-card {
  background: var(--dark); padding: 2rem; position: relative;
  transition: transform .25s; border-bottom: 3px solid var(--red);
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--red); font-size: .85rem; letter-spacing: .15em; margin-bottom: .8rem; }
.review-text {
  font-style: italic; color: rgba(242,237,232,.6); line-height: 1.8;
  font-size: .88rem; font-weight: 300; margin-bottom: 1rem;
}
.review-author { font-weight: 600; font-size: .88rem; }
.review-event { font-size: .7rem; color: var(--gray); margin-top: .2rem; }
.review-quote {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-head); font-size: 5rem; font-weight: 900;
  color: rgba(232,0,29,.06); line-height: 1; pointer-events: none;
}

/* ─── CONTACT FORM ─── */
.contact-section { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; text-transform: uppercase; line-height: .95; margin-bottom: 1.2rem; }
.contact-info h2 em { color: var(--red); font-style: normal; }
.contact-info p { font-size: .9rem; color: var(--lgray); line-height: 1.85; margin-bottom: 1rem; }
.contact-links { display: flex; flex-direction: column; gap: .7rem; margin-top: 2rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem;
  background: var(--dark2); border: 1px solid var(--border); transition: border-color .2s;
  text-decoration: none; color: var(--white);
}
.contact-link:hover { border-color: var(--border-r); }
.cl-ico { font-size: 1.2rem; flex-shrink: 0; }
.cl-text strong { display: block; font-size: .88rem; font-weight: 600; }
.cl-text span { font-size: .75rem; color: var(--gray); }
.trust-list { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.trust-badge {
  display: flex; align-items: center; gap: .4rem;
  font-size: .7rem; color: var(--gray); letter-spacing: .06em;
}
.trust-badge::before { content: '✦'; color: var(--red); font-size: .6rem; }

/* Form styles */
.contact-form { background: var(--dark2); border: 1px solid var(--border); padding: 2.5rem; }
.form-head { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.form-head h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: .3rem; }
.form-head p { font-size: .78rem; color: var(--gray); }
.form-block-title {
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: var(--red);
  margin: 2rem 0 1rem; display: flex; align-items: center; gap: .8rem;
}
.form-block-title::after { content: ''; flex: 1; height: 1px; background: var(--border-r); }
.fg { display: flex; flex-direction: column; gap: .45rem; margin-bottom: .9rem; }
.fg label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(242,237,232,.45); }
.fg input, .fg select, .fg textarea {
  background: var(--dark3); border: 1px solid var(--border);
  color: var(--white); padding: .8rem 1rem;
  font-family: var(--font-body); font-size: .88rem; transition: border-color .2s; outline: none; width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--red); }
.fg select option { background: var(--dark3); }
.fg textarea { resize: vertical; min-height: 100px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.check-group { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: .5rem; }
.ci { display: flex; align-items: center; gap: .6rem; cursor: pointer; }
.ci input[type=checkbox] { display: none; }
.cbox {
  width: 18px; height: 18px; border: 1px solid var(--border-r); background: transparent;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .2s; font-size: .7rem;
}
.ci input:checked ~ .cbox { background: var(--red); border-color: var(--red); color: #fff; }
.clabel { font-size: .82rem; color: rgba(242,237,232,.65); user-select: none; }
.ri { display: flex; align-items: center; gap: .6rem; cursor: pointer; }
.ri input[type=radio] { display: none; }
.rbox {
  width: 18px; height: 18px; border: 1px solid var(--border-r); border-radius: 50%;
  background: transparent; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.rbox::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); opacity: 0; transition: opacity .2s; }
.ri input:checked ~ .rbox { border-color: var(--red); }
.ri input:checked ~ .rbox::after { opacity: 1; }
.rlabel { font-size: .82rem; color: rgba(242,237,232,.65); user-select: none; }
.radio-group { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .5rem; }
.range-val { text-align: center; color: var(--red); font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin: .4rem 0; }
input[type=range] { width: 100%; -webkit-appearance: none; background: transparent; outline: none; cursor: pointer; }
input[type=range]::-webkit-slider-track { height: 3px; background: rgba(232,0,29,.2); }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--red); border: 2px solid var(--black); margin-top: -8px; transition: transform .2s; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.3); }
.range-labels { display: flex; justify-content: space-between; font-size: .7rem; color: var(--gray); margin-top: .3rem; }
.send-area { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.send-title { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gray); text-align: center; margin-bottom: 1rem; }
.send-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.send-btn {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  padding: 1.1rem; font-family: var(--font-body); font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer; border: none; transition: all .25s;
}
.send-btn.wa { background: #22c55e; color: #fff; }
.send-btn.wa:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(34,197,94,.3); }
.send-btn.mail { background: transparent; color: var(--red); border: 1px solid var(--red); }
.send-btn.mail:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.form-note { font-size: .68rem; color: var(--gray); text-align: center; margin-top: 1rem; line-height: 1.6; }
.form-note a { color: rgba(232,0,29,.6); }

/* ─── FAQ ─── */
.faq-section { background: var(--dark); }
.faq-list { margin-top: 3rem; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  text-align: left; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font-body); font-size: .92rem; font-weight: 500; transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-q .plus { font-family: var(--font-head); font-size: 1.4rem; color: var(--red); transition: transform .3s; }
.faq-q.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: .3rem 0 1.5rem; color: var(--lgray); line-height: 1.85; font-size: .88rem; font-weight: 300; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--red); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: 'LET\'S GO';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-head); font-size: 20rem; font-weight: 900;
  color: rgba(0,0,0,.08); white-space: nowrap; pointer-events: none; line-height: 1;
}
.cta-banner h2 {
  font-family: var(--font-head); font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900; text-transform: uppercase; margin-bottom: .5rem; position: relative;
}
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 2.5rem; font-size: .92rem; position: relative; }
.cta-banner .btn-white {
  display: inline-block; background: #fff; color: var(--red);
  padding: 1rem 3rem; font-family: var(--font-head); font-size: 1.2rem; font-weight: 900;
  letter-spacing: .12em; text-transform: uppercase; position: relative; transition: all .25s;
}
.cta-banner .btn-white:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark2); border-top: 1px solid var(--border-r);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: .82rem; color: var(--gray); margin-top: .8rem; line-height: 1.75; max-width: 270px; }
.footer-brand .contact-mini { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.footer-brand .contact-mini a { font-size: .82rem; color: var(--lgray); transition: color .2s; }
.footer-brand .contact-mini a:hover { color: var(--red); }
footer h4 { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .5rem; }
footer ul a { font-size: .82rem; color: var(--gray); transition: color .2s; }
footer ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: var(--gray); flex-wrap: wrap; gap: .5rem;
}

/* ─── CITY HERO (for city pages) ─── */
.city-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(232,0,29,.07) 0%, transparent 60%),
    var(--dark2);
  border-bottom: 1px solid var(--border-r);
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .7rem; color: var(--gray); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gray); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red); }
.city-hero h1 { font-family: var(--font-head); font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 900; text-transform: uppercase; line-height: 1; margin-bottom: 1.2rem; }
.city-hero h1 em { color: var(--red); font-style: normal; }
.city-hero-sub { font-size: 1rem; color: var(--lgray); max-width: 600px; margin-bottom: 2rem; line-height: 1.8; }
.city-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid var(--border-r); padding: .4rem 1.2rem; margin-bottom: 1.5rem;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--red);
}

/* City content */
.city-content { background: var(--dark); padding: 5rem 0; }
.city-content h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; text-transform: uppercase; margin: 2.5rem 0 .8rem; }
.city-content h2:first-child { margin-top: 0; }
.city-content p { font-size: .9rem; color: var(--lgray); line-height: 1.85; margin-bottom: 1rem; max-width: 780px; }
.city-content h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; color: var(--red); margin: 2rem 0 .6rem; }

/* ─── ABOUT STRIP ─── */
.about-strip { background: var(--dark2); padding: 5rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; }
.about-portrait {
  aspect-ratio: 3/4; background: var(--dark3);
  border: 1px solid var(--border-r);
  display: flex; align-items: center; justify-content: center;
  color: rgba(232,0,29,.3); font-size: 5rem;
}
.about-text { }
.years-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 900;
  padding: .5rem 1.2rem; line-height: 1; margin-bottom: 1.5rem;
}
.years-badge span { font-size: .8rem; letter-spacing: .1em; display: block; }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .pakete-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 900px) {
  section { padding: 4rem 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero-h1 { font-size: clamp(4rem, 15vw, 8rem); }
  .about-inner { grid-template-columns: 1fr; }
  .about-portrait { display: none; }
  .row-2 { grid-template-columns: 1fr; }
  .send-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section-wrap { padding: 4rem 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .trailer-stamp { right: 0; bottom: -1rem; }
}
