:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #0D0D0D;
  --dark2: #161616;
  --dark3: #1F1F1F;
  --cream: #F5F0E8;
  --text-muted: #888;
  --white: #fff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  background: linear-gradient(to bottom, rgba(13,13,13,.95) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--gold);
  letter-spacing: 2px; text-decoration: none;
}
.nav-links { display: none; }
.hamburger {
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px; z-index: 600;
}
.hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--cream);
  transition: transform 0.4s, opacity 0.3s, width 0.3s;
  transform-origin: left;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(13,13,13,.6);
  backdrop-filter: blur(4px);
  z-index: 700; opacity: 0;
  pointer-events: none; transition: opacity 0.4s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-panel {
  position: fixed; top: 0; right: 0;
  width: 320px; height: 100vh;
  background: var(--dark3);
  border-left: 1px solid rgba(201,168,76,.15);
  z-index: 800;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-panel.open { transform: translateX(0); }
.nav-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-panel-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); letter-spacing: 2px;
}
.nav-close {
  background: none; border: none; font-size: 1rem; cursor: pointer;
  color: var(--text-muted); width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center; transition: color .3s;
}
.nav-close:hover { color: var(--gold); }
.nav-panel-links {
  list-style: none; flex: 1; padding: 40px 32px;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-panel-links li a {
  display: flex; align-items: center; gap: 20px;
  text-decoration: none; color: var(--cream);
  font-size: 1.6rem; font-weight: 300;
  font-family: 'Playfair Display', serif;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color 0.3s, padding-left 0.3s;
}
.nav-panel-links li a:hover { color: var(--gold); padding-left: 8px; }
.nav-num {
  font-size: 0.7rem; letter-spacing: 2px;
  color: var(--gold); font-family: 'Jost', sans-serif; font-weight: 500;
}
.nav-panel-footer {
  padding: 28px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 10px;
}
.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--cream);
  padding: 12px 20px; text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,.08); transition: border-color .2s, color .2s;
}
.nav-call:hover { border-color: var(--gold); color: var(--gold); }
.nav-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  padding: 12px 20px; text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 1px; transition: opacity .2s;
}
.nav-wa:hover { opacity: 0.9; }
.nav-panel-footer p { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1px; }

/* HERO */
.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--dark) 0%, transparent 15%, transparent 85%, var(--dark) 100%);
  z-index: 2; pointer-events: none;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,.52); z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  animation: fadeUp .9s ease both; padding: 0 20px;
}
.hero-box {
  background: rgba(13,13,13,.72);
  border: 1px solid rgba(201,168,76,.22);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 56px 64px; max-width: 680px; margin: 0 auto;
  box-shadow: 0 0 0 1px rgba(201,168,76,.08), 0 8px 40px rgba(0,0,0,.7), 0 32px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(201,168,76,.12);
  position: relative;
}
.hero-box::before, .hero-box::after {
  content: ''; position: absolute;
  width: 22px; height: 22px;
  border-color: var(--gold); border-style: solid; opacity: 0.6;
}
.hero-box::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero-box::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@keyframes fadeUp {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: .75rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05; font-weight: 700; margin-bottom: 24px;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1rem; color: var(--text-muted); letter-spacing: 1px;
  margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* BUTTONS */
.btn {
  display: inline-block; padding: 15px 44px;
  background: var(--gold); color: var(--dark);
  font-family: 'Jost', sans-serif; font-weight: 600;
  font-size: .85rem; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; transition: background .3s, transform .2s;
}
.btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.btn-outline:hover { background: rgba(201,168,76,.1); transform: translateY(-2px); }

/* SCROLL */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: .7rem; letter-spacing: 3px;
  text-transform: uppercase; z-index: 3;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:.3; } 50% { opacity:1; } }

/* SECTION BASE */
section { padding: 120px 60px; }
.section-label {
  font-size: .7rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 24px;
}
.gold-divider { width: 60px; height: 2px; background: var(--gold); margin-bottom: 32px; }

