/* ============================================================
   Gold Rush Hauling — style.css
   Design: Bold typography, charcoal + gold, Flyhyer-inspired
   ============================================================ */

/* --- Google Fonts loaded per-page --- */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --dark:       #1C1C1E;
  --dark-2:     #2a2a2d;
  --dark-3:     #111113;
  --gold:       #C9A84C;
  --gold-light: #E2C06C;
  --white:      #FFFFFF;
  --off-white:  #F7F7F5;
  --gray:       #888888;
  --gray-light: #BBBBBB;
  --border-dark:  rgba(255, 255, 255, 0.10);
  --border-light: #E5E5E5;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad:    clamp(80px, 10vw, 140px);
  --container-pad:  clamp(24px, 5vw, 80px);
  --nav-height:     72px;
  --btn-radius:     50px;
  --card-radius:    12px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(28, 28, 30, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--container-pad);
  max-width: 1600px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a,
.nav-dropdown > span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-dropdown:hover > span {
  color: var(--white);
}

.nav-links a.active {
  color: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--card-radius);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: calc(100% + 8px);
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s;
}

.nav-dropdown .dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

/* Nav CTA */
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: var(--btn-radius);
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* Hamburger */
.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: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-3);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  letter-spacing: -0.02em;
  padding: 4px 0;
}

.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-divider {
  width: 40px;
  height: 1px;
  background: var(--border-dark);
  margin: 16px 0;
}

.mobile-cta-link {
  margin-top: 8px;
  color: var(--gold) !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--btn-radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }

.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ============================================================
   SECTION CONTAINERS
   ============================================================ */
.section {
  padding: var(--section-pad) var(--container-pad);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-darker {
  background: var(--dark-3);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--dark);
}

