/* JXM CONSTRUCTION - SHARED STYLES */

:root {
  --black: #0a0a0a;
  --dark-1: #131313;
  --dark-2: #1c1c1c;
  --dark-3: #242424;
  --gold: #d4a017;
  --gold-bright: #f5c542;
  --gold-deep: #9a7510;
  --gold-glow: rgba(212, 160, 23, 0.4);
  --white: #ffffff;
  --gray: #a8a8a8;
  --gray-2: #6e6e6e;
  --border: rgba(212, 160, 23, 0.25);
  --border-strong: rgba(212, 160, 23, 0.5);
  --border-bright: rgba(212, 160, 23, 0.7);
  --display: 'Bebas Neue', sans-serif;
  --industrial: 'Rajdhani', sans-serif;
  --body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Locked body background (iOS Safari safe via body::before) */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background-image: url('assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6);
  z-index: -2;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============ NAV ============ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo img {
  height: 58px;
  width: auto;
  transition: transform 0.2s ease;
}
.nav-logo:hover img {
  transform: scale(1.04);
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  font-family: var(--industrial);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  border: 2px solid var(--gold);
  border-radius: 4px;
}
.nav-cta:hover {
  background: transparent;
  color: var(--gold);
}
.nav-cta::after { display: none !important; }
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--gold);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-deep) 15%,
    var(--gold) 50%,
    var(--gold-deep) 85%,
    transparent 100%);
  z-index: 10;
  box-shadow: 0 0 20px var(--gold-glow);
}
.hero.hero-short {
  min-height: 60vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(10,10,10,0.5) 100%);
}
.hero-home .hero-bg { background-image: url('assets/hero.jpg'); }
.hero-services .hero-bg { background-image: url('assets/hero-services.jpg'); }
.hero-about .hero-bg { background-image: url('assets/hero-about.jpg'); }
.hero-contact .hero-bg { background-image: url('assets/hero-contact.jpg'); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 4rem 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--industrial);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--gold);
}
h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  animation: fadeUp 0.9s 0.1s ease both;
}
h1 span {
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 1.2rem;
  color: #d8d8d8;
  margin-bottom: 2.5rem;
  max-width: 620px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1.1s 0.3s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 1.05rem 2.2rem;
  font-family: var(--industrial);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 4px;
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1.05rem 2.2rem;
  font-family: var(--industrial);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 4px;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 1.2s 0.4s ease both;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-family: var(--industrial);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--gold);
  color: var(--black);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee-item::after {
  content: '✦';
  color: var(--black);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
section.panel {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}
.panel-inner {
  background: rgba(19,19,19,0.96);
  border: 2px solid var(--border-strong);
  border-radius: 18px;
  padding: 4.5rem 3.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212, 160, 23, 0.08);
  position: relative;
}
.panel-inner::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Section accent divider (between major sections) */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
  z-index: 2;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-divider-icon {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  padding: 0 0.5rem;
}
.section-eyebrow {
  font-family: var(--industrial);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold);
}
h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
h2 span { color: var(--gold); }
h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin-bottom: 4rem;
}

/* ============ ABOUT TEASER (home) ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}
.about-text p {
  color: #c8c8c8;
  margin-bottom: 1.3rem;
  font-size: 1.05rem;
}
.about-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,160,23,0.25);
}
.about-portrait-sticky {
  position: sticky;
  top: 100px;
  max-height: 720px;
  align-self: start;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}
.about-portrait-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
}
.about-portrait-name {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-portrait-title {
  font-family: var(--industrial);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* About page - story text blocks */