/* SERVICES */
#services { background: var(--dark2); }
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 80px;
}
.services-intro p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.9; }
.services-list { display: flex; flex-direction: column; gap: 80px; }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; background: var(--dark3); overflow: hidden; position: relative;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.carousel { position: relative; overflow: hidden; aspect-ratio: 4/3; flex-shrink: 0; }
.carousel-track {
  display: flex; height: 100%;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.carousel-slide { min-width: 100%; height: 100%; position: relative; overflow: hidden; }
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .6s ease;
}
.carousel:hover .carousel-slide img { transform: scale(1.04); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(13,13,13,.7); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; z-index: 10;
  transition: background .3s, border-color .3s; backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: rgba(201,168,76,.2); border-color: var(--gold); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.carousel-dot {
  width: 6px; height: 6px; background: rgba(255,255,255,.35);
  border-radius: 50%; cursor: pointer; transition: background .3s, transform .3s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }
.service-info {
  padding: 56px 52px; display: flex;
  flex-direction: column; justify-content: center; position: relative;
}
.service-info::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.service-block:hover .service-info::before { opacity: 1; }
.service-num-label {
  font-size: .7rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.service-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--cream); margin-bottom: 20px; line-height: 1.2;
}
.service-info p { color: var(--text-muted); font-size: .98rem; line-height: 1.9; margin-bottom: 32px; }
.service-features { display: flex; flex-wrap: wrap; gap: 10px; }
.feature-tag {
  padding: 6px 16px; border: 1px solid rgba(201,168,76,.25);
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
.service-bg-num {
  position: absolute; bottom: 16px; right: 24px;
  font-size: 7rem; font-family: 'Playfair Display', serif; font-weight: 700;
  color: rgba(201,168,76,.04); line-height: 1; user-select: none; pointer-events: none;
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; padding: 12px 28px;
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Jost', sans-serif; font-size: .8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  transition: background .3s, color .3s;
}
.btn-whatsapp:hover { background: var(--gold); color: var(--dark); }

/* ABOUT */
#about { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; padding-bottom: 0; }
.about-visual { position: relative; }
.about-box {
  width: 100%; aspect-ratio: 1/1; background: var(--dark3);
  background-size: cover; background-image: url(ambienti/logo1.png);
  background-position: center; background-repeat: no-repeat;
  position: relative; overflow: hidden;
}
.about-box::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(201,168,76,.03) 0px, rgba(201,168,76,.03) 1px, transparent 1px, transparent 10px);
}
.about-text .section-title { margin-bottom: 28px; }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 1rem; line-height: 1.9; }

