/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

:root {
  --primary: #202221;
  --primary-dark: #111312;
  --primary-accent: #3a4a3e;
  --primary-rgb: 32, 34, 33;
  --white: #FFFFFF;
  --dark: #0D0D0D;
  --dark-surface: #141414;
  --dark-card: #1e1e1e;
  --dark-border: #2a2a2a;
  --dark-footer: #0A0A0A;
  --text-muted: #999999;
  --text-subtle: #aaaaaa;
  --gold: #C8A96E;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  background: linear-gradient(160deg, #0a0a0a 0%, #111111 40%, #0d0d0d 100%);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 { font-size: clamp(2rem, 5vw, 3.75rem);   font-weight: 800; line-height: 1.1;  letter-spacing: -0.02em; font-family: var(--font-heading); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; font-family: var(--font-heading); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem);  font-weight: 700; line-height: 1.25; font-family: var(--font-heading); }
p  { font-size: clamp(1rem, 1.5vw, 1.1rem);   line-height: 1.6; }

.eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   UTILITIES & SHARED BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: #0D0D0D;
  border-radius: 6px;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-body);
}
.btn-primary:hover { background: #b8944f; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 6px;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-outline-white svg { stroke: var(--white); transition: stroke 0.2s; }
.btn-outline-white:hover svg { stroke: var(--primary); }

.btn-white-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--white);
  color: var(--primary);
  border-radius: 6px;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-body);
}
.btn-white-primary:hover { background: #f0f0f0; transform: translateY(-2px); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { margin-bottom: 3rem; }
.section-header .eyebrow { color: var(--gold); margin-bottom: 0.75rem; display: block; }
.section-cta { margin-top: 3rem; text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.nav-logo img {
  height: 130px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: #ccc;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: var(--gold);
  color: #0D0D0D;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.nav-cta:hover { background: var(--gold); color: #0D0D0D; }

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #0D0D0D;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.nav-social:hover { background: var(--gold); color: #0D0D0D; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0D0D0D;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1772305336606-989a457ffbae?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.716) 0%,
    rgba(32, 34, 33, 0.15) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text .eyebrow {
  display: inline-block;
  color: var(--gold);
  background: rgba(200, 169, 110, 0.22);
  border: 1px solid rgba(200, 169, 110, 0.6);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-text h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-text p { color: rgba(255,255,255,0.88); max-width: 480px; margin-bottom: 2rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}
.hero-badge svg { color: var(--gold); flex-shrink: 0; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero entrance animations */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero elements hidden until splash exits */
.hero-text .eyebrow,
.hero-text h1,
.hero-text > p,
.hero-trust,
.hero-buttons,
.hero-form-card { opacity: 0; }

/* Animations fire once .hero-ready is added after splash */
.hero-ready .hero-text .eyebrow { animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s  both; }
.hero-ready .hero-text h1        { animation: hero-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both; }
.hero-ready .hero-text > p       { animation: hero-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.4s  both; }
.hero-ready .hero-trust          { animation: hero-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both; }
.hero-ready .hero-buttons        { animation: hero-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.7s  both; }
.hero-ready .hero-form-card      { animation: hero-fade-up 0.9s  cubic-bezier(0.22, 1, 0.36, 1) 0.4s  both; }

/* Hero Form Card */
.hero-form-card {
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  padding: 2rem;
  scroll-margin-top: 80px;
}
#hero-form { scroll-margin-top: 80px; }

.hero-form-card h3 { color: var(--white); margin-bottom: 0.4rem; }
.hero-form-card .form-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1.5px solid #333;
  color: white;
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #222;
}
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  color: #0D0D0D;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: #b8944f; }

.form-note { color: #888; font-size: 1rem; text-align: center; margin-top: 0.75rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success h4 { color: var(--gold); font-size: 1.35rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--text-subtle); font-size: 1rem; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a, .hero-buttons button { width: 100%; justify-content: center; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--gold);
}
.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 20s linear infinite;
  will-change: transform;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 2.5rem;
  white-space: nowrap;
  border-right: 1px solid rgba(0,0,0,0.15);
  color: #0D0D0D;
  flex-shrink: 0;
}
.trust-item svg { color: #0D0D0D; flex-shrink: 0; }
.trust-item-text strong { display: block; font-size: clamp(1rem, 1.5vw, 1.1rem); font-weight: 800; line-height: 1.2; color: #0D0D0D; }
.trust-item-text span  { font-size: 1rem; opacity: 0.75; color: #0D0D0D; }
@keyframes trust-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; gap: 1rem; padding: 0 1rem; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: linear-gradient(145deg, #0a0a0a 0%, #1d1d1d 28%, #0f0f0f 52%, #191919 76%, #0a0a0a 100%);
  padding: 5rem 2rem;
}
.services .section-header { text-align: center; }
.services .section-header h2 { color: var(--white); }
.services .section-header p { color: var(--text-muted); max-width: 580px; margin: 0.75rem auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--dark-card);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.8s ease, background 0.8s ease;
}
.service-card:hover {
  transform: translateY(-5px) scale(1.007);
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
  border-color: #e0bc7a;
  background: #242424;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,169,110,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { color: var(--gold); }
.service-card h3 { color: var(--white); margin-bottom: 0.6rem; }
.service-card p { color: #999; }

.services-cta { max-width: 1200px; margin: 32px auto 0; }

@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background-image: url('https://www.southernsurfaces.co/images/IMG_6206-min-1-p-1600.jpeg');
  background-size: cover;
  background-position: center;
}
.about.parallax-section { background-attachment: fixed; }

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.642) 0%,
    rgba(32, 34, 33, 0.75) 100%
  );
}

.about-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-inner .eyebrow { color: var(--gold); margin-bottom: 0.75rem; display: block; }
.about-inner h2 { color: var(--white); margin-bottom: 1.25rem; }
.about-inner > p { color: rgba(255,255,255,0.88); margin-bottom: 2rem; }

.about-checks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}
.about-check svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: linear-gradient(125deg, #111111 0%, #0d0d0d 32%, #1c1c1c 58%, #0e0e0e 82%, #131313 100%);
  padding: 5rem 2rem;
}
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery .section-header { text-align: center; }
.gallery .section-header h2 { color: var(--white); }
.gallery .section-header p { color: var(--text-muted); max-width: 540px; margin: 0.75rem auto 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  height: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-marquee { display: none; }

@media (max-width: 768px) {
  .gallery-grid { display: none; }
  .gallery-marquee {
    display: block;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }
}
@media (min-width: 769px) { .gallery-marquee { display: none; } }

.gallery-marquee-track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 20s linear infinite;
}
.gallery-marquee-item {
  width: 75vw;
  height: 56vw;
  max-width: 320px;
  max-height: 240px;
  flex-shrink: 0;
  margin-right: 0.75rem;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-marquee-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes gallery-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background-image: url('../images/gallery-6.jpeg');
  background-position: center 75%;
}
.testimonials.parallax-section { background-attachment: fixed; }

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(32, 34, 33, 0.88) 100%
  );
}

