@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --primary: #FF6B35;
  --primary-light: rgba(255, 107, 53, 0.1);
  --primary-hover: rgba(255, 107, 53, 0.9);
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --border: #27272a;
  --border-light: rgba(39, 39, 42, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.font-display { font-family: 'Oswald', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar .logo img { height: 2.5rem; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.9);
  transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 0.3s;
}
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: black; padding: 0.75rem 2rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; transition: all 0.3s; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--primary); color: white; }

/* MOBILE MENU */
.mobile-toggle { display: none; background: none; border: none; color: white; cursor: pointer; font-size: 1.5rem; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--bg);
  z-index: 100; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700;
  text-transform: uppercase; color: var(--text); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none !important; }
  .mobile-toggle { display: block; }
}

/* HERO */
.hero {
  position: relative; height: 100vh; width: 100%; overflow: hidden;
  display: flex; align-items: center;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 1;
}
.hero-video video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-content {
  position: relative; z-index: 20; max-width: 64rem;
}
.hero-label {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.hero-label .line { height: 2px; width: 3rem; background: var(--primary); }
.hero-label span {
  color: white; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; font-size: 0.875rem;
}
.hero h1 {
  font-family: 'Oswald', sans-serif; font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700; color: white; line-height: 1.1;
  text-transform: uppercase; margin-bottom: 2rem;
}
.hero h1 .gradient {
  background: linear-gradient(to right, var(--primary), #fb923c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { font-size: 1.25rem; color: #d1d5db; max-width: 42rem; font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.hero-cta {
  display: inline-flex; align-items: center; color: rgba(255,255,255,0.8);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 0.25rem;
  transition: all 0.3s;
}
.hero-cta:hover { color: var(--primary); border-color: var(--primary); }
.hero-cta svg { margin-left: 0.5rem; width: 1rem; height: 1rem; transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 20;
  width: 2px; height: 8rem; background: rgba(255,255,255,0.2); overflow: hidden;
}
.scroll-indicator::after {
  content: ''; position: absolute; top: -100%; width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--primary), var(--primary));
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 200%; } }

/* MARQUEE */
.marquee {
  background: var(--primary); padding: 1rem 0; overflow: hidden;
  white-space: nowrap; border-top: 1px solid black; border-bottom: 1px solid black;
}
.marquee-inner {
  display: inline-flex; align-items: center;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700; color: black; text-transform: uppercase; margin: 0 3rem;
}
.marquee-inner .dot {
  width: 1rem; height: 1rem; background: black; border-radius: 50%; flex-shrink: 0;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SECTIONS */
section { padding: 6rem 0; }
.section-header {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .section-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.section-header h2 {
  font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700; text-transform: uppercase;
}
.section-header h2 .accent { color: var(--primary); }
.section-header p {
  color: var(--text-muted); max-width: 24rem; font-weight: 500;
  text-align: right;
}

/* PAGE HEADER */
.page-header {
  position: relative; padding: 8rem 0 5rem; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #18181b, #0a0a0a);
}
.page-header .container { position: relative; z-index: 10; }
.page-header .label { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.page-header .label .line { height: 2px; width: 3rem; background: var(--primary); }
.page-header .label span { color: var(--primary); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.875rem; }
.page-header h1 {
  font-family: 'Oswald', sans-serif; font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.1;
}
.page-header h1 .accent { color: var(--primary); }

/* ABOUT SPLIT */
.about-split { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .about-split { grid-template-columns: 1fr 1fr; } }
.img-frame { position: relative; }
.img-frame::before {
  content: ''; position: absolute; top: -1.5rem; left: -1.5rem;
  width: 5rem; height: 5rem; border-top: 4px solid var(--primary); border-left: 4px solid var(--primary);
}
.img-frame::after {
  content: ''; position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 5rem; height: 5rem; border-bottom: 4px solid var(--primary); border-right: 4px solid var(--primary);
}
.img-frame img {
  width: 100%; height: auto; filter: grayscale(100%) contrast(1.25);
  transition: filter 0.7s; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.img-frame:hover img { filter: none; }
.about-text h2 {
  font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 700; text-transform: uppercase; margin-bottom: 2rem; line-height: 1.1;
}
.about-text h2 .accent { color: var(--primary); }
.about-text p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.8; }
.about-text strong { color: var(--text); }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: white; padding: 1rem 2rem;
  font-size: 1.125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; border: none; cursor: pointer; transition: background 0.3s;
}
.btn-primary:hover { background: var(--primary-hover); }
.btn-primary svg { width: 1.25rem; height: 1.25rem; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text); padding: 1rem 2rem;
  font-size: 1.125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; border: 2px solid var(--text); cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { background: var(--text); color: var(--bg); }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--bg); border: 2px solid var(--border);
  padding: 2rem; transition: border-color 0.3s; position: relative; overflow: hidden;
}
.service-card:hover { border-color: rgba(255,107,53,0.5); }
.service-card .icon { color: var(--primary); margin-bottom: 1.5rem; font-size: 2.5rem; }
.service-card .bar { height: 4px; width: 2rem; background: var(--primary); border-radius: 2px; margin-bottom: 1rem; transition: width 0.3s; }
.service-card:hover .bar { width: 3rem; }
.service-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 1rem; transition: color 0.3s;
}
.service-card:hover h3 { color: var(--primary); }
.service-card p { color: var(--text-muted); font-weight: 500; line-height: 1.6; }