/* STATS TICKER */
.stats-ticker {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  background: var(--dark);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.stats-track {
  display: flex; gap: 60px;
  width: max-content;
  animation: ticker 14s linear infinite;
}
.stats-track span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--cream);
  white-space: nowrap; font-weight: 400;
}
.ticker-dot { color: var(--gold) !important; font-size: .9rem !important; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CONTACT */
#contact { background: var(--dark2); text-align: center; }
#contact .section-label, #contact .section-title { text-align: center; }
#contact .section-title { margin-bottom: 48px; }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; max-width: 900px; margin: 0 auto;
}
.contact-item { background: var(--dark3); padding: 40px 32px; transition: background .3s; }
.contact-item:hover { background: rgba(201,168,76,.07); }
.contact-item span { font-size: 1.8rem; display: block; margin-bottom: 16px; }
.contact-item h4 {
  font-size: .7rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-item p, .contact-item a { color: var(--text-muted); font-size: .95rem; text-decoration: none; }
.contact-item a:hover { color: var(--gold); }
.contact-form {
  max-width: 700px; margin: 60px auto 0;
  background: rgba(13,13,13,.72);
  border: 1px solid rgba(201,168,76,.22);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 44px 40px;
  box-shadow: 0 0 0 1px rgba(201,168,76,.08), 0 8px 40px rgba(0,0,0,.7), 0 32px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(201,168,76,.12);
  position: relative; text-align: left;
}
.contact-form::before, .contact-form::after {
  content: ''; position: absolute;
  width: 22px; height: 22px;
  border-color: var(--gold); border-style: solid; opacity: 0.6;
}
.contact-form::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.contact-form::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.field { position: relative; }
.field-full { margin-bottom: 32px; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: var(--cream); font-family: 'Jost', sans-serif;
  font-size: 1rem; font-weight: 300; padding: 22px 0 8px;
  outline: none; transition: border-color .3s; resize: none;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field label {
  position: absolute; top: 16px; left: 0;
  font-size: .78rem; font-weight: 400; color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase;
  transition: all .25s ease; pointer-events: none;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: 2px; font-size: .6rem; letter-spacing: 3px; color: var(--gold);
}
.field textarea { min-height: 90px; }
.btn-send {
  width: 100%; margin-top: 8px; padding: 18px;
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: .82rem;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  transition: background .3s, color .3s, transform .2s;
}
.btn-send:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.reviews-link {
  display: block; text-align: center; margin-top: 24px;
  font-size: .75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color .3s;
}
.reviews-link:hover { color: var(--gold); }

/* COMMUNITY */
#community { background: var(--dark); padding: 120px 60px; text-align: center; }
.community-intro { margin-bottom: 64px; }
.community-intro .section-title em { font-style: italic; color: var(--gold); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; max-width: 1100px; margin: 0 auto 60px;
}
.review-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.review-photo {
  width: 100%; height: 100%; background-size: cover;
  background-position: center; transition: transform .6s ease;
}
.review-card:hover .review-photo { transform: scale(1.06); }
.review-hover {
  position: absolute; inset: 0;
  background: rgba(13,13,13,.35);
  display: flex; align-items: flex-end;
  justify-content: center; padding-bottom: 28px;
  opacity: 1; transition: background .4s ease;
}
.review-card:hover .review-hover { background: rgba(13,13,13,.6); }
.click-label {
  font-size: .58rem; letter-spacing: 8px;
  text-transform: uppercase; color: rgba(255,255,255,.4); transition: color .3s;
}
.review-card:hover .click-label { color: var(--gold); }

/* COMMUNITY CTA */
.community-cta {
  margin-top: 60px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.community-cta-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.btn-write-review {
  font-size: .7rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; background: none;
  border: none; padding: 0; cursor: pointer; transition: color .3s;
}
.btn-write-review:hover { color: var(--gold); }

/* MODAL */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s ease; padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--dark3); border: 1px solid rgba(201,168,76,.22);
  padding: 52px 48px; max-width: 560px; width: 100%;
  position: relative; box-shadow: 0 32px 80px rgba(0,0,0,.8);
  text-align: center; animation: fadeUp .4s ease both;
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1rem; cursor: pointer; transition: color .3s;
  width: 32px; height: 32px;
}
.modal-close:hover { color: var(--gold); }
.modal-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.modal-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 16px; }
.modal-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--cream); margin-bottom: 4px; }
.modal-service { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.modal-text { color: var(--text-muted); font-size: .98rem; line-height: 1.9; font-style: italic; }

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
}
.footer-map {
  width: 100%;
  height: 220px;
  filter: grayscale(100%) invert(92%) contrast(83%);
  opacity: 0.85;
}
.footer-top {
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-bottom {
  padding: 14px 60px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-bottom p {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin: 0;
}
.footer-credit-logo img {
  height: 24px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity .3s;
}
.footer-credit-logo:hover img { opacity: 1; }

/* FLOATS */
.float-wa, .float-ig {
  position: fixed; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 200; transition: transform .3s, box-shadow .3s;
}
.float-wa {
  bottom: 88px; background: #25d366; color: #fff;
  box-shadow: 0 8px 30px rgba(37,211,102,.35);
}
.float-ig {
  bottom: 28px;
  background: radial-gradient(circle at 30% 110%, #f09433, #dc2743 50%, #bc1888);
  color: #fff; box-shadow: 0 8px 30px rgba(220,39,67,.35);
}
.float-wa:hover, .float-ig:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(0,0,0,.4); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  section { padding: 80px 28px; }
  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  #about { grid-template-columns: 1fr; gap: 60px; padding-bottom: 0; }
  .about-visual { max-width: 400px; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .carousel { aspect-ratio: 16/9; }
  .service-info { padding: 36px 28px; }
  .footer-top { flex-direction: column; gap: 16px; text-align: center; padding: 28px; }
  .footer-map { height: 260px; }
  #community { padding: 80px 28px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 400px; }
  .review-card { aspect-ratio: 4/3; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  nav { padding: 20px 24px; }
  .hero-title { font-size: 2.8rem; }
  .hero-box { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 36px 24px; }
  .stats-track span { font-size: 1rem; }
}
.footer-bottom {
  padding: 16px 60px;
  background: #000;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-bottom p {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin: 0;
}
.footer-credit-logo img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.75;
  transition: opacity .3s;
  border-radius: 3px;
}
.footer-credit-logo:hover img { opacity: 1; }