.testimonials-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.testimonials-header .eyebrow { color: var(--gold); margin-bottom: 0.75rem; display: block; }
.testimonials-header h2 { color: var(--white); margin-bottom: 0.75rem; }
.testimonials-header p { color: rgba(255,255,255,0.8); }

.testimonials-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 260px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.testimonial-quote-mark {
  font-size: 5rem;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  opacity: 0.3;
  color: var(--gold);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.testimonial-stars span { color: #F5A623; font-size: 1.1rem; }

.testimonial-card blockquote {
  font-style: italic;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.testimonials-cta { text-align: center; margin-top: 3rem; position: relative; z-index: 2; }

@media (max-width: 768px) {
  .testimonials-cards { flex-direction: column; }
}

/* ============================================================
   SERVICE AREA MARQUEE
   ============================================================ */
.service-area-banner {
  overflow: hidden;
  padding: 1.25rem 0;
  background: var(--primary);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 2.5rem;
  white-space: nowrap;
  color: var(--white);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  flex-shrink: 0;
}
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; padding: 0 1rem; gap: 0.5rem 1.5rem; }
}

/* ============================================================
   BOTTOM CONTACT FORM
   ============================================================ */
.contact {
  background: linear-gradient(155deg, #0d0d0d 0%, #1a1a1a 30%, #0b0b0b 58%, #181818 82%, #0d0d0d 100%);
  padding: 5rem 2rem;
}
#bottom-form { scroll-margin-top: 80px; }

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .eyebrow { color: var(--gold); margin-bottom: 0.75rem; display: block; }
.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-row svg { color: var(--gold); flex-shrink: 0; width: 20px; height: 20px; }
.contact-row a { color: var(--white); font-size: clamp(1rem, 1.5vw, 1.1rem); font-weight: 600; transition: color 0.2s; }
.contact-row a:hover { color: var(--gold); }
.contact-row span { color: var(--white); font-size: clamp(1rem, 1.5vw, 1.1rem); font-weight: 600; }

.contact-form-card {
  background: #0D0D0D;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  padding: 2rem;
}
.contact-form-card h3 { color: var(--white); margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(135deg, #080808 0%, #141414 35%, #090909 65%, #111111 100%);
  border-top: 1px solid #222;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: #888; font-size: 1rem; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: #888; font-size: 1rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-col address { font-style: normal; }
.footer-col address a { color: #888; font-size: 1rem; display: block; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col address a:hover { color: var(--gold); }
.footer-col address span { color: #888; font-size: 1rem; display: block; margin-bottom: 0.6rem; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #222;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { color: #888; font-size: 1rem; }
.footer-bottom a { color: #888; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   MOBILE FLOATING CALL BUTTON
   ============================================================ */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-call-btn:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
@media (max-width: 768px) { .mobile-call-btn { display: flex; } }

/* ============================================================
   ANIMATIONS & FADE-IN
   ============================================================ */
/* Applied via JS */

/* ============================================================
   SPLASH SCREEN
   ============================================================ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 1;
  transition: opacity 0.55s ease;
  pointer-events: all;
}
#splash.splash-out {
  opacity: 0;
  pointer-events: none;
}
#splash-logo {
  width: 320px;
  height: 320px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.88);
  animation: splash-logo-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes splash-logo-in {
  to { opacity: 1; transform: scale(1); }
}
#splash-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  min-height: 2em;
}
.splash-word {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.splash-word.visible { opacity: 1; }