.section-off-white {
  background: var(--off-white);
  color: var(--dark);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl {
  font-size: clamp(56px, 10vw, 130px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.display-md {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.display-sm {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.editorial-text {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.body-lg   { font-size: 18px; line-height: 1.65; }
.body-md   { font-size: 16px; line-height: 1.6; }
.body-sm   { font-size: 14px; line-height: 1.6; }
.text-gray { color: var(--gray); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: stretch;
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* Subtle gold bottom border on all heroes */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  width: 100%;
  padding: 60px var(--container-pad) 0;
  gap: 0 clamp(20px, 5vw, 80px);
  max-width: 1600px;
  margin: 0 auto;
}

.hero-brand {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: clamp(56px, 10.5vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-tagline {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-top: 40px;
}

.hero-sub {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
}

.hero-desc {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 380px;
}

.hero-actions {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 60px 0 clamp(60px, 8vh, 100px);
  flex-wrap: wrap;
}

/* Page-level heroes (shorter than homepage) */
.hero-page {
  min-height: 60vh;
}

.hero-page .hero-inner {
  padding-top: 20px;
}

/* ============================================================
   FEATURE GRID (Flyhyer-style with divider lines)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feature-item {
  padding: 36px 40px 36px 0;
  border-top: 1px solid var(--border-light);
}

.feature-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-left: 1px solid var(--border-light);
}

.feature-grid-dark .feature-item {
  border-top-color: var(--border-dark);
}
.feature-grid-dark .feature-item:nth-child(even) {
  border-left-color: var(--border-dark);
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
}

.feature-grid-dark .feature-desc { color: var(--gray-light); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--card-radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-card-icon {
  font-size: 32px;
  line-height: 1;
}

.service-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: 8px;
}

.service-card:hover .service-card-link { gap: 10px; }

/* ============================================================
   SPLIT LAYOUT (text | content)
   ============================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.split-layout.reverse { grid-template-columns: 1.4fr 1fr; }
.split-layout.reverse .split-text { order: 2; }
.split-layout.reverse .split-visual { order: 1; }

.split-layout.equal { grid-template-columns: 1fr 1fr; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial-item {
  padding: 40px 0;
  border-top: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.testimonial-item:last-child {
  border-bottom: 1px solid var(--border-dark);
}

.testimonial-quote {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step-item {
  padding: 36px 32px 36px 0;
  border-top: 2px solid var(--gold);
  border-right: 1px solid var(--border-dark);
}

.step-item:last-child { border-right: none; padding-right: 0; }
.step-item:not(:first-child) { padding-left: 32px; }

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ============================================================
   ECO / STATS STRIP
   ============================================================ */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.eco-item {
  padding: 40px;
  border-right: 1px solid var(--border-light);
  text-align: center;
}

.eco-item:last-child { border-right: none; }
.eco-icon { font-size: 32px; margin-bottom: 16px; }
.eco-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.eco-desc  { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   PACKAGES / PRICING CARDS
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.package-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.package-card.featured {
  border-color: var(--gold);
  background: var(--off-white);
}

.package-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.package-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.package-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0;
}

.package-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-dark .form-group label { color: rgba(255,255,255,0.5); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--border-light);
  font-size: 15px;
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-dark .form-group input,
.form-dark .form-group select,
.form-dark .form-group textarea {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-dark);
  color: var(--white);
}

.form-dark .form-group input:focus,
.form-dark .form-group select:focus,
.form-dark .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.form-dark .form-group input::placeholder,
.form-dark .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* Photo upload area */
.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
  border: 2px dashed var(--border-dark);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.upload-label:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.upload-icon { font-size: 28px; }
.upload-text { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); }
.upload-sub  { font-size: 13px; color: rgba(255,255,255,0.4); }
.upload-input { display: none; }

.photo-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.photo-preview img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.remove-photo {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
.remove-photo:hover { border-color: #ff6b6b; color: #ff6b6b; }

/* Form success */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success p { color: rgba(255,255,255,0.6); font-size: 16px; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--btn-radius);
  border: 1.5px solid var(--border-light);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  color: var(--gray);
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

.gallery-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-card:hover .gallery-photo-wrap img { transform: scale(1.04); }

.gallery-photo-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.gallery-photo-label.before {
  background: rgba(28,28,30,0.85);
  color: rgba(255,255,255,0.7);
}

.gallery-photo-label.after {
  background: rgba(201,168,76,0.9);
  color: var(--dark);
}

.gallery-card-info {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-card-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gallery-card-date {
  font-size: 12px;
  color: var(--gray);
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--gray);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-top: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-item:last-child { border-bottom: 1px solid var(--border-light); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.2s;
  color: var(--gray);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--card-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info-icon { font-size: 22px; }
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-wrap {
  min-height: 100vh;
  background: var(--dark-3);
  color: var(--white);
  padding-top: var(--nav-height);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px var(--container-pad);
  border-bottom: 1px solid var(--border-dark);
  background: var(--dark);
}

.admin-header h1 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-header h1 span { color: var(--gold); }

.admin-body {
  padding: 48px var(--container-pad);
  max-width: 1000px;
  margin: 0 auto;
}

.admin-section {
  background: var(--dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--card-radius);
  padding: 36px;
  margin-bottom: 32px;
}

.admin-section h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}

.admin-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.admin-photo-card {
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
}

.admin-photo-card .photos { display: grid; grid-template-columns: 1fr 1fr; }
.admin-photo-card img { width: 100%; height: 80px; object-fit: cover; }

.admin-photo-card-info {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.admin-photo-label { font-size: 12px; font-weight: 600; flex: 1; }

.admin-delete-btn {
  background: none;
  border: 1px solid rgba(255,100,100,0.3);
  color: #ff6b6b;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
.admin-delete-btn:hover { background: rgba(255,100,100,0.1); }

/* Login screen */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  padding: 40px 20px;
}

.admin-login-box {
  background: var(--dark);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.admin-login-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}

.admin-login-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  text-align: center;
  padding: var(--section-pad) var(--container-pad);
}

.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

/* ============================================================
   AREA / TAG LISTS
   ============================================================ */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 18px;
  border-radius: var(--btn-radius);
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid var(--border-dark);
}

.tag-gold {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border-color: rgba(201,168,76,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-3);
  color: var(--white);
  padding: 72px var(--container-pad) 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 8vw, 120px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 36px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 220px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.text-center { text-align: center; }
.text-right  { text-align: right; }
.d-flex      { display: flex; }
.align-center { align-items: center; }
.gap-16      { gap: 16px; }
.gap-24      { gap: 24px; }
.max-600     { max-width: 600px; }
.max-800     { max-width: 800px; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* Gold divider line */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0;
  border-radius: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid    { grid-template-columns: 1fr 1fr; }
  .steps-grid .step-item { border-right: none; }
  .steps-grid .step-item:nth-child(odd) { border-right: 1px solid var(--border-dark); }
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
  }
  .hero-brand  { grid-column: 1; grid-row: 1; padding-top: 40px; }
  .hero-tagline { grid-column: 1; grid-row: 2; padding-top: 32px; }
  .hero-actions { grid-column: 1; grid-row: 3; }

  .split-layout,
  .split-layout.reverse { grid-template-columns: 1fr; }
  .split-layout.reverse .split-text,
  .split-layout.reverse .split-visual { order: unset; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .eco-grid { grid-template-columns: 1fr; }
  .eco-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .eco-item:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px; --container-pad: 20px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-item:nth-child(even) { border-left: none; padding-left: 0; }

  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid .step-item { border-right: none; padding-left: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .testimonial-item { grid-template-columns: 1fr; gap: 16px; }
  .contact-info-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
}