/* FINITURE ACCORDION */
.finiture-section { background: var(--bg-secondary); }
.finiture-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.finiture-btn {
  width: 100%; padding: 2rem 1rem; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer; background: none; border: none;
  color: var(--text); text-align: left; transition: background 0.3s;
}
.finiture-btn:hover { background: var(--primary-light); }
.finiture-btn span {
  font-family: 'Oswald', sans-serif; font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 700; transition: color 0.3s;
}
.finiture-btn:hover span { color: var(--primary); }
.finiture-btn .chevron { font-size: 2rem; color: var(--text-muted); transition: all 0.3s; }
.finiture-btn.open .chevron { transform: rotate(180deg); color: var(--primary); }
.finiture-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out, padding 0.3s;
}
.finiture-content.open { max-height: 300px; }
.finiture-content-inner {
  padding: 0 1rem 2rem;
}
.finiture-content-inner .panel {
  background: var(--bg); border-left: 4px solid var(--primary); padding: 1.5rem;
}
.finiture-content-inner .panel p { color: var(--text-muted); font-size: 1.125rem; line-height: 1.7; }

/* LOCATION SECTION */
.location-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-info { display: flex; flex-direction: column; gap: 1.5rem; }
.location-item { display: flex; align-items: flex-start; gap: 1rem; }
.location-item .icon-box {
  width: 3rem; height: 3rem; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-item .icon-box svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.location-item h4 { font-weight: 700; font-size: 1.125rem; margin-bottom: 0.25rem; }
.location-item p { color: var(--text-muted); }
.map-frame { position: relative; }
.map-frame iframe {
  width: 100%; aspect-ratio: 16/9; border: none;
  filter: grayscale(100%); transition: filter 0.5s;
}
.map-frame:hover iframe { filter: none; }

/* STATS */
.stats-section { background: var(--text); color: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-item .icon { color: var(--primary); margin-bottom: 1rem; font-size: 2rem; }
.stat-item .value { font-family: 'Oswald', sans-serif; font-size: clamp(2.5rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.5rem; }
.stat-item .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.7; }

/* VALUES */
.values-section { background: var(--bg-secondary); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--bg); border: 2px solid var(--border); padding: 2rem;
  transition: border-color 0.3s;
}
.value-card:hover { border-color: rgba(255,107,53,0.5); }
.value-card .bar { height: 4px; width: 3rem; background: var(--primary); margin-bottom: 1.5rem; transition: width 0.3s; }
.value-card:hover .bar { width: 5rem; }
.value-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.value-card p { color: var(--text-muted); line-height: 1.7; }

/* NEWS CARDS */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
.news-card {
  background: var(--bg); border: 2px solid var(--border);
  transition: border-color 0.3s; overflow: hidden;
}
.news-card:hover { border-color: rgba(255,107,53,0.5); }
.news-card a { display: block; padding: 2rem; }
.news-card .meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.news-card .category {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary); background: var(--primary-light);
  padding: 0.25rem 0.75rem;
}
.news-card .date { color: var(--text-muted); font-size: 0.875rem; }
.news-card h2 {
  font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 1rem; transition: color 0.3s;
}
.news-card:hover h2 { color: var(--primary); }
.news-card p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.news-card .read-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--primary); font-weight: 700; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.1em;
}
.news-card .read-more svg { transition: transform 0.3s; }
.news-card:hover .read-more svg { transform: translateX(8px); }

/* ARTICLE */
.article-content { max-width: 48rem; margin: 0 auto; }
.article-content h3 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin: 2rem 0 1rem; }
.article-content p { color: var(--text-muted); font-size: 1.125rem; line-height: 1.8; margin-bottom: 1rem; }
.article-content ul { color: var(--text-muted); margin: 1rem 0 1rem 2rem; }
.article-content li { margin-bottom: 0.5rem; line-height: 1.6; }
.article-content li::marker { color: var(--primary); }
.article-content strong { color: var(--text); }
.article-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }

