@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* ========================================
   VARIABLES
   ======================================== */
:root {
  --slate-900: #0f1923;
  --slate-800: #1a2836;
  --slate-700: #2a3f52;
  --slate-600: #3d5a80;
  --nav-bg: #4a5d6e;
  --steel: #5a7d9a;
  --copper: #c17f3e;
  --copper-light: #d4973f;
  --copper-glow: #e8a94840;
  --logo-blue: #1e45fa;
  --logo-blue-soft: rgba(30,69,250,0.12);
  --warm-stone: #f0ebe3;
  --warm-cream: #f7f3ed;
  --warm-white: #faf8f5;
  --text-light: #e8e2d9;
  --text-muted: #9aabba;
  --text-dark: #1a2836;
  --text-body: #3a4a5a;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   UTILITY BAR
   ======================================== */
.utility-bar {
  background: var(--slate-900);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.utility-bar a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.utility-bar a:hover {
  color: var(--copper-light);
}

.utility-bar .ub-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  background: var(--nav-bg);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--copper);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--copper) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: var(--copper-light) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  margin: 6px 0;
  transition: all 0.3s;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-copper {
  background: var(--copper);
  color: white;
  box-shadow: 0 4px 15px rgba(193,127,62,0.3);
}

.btn-copper:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193,127,62,0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.05);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  background: linear-gradient(160deg, var(--slate-900) 0%, #111e2e 40%, var(--slate-700) 100%);
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(193,127,62,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 15%, rgba(30,69,250,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 8px,
    rgba(90,125,154,0.04) 8px, rgba(90,125,154,0.04) 10px
  );
  mask-image: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,127,62,0.15);
  border: 1px solid rgba(193,127,62,0.3);
  color: var(--copper-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.2rem;
  color: white;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--copper-light);
  font-size: 0.85em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========================================
   HERO STATS CARD
   ======================================== */
.hero-stats-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-stats-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  color: white;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--copper-light);
  line-height: 1;
  min-width: 90px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ========================================
   SECTION HEADERS (shared)
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--slate-800);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: 90px 0;
  background: var(--warm-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(26,40,54,0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26,40,54,0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--slate-800);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: inset 0 0 20px rgba(30,69,250,0.15);
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--slate-800);
  letter-spacing: 1px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--logo-blue);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ========================================
   GALLERY / OUR WORK
   ======================================== */
.gallery-section {
  padding: 90px 0;
  background: var(--slate-800);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193,127,62,0.06), transparent 70%);
  pointer-events: none;
}

.gallery-section .section-header h2 {
  color: white;
}

.gallery-section .section-header p {
  color: var(--text-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover {
  border-color: rgba(30,69,250,0.3);
  box-shadow: 0 0 20px rgba(30,69,250,0.1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Zoom icon overlay */
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,25,35,0.5);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Placeholder for when no image is loaded yet */
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--slate-700);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.5;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,18,26,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px 12px;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.lightbox-prev {
  left: -64px;
}

.lightbox-next {
  right: -64px;
}

.lightbox-counter {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
  letter-spacing: 1px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 90px 0;
  background: var(--warm-stone);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: white;
  padding: 36px;
  border-radius: 12px;
  border-left: 4px solid var(--copper);
  position: relative;
  box-shadow: 0 2px 12px rgba(26,40,54,0.05);
}

.testimonial-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--copper);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  right: 28px;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: 0.5px;
}

/* ========================================
   LAKE SERVICE AREAS
   ======================================== */
.lake-preview {
  padding: 80px 0;
  background: var(--warm-cream);
}

.lake-preview .container {
  text-align: center;
}

.lake-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px auto;
  max-width: 900px;
}

.lake-chip {
  background: white;
  border: 1px solid rgba(26,40,54,0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: all 0.2s;
  cursor: default;
}

.lake-chip:hover {
  background: var(--logo-blue);
  color: white;
  border-color: var(--logo-blue);
  box-shadow: 0 4px 12px rgba(30,69,250,0.25);
}

.lake-note {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-top: 20px;
}

.lake-note a {
  color: var(--copper);
  text-decoration: none;
  font-weight: 600;
}

.lake-note a:hover {
  text-decoration: underline;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--slate-900) 0%, #111e2e 50%, var(--slate-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--copper-glow), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

.cta-methods {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  position: relative;
}

.cta-methods a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.cta-methods a:hover {
  color: var(--copper-light);
}

/* ========================================
   INFO BAR
   ======================================== */
.info-bar {
  padding: 60px 0;
  background: var(--warm-stone);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-block h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  color: var(--slate-800);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--copper);
  display: inline-block;
}

.info-block p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}

.info-block a {
  color: var(--copper);
  text-decoration: none;
  font-weight: 500;
}

.info-block a:hover {
  text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--slate-900);
  padding: 40px 0 28px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--copper-light);
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--copper);
  margin: 0 auto 20px;
  opacity: 0.4;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.78rem;
  opacity: 0.6;
}

.footer .sister-link {
  margin-top: 10px;
  font-size: 0.8rem;
}

.footer .sister-link a {
  color: var(--copper);
  text-decoration: none;
}

.footer .sister-link a:hover {
  text-decoration: underline;
}

.footer-blue-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, var(--logo-blue) 50%, transparent 90%);
  opacity: 0.4;
}

/* ========================================
   SMOOTH SCROLL
   ======================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    padding: 16px 24px;
    border-bottom: 3px solid var(--copper);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    gap: 4px;
  }

  .nav-toggle {
    display: block;
  }

  .utility-bar .container {
    justify-content: center;
    text-align: center;
  }

  .utility-bar .ub-right {
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .cta-banner h2 {
    font-size: 2.2rem;
  }

  .cta-methods {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Lightbox responsive */
  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats-card {
    padding: 28px 24px;
  }

  .stat-num {
    font-size: 2rem;
    min-width: 70px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}