/* ==========================================================================
   CSS VARIABLES & GLOBAL SETTINGS
   ========================================================================== */
:root {
  --color-obsidian: #0C0C0C;
  --color-ivory: #F9F5EF;
  --color-champagne: #C9A96E;
  --color-charcoal: #1E1E1E;
  --color-fog: #6B6B6B;
  --color-blush: #F2EBE3;
  --color-white: #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-nebula: 'Nebula', 'Cormorant Garamond', serif;
  
  --max-width: 1280px;
  --section-padding-desk: 120px 0;
  --section-padding-mob: 64px 0;
  --transition-smooth: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-obsidian);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* For custom cursor, hidden on default */
}

/* Fallback for touch devices */
@media (hover: none) and (pointer: coarse) {
  body {
    cursor: auto;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   CUSTOM CURSOR (Desktop Only)
   ========================================================================== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-champagne);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: transform 0.1s ease-out, width 0.2s, height 0.2s;
}

body.cursor-hover .custom-cursor {
  background-color: transparent;
}
body.cursor-hover .custom-cursor-follower {
  width: 56px;
  height: 56px;
  border-color: var(--color-champagne);
  background-color: rgba(201, 169, 110, 0.1);
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-follower {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.section-title {
  font-size: clamp(32px, 10vw, 64px);
  margin-bottom: 24px;
  font-weight: 300;
}
.section-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-champagne);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.text-center { text-align: center; }
.mb-5 { margin-bottom: 48px; }
.mt-5 { margin-top: 48px; }
.mt-4 { margin-top: 32px; }
.mt-2 { margin-top: 16px; }

/* The Gold Hairline Rule */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: 1px;
  background-color: rgba(201, 169, 110, 0.4); /* champagne at 40% */
  position: relative;
}
.section-divider .diamond {
  position: absolute;
  background-color: var(--color-obsidian);
  color: var(--color-champagne);
  font-size: 10px;
  padding: 0 8px;
}
.section-divider.hairline-footer {
  margin-top: 60px;
}
.services .section-divider .diamond,
.testimonials .section-divider .diamond {
  background-color: var(--color-ivory); /* matches light sections */
}