.story-text-block {
  max-width: 820px;
}
.story-text-block h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.story-text-block p {
  color: #c8c8c8;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

/* Values grid (about page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--dark-2);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.value-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  font-weight: 800;
}
.value-name {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.value-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.services-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 30px; height: 30px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 12px 0 0;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,160,23,0.15);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover::after { opacity: 1; }

.service-icon-wrap {
  width: 60px; height: 60px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1.4rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.service-name {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.service-desc {
  color: #c8c8c8;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.service-tag {
  font-family: var(--industrial);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,184,0,0.08);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

/* Services page - image cards */
.service-detail {
  background: var(--dark-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-detail:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.service-detail-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-detail:hover .service-detail-img img {
  transform: scale(1.05);
}
.service-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.7) 100%);
}
.service-detail-body {
  padding: 2rem;
}
.service-detail-body h3 {
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}
.service-detail-body h3 span {
  color: var(--gold);
}
.service-detail-body p {
  color: #c8c8c8;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-detail-list {
  list-style: none;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.service-detail-list li {
  font-family: var(--industrial);
  font-weight: 500;
  color: #d8d8d8;
  font-size: 0.95rem;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}
.service-detail-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============ BEFORE / AFTER ============ */
.ba-list {
  display: grid;
  gap: 4rem;
  margin-top: 4rem;
}
.ba-card {
  background: var(--dark-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  background: var(--dark-2);
}
.ba-img-before {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
.ba-img-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 3;
  cursor: col-resize;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(245,184,0,0.7);
}
.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--black);
  box-shadow: 0 4px 24px rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 900;
  font-size: 1.3rem;
  pointer-events: none;
}
.ba-label {
  position: absolute;
  top: 1.2rem;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  padding: 0.5rem 1.1rem;
  z-index: 4;
  pointer-events: none;
  border-radius: 4px;
}
.ba-label-before { left: 1.2rem; }
.ba-label-after { right: 1.2rem; }
.ba-info {
  padding: 1.8rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--dark-1);
}
.ba-tag {
  font-family: var(--industrial);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.ba-title {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.ba-desc {
  color: var(--gray);
  font-size: 0.98rem;
}

/* ============ FEATURED CAROUSEL (gallery) ============ */
.carousel-wrap {
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.carousel-stage {
  position: relative;
  height: 460px;
  overflow: visible;
  perspective: 1400px;
}
.carousel-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide {
  position: absolute;
  width: 580px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid var(--border-strong);
  background: var(--dark-2);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-slide.is-center {
  z-index: 5;
  transform: translateX(0) scale(1);
  opacity: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 2px var(--gold);
  filter: brightness(1);
}
.carousel-slide.is-left {
  z-index: 3;
  transform: translateX(-65%) scale(0.78);
  opacity: 0.55;
  filter: brightness(0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.carousel-slide.is-right {
  z-index: 3;
  transform: translateX(65%) scale(0.78);
  opacity: 0.55;
  filter: brightness(0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.carousel-slide.is-far-left {
  z-index: 2;
  transform: translateX(-110%) scale(0.6);
  opacity: 0;
  filter: brightness(0.3);
}
.carousel-slide.is-far-right {
  z-index: 2;
  transform: translateX(110%) scale(0.6);
  opacity: 0;
  filter: brightness(0.3);
}
.carousel-slide.is-hidden {
  z-index: 1;
  transform: translateX(0) scale(0.3);
  opacity: 0;
  pointer-events: none;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 48px; height: 48px;
  background: var(--black);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  font-size: 1.3rem;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 0.5rem;
}
.carousel-dot {
  width: 10px; height: 10px;
  background: var(--dark-3);
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  background: var(--dark-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 4rem;
}
.contact-info {
  padding: 4rem 3rem;
  background: linear-gradient(135deg, var(--dark-1), var(--black));
  border-right: 1px solid var(--border);
}
.contact-info h3 {
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.contact-info > p {
  color: var(--gray);
  margin-bottom: 2.5rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.contact-method-label {
  font-family: var(--industrial);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 0.2rem;
}
.contact-method-value {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
}
.contact-method a:hover { color: var(--gold); }

.contact-form {
  padding: 4rem 3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  font-family: var(--industrial);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  transition: border 0.2s;
  border-radius: 4px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 1.15rem;
  font-family: var(--industrial);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--gold);
  transition: all 0.2s;
  border-radius: 4px;
}
.form-submit:hover {
  background: transparent;
  color: var(--gold);
}

/* ============ FULL GALLERY GRID (services page) ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.gallery-grid-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid-item::after {
  content: '⛶';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery-grid-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,160,23,0.2);
}
.gallery-grid-item:hover img {
  transform: scale(1.08);
}
.gallery-grid-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 2px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(212,160,23,0.3);
}
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.lightbox-close:hover {
  background: var(--gold-bright);
  transform: scale(1.05);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--black);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--black);
}
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }
.cta-strip {
  margin-top: 4rem;
  position: relative;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 4rem 3rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(212,160,23,0.2);
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.cta-strip > * {
  position: relative;
  z-index: 2;
}
.cta-strip h3 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.cta-strip p {
  color: #d8d8d8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 64px;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  color: var(--gray);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--gray-2);
  font-size: 0.88rem;
}
.footer-bottom a { color: var(--gold); }

/* Footer social icon buttons */
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.3rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-2);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--gold);
  transition: all 0.25s ease;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212,160,23,0.3);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-credit {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-2);
  width: 100%;
}
.footer-credit a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-credit a:hover {
  color: var(--gold-bright);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav-logo {
    grid-column: 2;
    justify-self: center;
  }
  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
    grid-column: 1 / -1;
  }
  .nav-links.open { display: flex; }
  .nav-logo img { height: 50px; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-grid,
  .services-grid.three-col {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .panel-inner { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .carousel-stage { height: 360px; }
  .carousel-slide { width: 88%; height: 320px; }
  .carousel-slide.is-left { transform: translateX(-70%) scale(0.75); }
  .carousel-slide.is-right { transform: translateX(70%) scale(0.75); }
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.7rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
@media (max-width: 580px) {
  .container { padding: 0 1.2rem; }
  .nav-inner { padding: 0.7rem 1.2rem; }
  .hero-stats { gap: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .ba-label { font-size: 0.85rem; padding: 0.35rem 0.8rem; }
  .contact-info, .contact-form { padding: 2.5rem 1.5rem; }
  .carousel-stage { height: 280px; }
  .carousel-slide { width: 90%; height: 250px; }
  .cta-strip { padding: 2rem 1.5rem; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
}