/* GALLERY */
.gallery-filters { display: flex; gap: 1rem; flex-wrap: wrap; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.gallery-filters button {
  padding: 0.75rem 1.5rem; font-weight: 700; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.1em; border: 2px solid var(--border);
  background: transparent; color: var(--text); cursor: pointer; transition: all 0.3s;
}
.gallery-filters button:hover { border-color: var(--primary); }
.gallery-filters button.active { background: var(--primary); color: white; border-color: var(--primary); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%); transition: all 0.5s;
}
.gallery-item:hover img { filter: none; transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: background 0.3s; opacity: 0;
}
.gallery-item:hover .overlay { background: rgba(0,0,0,0.5); opacity: 1; }
.gallery-item .overlay svg { width: 2.5rem; height: 2.5rem; color: white; margin-bottom: 0.5rem; }
.gallery-item .overlay span { color: white; font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 0.875rem; }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  z-index: 100; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox .close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none;
  color: white; font-size: 2rem; cursor: pointer; transition: color 0.3s;
}
.lightbox .close:hover { color: var(--primary); }
.lightbox .caption {
  position: absolute; bottom: 2.5rem; left: 0; right: 0; text-align: center;
}
.lightbox .caption span { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; color: white; }
.lightbox .caption .cat { color: var(--primary); margin-left: 1rem; font-family: 'Inter', sans-serif; font-size: 1rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item .icon { color: var(--primary); font-size: 1.5rem; flex-shrink: 0; }
.contact-info-item .label-text { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info-item .value { font-size: 1.125rem; font-weight: 500; transition: color 0.3s; }
.contact-info-item a:hover .value { color: var(--primary); }
.contact-form-wrapper {
  background: var(--bg-secondary); border: 2px solid var(--border); padding: 2rem;
}
@media (min-width: 768px) { .contact-form-wrapper { padding: 3rem; } }
.contact-form-wrapper h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 2rem;
}
.contact-form-wrapper h3 .accent { color: var(--primary); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 1rem; background: var(--bg); border: 2px solid var(--border);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 1rem;
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: none; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-checkbox input { margin-top: 0.25rem; accent-color: var(--primary); }
.form-checkbox label { font-size: 0.875rem; color: var(--text-muted); }
.form-checkbox a { color: var(--primary); }
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--primary); color: white; padding: 1rem;
  font-size: 1.125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; border: none; cursor: pointer; transition: background 0.3s;
}
.btn-submit:hover { background: var(--primary-hover); }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border-light); padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo .name {
  display: flex; align-items: center; gap: 0.25rem; margin-bottom: 1rem;
}
.footer-logo .name .crf { font-family: 'Oswald', sans-serif; font-size: 1.875rem; font-weight: 700; color: var(--primary); letter-spacing: -0.05em; }
.footer-logo .name .sub { font-size: 1.25rem; font-weight: 500; }
.footer-logo p { color: var(--text-muted); max-width: 20rem; }
.footer-contacts h3, .footer-map h3 {
  font-size: 1.125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1rem;
}
.footer-contacts ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contacts li { display: flex; align-items: center; gap: 0.75rem; color: var(--text-muted); transition: color 0.3s; }
.footer-contacts li:hover { color: var(--primary); }
.footer-contacts li svg { color: var(--primary); width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.footer-contacts a { color: inherit; }
.footer-map iframe { width: 100%; aspect-ratio: 16/9; border: none; filter: grayscale(100%); transition: filter 0.5s; }
.footer-map:hover iframe { filter: none; }
.footer-bottom {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-light);
  text-align: center; font-size: 0.875rem; color: var(--text-muted);
}

/* COOKIE BANNER */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 50; padding: 1rem 1.5rem;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  background: #18181b; border: 1px solid #27272a; padding: 1.5rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  display: flex; flex-direction: column; gap: 1.5rem;
  max-width: 1280px; margin: 0 auto;
}
@media (min-width: 768px) {
  .cookie-inner { flex-direction: row; align-items: center; }
}
.cookie-text { flex: 1; display: flex; align-items: flex-start; gap: 1rem; }
.cookie-icon { background: var(--primary-light); padding: 0.75rem; flex-shrink: 0; }
.cookie-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.cookie-text h3 { font-family: 'Oswald', sans-serif; font-size: 1.125rem; font-weight: 700; text-transform: uppercase; color: white; margin-bottom: 0.5rem; }
.cookie-text p { color: #a1a1aa; font-size: 0.875rem; line-height: 1.6; max-width: 42rem; }
.cookie-text a { color: var(--primary); }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-buttons .btn-reject {
  padding: 0.5rem 1.5rem; border: 1px solid #3f3f46; background: none;
  color: #d4d4d8; cursor: pointer; font-weight: 500; transition: all 0.3s;
}
.cookie-buttons .btn-reject:hover { background: #27272a; color: white; }
.cookie-buttons .btn-accept {
  padding: 0.5rem 1.5rem; background: var(--primary); border: none;
  color: white; cursor: pointer; font-weight: 500; transition: background 0.3s;
}
.cookie-buttons .btn-accept:hover { background: var(--primary-hover); }

/* SVG ICONS inline */
.icon-svg { display: inline-block; vertical-align: middle; }

/* UTILITIES */
.text-center { text-align: center; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