/* CTAs */
.cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  padding: 14px 28px;
  border: 1px solid var(--color-champagne);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: var(--transition-smooth);
}
.primary-cta {
  color: var(--color-white);
}
.primary-cta:hover {
  background-color: var(--color-champagne);
  color: var(--color-obsidian);
}
.secondary-cta {
  color: var(--color-champagne);
  border-color: rgba(201, 169, 110, 0.3);
}
.secondary-cta:hover {
  border-color: var(--color-champagne);
  background-color: rgba(201, 169, 110, 0.05);
}
.text-link {
  color: var(--color-champagne);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  display: inline-block;
}
.text-link:hover {
  color: var(--color-white);
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background-color: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-champagne);
}
/* Nebula = Company logo font; Cormorant Garamond as fallback if font file not present */
.nebula-logo {
  font-family: var(--font-nebula);
  letter-spacing: 0.06em;
}
.desktop-nav {
  display: none;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 0.95rem;
  color: var(--color-white);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-champagne);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.desktop-only {
  display: none;
}
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  transform: translateY(-0px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .desktop-nav { display: block; }
  .desktop-only { display: inline-block; }
  .hamburger-btn { display: none; }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 0 24px;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  width: 100%;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.mobile-logo {
  font-size: 24px;
}
.mobile-close-btn {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  font-weight: 300;
  transition: color 0.3s ease;
}
.mobile-close-btn:hover {
  color: var(--color-champagne);
}
.mobile-nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-nav-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu-overlay.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger link animations */
.mobile-nav-links li:nth-child(1) .mobile-link { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) .mobile-link { transition-delay: 0.15s; }
.mobile-nav-links li:nth-child(3) .mobile-link { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(4) .mobile-link { transition-delay: 0.25s; }
.mobile-nav-links li:nth-child(5) .mobile-link { transition-delay: 0.3s; }
.mobile-nav > .mobile-link { transition-delay: 0.35s; } /* CTA button */

.mobile-contact-info {
  margin-top: auto;
  padding-bottom: 40px;
  text-align: center;
  color: var(--color-fog);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
}
.mobile-menu-overlay.active .mobile-contact-info {
  opacity: 1;
}
.mobile-contact-info p {
  margin-bottom: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.52);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.hero-text-wrapper {
  max-width: 800px;
}
.hero .eyebrow {
  display: block;
  color: var(--color-champagne);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(40px, 12vw, 96px);
  color: var(--color-white);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
/* Staggered animation for hero title */
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.35s; }
.hero-title .word:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-fog);
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Infinite Ticker Tape */
.hero-ticker-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: rgba(12, 12, 12, 0.8);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  z-index: 3;
  padding: 12px 0;
}
.hero-ticker {
  display: flex;
  width: fit-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  color: var(--color-champagne);
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-right: 16px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats {
  background-color: var(--color-charcoal);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-number, .stat-plus {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--color-champagne);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-fog);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
  padding: var(--section-padding-mob);
}
@media (min-width: 1024px) {
  .about { padding: var(--section-padding-desk); }
}
.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-container { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
}
.about-text {
  font-size: 16px;
  color: var(--color-fog);
  margin-bottom: 32px;
}
.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.pill {
  font-size: 13px;
  color: var(--color-champagne);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 6px 16px;
  border-radius: 0;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services {
  background-color: var(--color-ivory);
  color: var(--color-obsidian);
  padding: var(--section-padding-mob);
}
@media (min-width: 1024px) {
  .services { padding: var(--section-padding-desk); }
}
.services-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.services-grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .services-grid { 
    display: grid;
    overflow-x: visible;
    grid-template-columns: repeat(2, 1fr); 
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.service-card {
  flex: 0 0 85%;
  scroll-snap-align: center;
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 0;
}
@media (min-width: 768px) {
  .service-card { flex: auto; }
}
.service-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}
.service-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  z-index: 2;
  transition: background 0.5s ease;
}
.service-card:hover .card-bg {
  transform: scale(1.05);
}
.service-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}
.service-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px;
  z-index: 3;
  color: var(--color-white);
}
.card-title {
  font-size: 26px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.service-card:hover .card-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-champagne);
  animation: expandWidth 0.3s forwards;
}
@keyframes expandWidth {
  from { width: 0; }
  to { width: 100%; }
}
.card-desc {
  font-size: 13px;
  color: var(--color-ivory);
  opacity: 0.8;
  margin: 0;
}
.card-cta {
  display: inline-block;
  font-size: 12px;
  color: var(--color-champagne);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card-link {
  display: block;
  flex: 0 0 85%;
  scroll-snap-align: center;
  text-decoration: none;
  color: inherit;
}
.service-card-link .service-card {
  flex: 1 1 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .service-card-link { flex: auto; }
}
.service-card-link:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process {
  padding: var(--section-padding-mob);
}
@media (min-width: 1024px) {
  .process { padding: var(--section-padding-desk); }
}
.process-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .process-line {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(201, 169, 110, 0.4);
    z-index: 1;
  }
}
.process-step {
  text-align: left;
}
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(201, 169, 110, 0.15); /* bare visible champagne */
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
  background-color: var(--color-obsidian);
  padding-right: 24px;
}
.step-title {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-white);
  font-family: var(--font-body);
}
.step-desc {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-fog);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery {
  padding: var(--section-padding-mob);
}
@media (min-width: 1024px) {
  .gallery { padding: var(--section-padding-desk); }
}
.gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 24px;
  scrollbar-width: none;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.gallery-grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .gallery-grid { 
    display: block;
    columns: 2; 
    column-gap: 24px;
    margin: 0;
    padding: 0;
    overflow-x: visible;
  }
}
@media (min-width: 1024px) {
  .gallery-grid { columns: 3; }
}
.gallery-item {
  flex: 0 0 75%;
  scroll-snap-align: center;
  height: 360px;
  break-inside: avoid;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (min-width: 768px) {
  .gallery-item { 
    height: auto; 
    margin-bottom: 24px;
  }
  .gallery-item img { height: auto; }
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(201, 169, 110, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.plus-icon {
  font-size: 32px;
  color: var(--color-white);
  font-weight: 300;
  transform: scale(0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .plus-icon {
  transform: scale(1);
}
.social-follow {
  font-size: 1.4rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-champagne);
  font-size: 32px;
  cursor: pointer;
  padding: 20px;
  z-index: 2001;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  background-color: var(--color-ivory);
  color: var(--color-obsidian);
  padding: var(--section-padding-mob);
}
@media (min-width: 1024px) {
  .testimonials { padding: var(--section-padding-desk); }
}
.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--color-champagne);
  line-height: 1;
  margin-bottom: -20px;
  opacity: 0.5;
}
.carousel-track-container {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 24px;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.carousel-slide.active-slide {
  opacity: 1;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 4vw, 24px);
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 14px;
  color: var(--color-fog);
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.carousel-btn {
  background: none;
  border: none;
  color: var(--color-champagne);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(201, 169, 110, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.dot.active {
  background-color: var(--color-champagne);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us {
  padding: var(--section-padding-mob);
}
@media (min-width: 1024px) {
  .why-us { padding: var(--section-padding-desk); }
}
.why-us-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-us-container { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.why-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bullet {
  color: var(--color-champagne);
  font-size: 18px;
  line-height: 1.4;
}
.list-text {
  font-size: 16px;
  color: var(--color-fog);
}
.list-text strong {
  color: var(--color-white);
  font-weight: 500;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact {
  padding: var(--section-padding-mob);
  background-color: var(--color-obsidian);
}
@media (min-width: 1024px) {
  .contact { padding: var(--section-padding-desk); }
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-container { grid-template-columns: 1fr 1.5fr; gap: 80px; }
}
.contact-details {
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 18px;
  color: var(--color-fog);
}
.contact-details p {
  margin-bottom: 12px;
}
.contact-link {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-champagne);
}
.social-icons {
  display: flex;
  gap: 16px;
}
.social-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-champagne);
  font-size: 14px;
}
.social-icon:hover {
  background-color: var(--color-champagne);
  color: var(--color-obsidian);
}

/* Form Styles */
.contact-form {
  position: relative;
}
.form-group {
  margin-bottom: 24px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form select option {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}
/* Change input color for date placeholder */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
  cursor: pointer;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--color-champagne);
  box-shadow: 0 1px 0 0 var(--color-champagne);
}
.submit-btn {
  background-color: var(--color-champagne);
  color: var(--color-obsidian);
  border: none;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 100%;
}
@media (min-width: 768px) {
  .submit-btn { width: auto; }
}
.submit-btn:hover {
  opacity: 0.9;
}
.form-success {
  display: none;
  background-color: rgba(201, 169, 110, 0.1);
  color: var(--color-champagne);
  padding: 16px;
  margin-top: 16px;
  border-left: 2px solid var(--color-champagne);
  font-size: 15px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-obsidian);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-champagne);
  display: block;
  margin-bottom: 16px;
}
.footer-desc {
  color: var(--color-fog);
  font-size: 14px;
  margin-bottom: 24px;
}
.footer-social a {
  color: var(--color-white);
  margin-right: 16px;
  font-size: 14px;
}
.footer-social a:hover {
  color: var(--color-champagne);
}
.footer-heading {
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 24px;
  font-size: 16px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--color-fog);
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--color-champagne);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--color-fog);
  font-size: 13px;
}
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; }
}
