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

:root {
  --gold:       #D4A843;
  --gold-light: #e8c46a;
  --gold-dim:   rgba(212,168,67,0.15);
  --black:      #1A1A1A;
  --black-deep: #111111;
  --white:      #ffffff;
  --text-muted: rgba(255,255,255,0.55);
  --text-body:  rgba(255,255,255,0.78);
  --ease:       cubic-bezier(.4,0,.2,1);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

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

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── GOLD LINE ─── */
.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.gold-line-full {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.35;
}

/* ─── EYEBROW ─── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ─── SECTION HEADING ─── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--white);
}
.section-title span { color: var(--gold); }

/* ─── CONTAINER ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
}

/* ─── BUTTON ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.3s var(--ease);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--black); }
.btn span { position: relative; z-index: 1; }
/* CF7 <button> has no inner <span> — keep text above ::before fill */
.wpcf7-submit.btn { isolation: isolate; }
.wpcf7-submit.btn::before { z-index: -1; }

.btn-solid {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}
.btn-solid::before { background: var(--gold-light); }
.btn-solid:hover { color: var(--black); }

/* ═══════════════════════════════════
   STICKY HEADER
═══════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s, box-shadow 0.4s;
  padding: 0 48px;
}
#header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s;
}
#header.scrolled::before { opacity: 0; }
#header.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(212,168,67,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  z-index: 1;
}
.header-logo img { height: 80px; width: auto; }

.header-nav {
  display: flex;
  gap: 36px;
  list-style: none;
}
.header-nav li { list-style: none; }
.header-nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
}
.header-nav a:hover,
.header-nav a.current-ref { color: var(--gold); }

.header-phone {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--black);
  background: var(--gold);
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.header-phone:hover {
  background: #e8bc50;
  color: var(--black);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 899;
  padding: 32px 16px 40px;
  flex-direction: column;
  gap: 0;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  border-bottom: 1px solid rgba(212,168,67,0.15);
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.mobile-nav ul li { list-style: none; }
.mobile-nav ul li a {
  display: block;
  padding: 16px 0;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav ul li:first-child a { border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-nav-phone {
  display: block;
  margin-top: 28px;
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }
  #header { padding: 0 16px; }
}

/* ═══════════════════════════════════
   FLOATING CALL BUTTON
═══════════════════════════════════ */
.float-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 28px rgba(212,168,67,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 36px rgba(212,168,67,0.65);
}
.float-call svg { width: 22px; height: 22px; fill: var(--black); }

/* ═══════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 60% 20%;
  z-index: 0;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.94) 0%,
    rgba(10,10,10,0.82) 28%,
    rgba(10,10,10,0.38) 55%,
    rgba(10,10,10,0.08) 78%,
    rgba(10,10,10,0)    100%
  );
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0 0 80px max(60px, 7vw);
  max-width: 54%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .2s forwards;
}
.hero-eyebrow span {
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow p {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}
.hero-line-1 {
  display: block;
  font-size: clamp(40px, 12vw, 148px);
  white-space: nowrap;
  color: var(--white);
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp .8s var(--ease) .4s forwards;
}
.hero-line-2 {
  display: block;
  font-size: clamp(40px, 12vw, 148px);
  white-space: nowrap;
  background: linear-gradient(90deg, #E7C98B 0%, #D7B373 20%, #BC8832 42%, #C08F3D 55%, #D4AB64 70%, #EDD9B7 85%, #C99E53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp .8s var(--ease) .6s forwards;
}

.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .85s forwards;
}

.hero-cta-wrap {
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.05s forwards;
}

.hero-cta {
  display: inline-block;
  padding: 16px 44px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .3s var(--ease);
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .35s var(--ease);
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta:hover { color: var(--black); }
.hero-cta span { position: relative; z-index: 1; }

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

@media (max-width: 768px) {
  .hero-bg { background-position: center center; }
  #hero::before {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.6) 0%,
      rgba(10,10,10,0.75) 100%
    );
  }
  .hero-content {
    max-width: 100%;
    padding: 0 16px 64px;
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-title { text-align: center; }
  .hero-line-1,
  .hero-line-2 { white-space: normal; font-size: clamp(48px, 18vw, 88px); }
  .hero-sub { font-size: 16px; }
  .hero-cta-wrap { margin-top: 32px; }
}

/* ═══════════════════════════════════
   SECTION 2 — WHY GABIONS
═══════════════════════════════════ */
#why {
  padding: 120px 0;
  background: var(--black-deep);
  position: relative;
}
#why .gold-line-full { position: absolute; top: 0; left: 0; right: 0; }

.why-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 20px 0 28px;
}

.why-lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.why-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 0;
}

.why-cell {
  background: var(--black-deep);
}

.why-cell--text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
}

.why-cell--text h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,168,67,0.35);
}

.why-cell--text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

.why-cell--photo {
  overflow: hidden;
}
.why-cell--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.why-cell--photo:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}

@media (max-width: 860px) {
  .why-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 260px);
    margin: 0 -48px;
  }
  .why-lead br { display: none; }
	.header-logo img {
    height: 50px;
    width: auto;
}
}
@media (max-width: 768px) {
  .why-mosaic { margin: 0 -16px; }
  #why { padding: 80px 0 0; }
  .why-head {
    margin-bottom: 40px;
    padding: 0;
    text-align: left;
    align-items: flex-start;
  }
  .why-head .eyebrow::before { display: none; }
}
@media (max-width: 540px) {
  .why-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .why-cell--photo { height: 260px; }
  .why-cell--text { padding: 36px 28px; }
}

/* ═══════════════════════════════════
   SECTION 3 — ABOUT
═══════════════════════════════════ */
#about {
  background: var(--black);
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
/* 	max-height:500px; */

}.about-visual video {
    max-height: 757px;
 
}

.about-visual {
  position: relative;
  overflow: hidden;
}
.about-visual img,
.about-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88);
  transition: transform 0.9s var(--ease);
}
.about-visual:hover img,
.about-visual:hover video { transform: scale(1.04); }
.about-visual::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,168,67,0.35) 30%, rgba(212,168,67,0.35) 70%, transparent);
}

.about-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
}

.about-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 20px 0 36px;
}

.about-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 36px 0 0;
  border-top: 1px solid rgba(212,168,67,0.22);
  margin-right: 36px;
}
.about-stat:last-child { margin-right: 0; padding-right: 0; }

.about-stat-num {
  font-family: 'Barlow', sans-serif;
  font-weight: 200;
  font-size: 42px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.about-stat-num span {
  color: var(--gold);
}

.about-stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { min-height: 360px; }
  .about-content { padding: 64px 16px; }
  .about-stats { gap: 32px; }
}
@media (max-width: 480px) {
  .about-stats {
    gap: 12px;
    margin-top: 40px;
  }
  .about-stat {
    padding: 20px 0;
    margin-right: 0;
    border-top: 1px solid rgba(212,168,67,0.22);
    border-bottom: none;
  }
  .about-stat-num { font-size: 36px; }
}
@media (max-width: 768px) {
  .about-visual { display: none; }
  .about-content { padding: 72px 16px; }
}

/* ═══════════════════════════════════
   SECTION 4 — SERVICES
═══════════════════════════════════ */
#services {
  padding: 120px 0;
  background: var(--black-deep);
  position: relative;
}
#services .gold-line-full { position: absolute; top: 0; }
.services-dots { display: none; }

.services-head {
  margin-bottom: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 300px;
  gap: 48px;
  align-items: center;
  padding: 44px 48px;
  border-top: 1px solid rgba(212,168,67,0.12);
  transition: background 0.3s var(--ease);
  cursor: default;
  background: var(--black);
}
.service-row:last-child { border-bottom: 1px solid rgba(212,168,67,0.12); }
.service-row:hover { background: rgba(212,168,67,0.03); }

.service-row-num {
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.service-row-info h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,168,67,0.35);
  width: fit-content;
  transition: color 0.3s var(--ease);
}
.service-row:hover .service-row-info h3 { color: var(--gold); }

.service-row-info p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 440px;
}

.service-row-photo {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.service-row:hover .service-row-photo img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.services-cta-wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

@media (max-width: 860px) {
  .services-head {
    margin-bottom: 32px;
    text-align: left;
    align-items: flex-start;
  }
  .services-head .eyebrow::before { display: none; }
}
@media (max-width: 768px) {
  #services { padding: 72px 0; }

  .services-slider-wrap {
    overflow: hidden;
  }
  .services-list {
    display: flex;
    flex-direction: row;
    transition: transform 0.45s var(--ease);
  }
  .service-row {
    min-width: 100%;
    position: relative;
    height: 72vw;
    min-height: 260px;
    max-height: 380px;
    padding: 0;
    border: none;
    overflow: hidden;
    display: block;
    cursor: grab;
  }
  .service-row:active { cursor: grabbing; }
  .service-row:last-child { border: none; }
  .service-row-photo {
    display: block;
    position: absolute;
    inset: 0;
  }
  .service-row-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
  }
  .service-row-num { display: none; }
  .service-row-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 1;
    padding: 48px 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    max-width: 100%;
  }
  .service-row-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    padding-bottom: 0;
    border-bottom: none;
    color: var(--white);
  }
  .service-row-info p {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    max-width: 100%;
  }

  .services-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .services-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .services-dot.active {
    background: var(--gold);
    transform: scale(1.4);
  }

  .services-cta-wrap { margin-top: 32px; }
}

/* ═══════════════════════════════════
   SECTION 5 — GALLERY
═══════════════════════════════════ */
#gallery {
  padding: 120px 0 0;
  background: var(--black);
}

.gallery-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.65s var(--ease);
}

.gallery-slide {
  min-width: calc(100% / 3);
  position: relative;
  padding: 0 2px;
}
.gallery-slide img,
.gallery-slide video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.4s;
}
.gallery-slide:hover img,
.gallery-slide:hover video { filter: brightness(1); }

.gallery-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(212,168,67,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
  pointer-events: none;
}
.gallery-play-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  margin-left: 3px;
}
.gallery-slide--video:hover .gallery-play-icon {
  background: rgba(212,168,67,0.2);
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-slide-label {
  position: absolute;
  bottom: 0; left: 2px; right: 2px;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-slide:hover .gallery-slide-label { opacity: 1; }

.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 36px 0;
}

.gallery-btn {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid rgba(212,168,67,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.gallery-btn:hover {
  background: rgba(212,168,67,0.1);
  border-color: var(--gold);
}
.gallery-btn svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.gallery-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  min-width: 80px;
  justify-content: center;
}
.gallery-current {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
}

@media (max-width: 860px) {
  .gallery-slide { min-width: 50%; }
  .gallery-slide img,
  .gallery-slide video { height: 56vw; }
  .gallery-head { margin-bottom: 40px; }
}
@media (max-width: 600px) {
  #gallery { padding: 80px 0 0; }
  .gallery-slide { min-width: 100%; }
  .gallery-slide img,
  .gallery-slide video { height: 72vw; min-height: 260px; }
  .gallery-head { margin-bottom: 32px; }
  .gallery-slide-label { opacity: 1; }
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img,
#lightboxVideo {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(212,168,67,0.2);
}
#lightboxVideo {
  display: none;
  width: 90vw;
  max-width: 1100px;
  outline: none;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212,168,67,0.4);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.lightbox-close:hover { border-color: var(--gold); }
.lightbox-close svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* ═══════════════════════════════════
   SECTION 6 — REVIEWS
═══════════════════════════════════ */
#reviews {
  padding: 120px 0;
  background: var(--black-deep);
  position: relative;
}
#reviews .gold-line-full { position: absolute; top: 0; }

.reviews-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

.reviews-slider {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.65s var(--ease);
}

.review-slide {
  min-width: calc(100% / 3);
  padding: 0 12px;
  display: flex;
  flex-direction: column;
}

.review-card-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,67,0.1);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.3s;
}
.review-card-inner:hover { border-color: rgba(212,168,67,0.3); }

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 24px;
}
.review-stars svg {
  width: 16px; height: 16px;
  fill: var(--gold);
}

.review-text {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 36px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,168,67,0.12);
}

.review-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.review-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.review-location {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding-bottom: 12px;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212,168,67,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.reviews-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

@media (max-width: 860px) {
  .review-slide { min-width: 50%; }
}
@media (max-width: 600px) {
  .review-slide { min-width: 100%; padding: 0; }
  #reviews { padding: 72px 0; }
  .reviews-head { margin-bottom: 36px; }
}

/* ═══════════════════════════════════
   SECTION 7 — CONTACT
═══════════════════════════════════ */
#contact {
  padding: 120px 0 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.contact-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--contact-bg, none);
  background-size: cover;
  background-position: center;
  filter: brightness(0.68) grayscale(0.4);
  background-attachment: fixed;
}


.contact-head {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto 80px;
  text-align: center;
}
.contact-head .eyebrow { justify-content: center; }
.contact-head .about-heading { margin-bottom: 0; }

.contact-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
  padding-bottom: 120px;
}

.contact-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 52px;
}

.contact-links { display: flex; flex-direction: column; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }
.contact-link-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}
.contact-link:hover .contact-link-icon {
  border-color: rgba(212,168,67,0.55);
  background: rgba(212,168,67,0.06);
}
.contact-link-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.contact-link-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-link-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.contact-link-value {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  transition: color 0.2s;
}
.contact-link:hover .contact-link-value { color: var(--white); }

.contact-zone {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}
.contact-zone svg { opacity: 0.55; flex-shrink: 0; }

/* Contact form — CF7 compatibility */
.contact-form { display: flex; flex-direction: column; }
.contact-form .wpcf7 { display: block; width: 100%; }
.contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212,168,67,0.1);
  padding: 40px 44px 36px;
}
.contact-form .wpcf7-form p { margin: 0; }
.contact-form .wpcf7-form br { display: none; }
.contact-form .wpcf7-form-control-wrap { display: block; width: 100%; }
.contact-form .wpcf7-form-control { width: 100%; }
.contact-form .wpcf7-response-output {
  margin-top: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(212,168,67,0.35);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e07070;
  margin-top: 4px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-group {
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
}
.form-group label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea,
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  border-radius: 0;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 300;
  padding: 10px 0;
  width: 100%;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group select option,
.contact-form select option { background: #111; color: var(--white); }
.form-group textarea,
.contact-form textarea { resize: none; min-height: 80px; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 24px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  stroke: rgba(212,168,67,0.5);
  fill: none;
  stroke-width: 2;
  pointer-events: none;
}

.form-submit {
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

@media (max-width: 860px) {
  .contact-body { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: #080808;
  border-top: 1px solid rgba(212,168,67,0.1);
  padding: 64px 0 36px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo img { height: 34px; display: block; width: auto; }
.footer-tagline {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.footer-nav li { list-style: none; }
.footer-nav a {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-reach {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.footer-phone {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--gold); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-social svg { stroke: currentColor; fill: none; stroke-width: 1.5; }
.footer-social:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}
.footer-area {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-reach { align-items: flex-start; }
}

/* ─── GEOMETRIC GOLD LINE DECORATION ─── */
#why, #services, #reviews, #contact, footer { isolation: isolate; }

.geo-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.geo-deco svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ─── GLOBAL MOBILE SPACING ─── */
@media (max-width: 768px) {
  #why, #services, #reviews { padding: 72px 0; }
  #gallery, #contact { padding-top: 72px; }
  .about-heading { margin: 12px 0 20px; font-size: clamp(28px, 8vw, 40px); }
  .why-head { margin-bottom: 40px; }
  .gallery-head, .reviews-head, .services-head { margin-bottom: 32px; }
  .contact-head { margin-bottom: 48px; }
}

/* ─── NO HOVER ON TOUCH DEVICES ─── */
@media (hover: none) {
  .btn::before { display: none; }
  .btn:hover { color: var(--gold); }
  .btn-solid:hover { color: var(--black); }
  .hero-cta::before { display: none; }
  .hero-cta:hover { color: var(--gold); }
  .service-row:hover { background: transparent; }
  .service-row:hover .service-row-info h3 { color: var(--white); }
  .service-row:hover .service-row-photo img { transform: none; }
  .gallery-slide:hover img,
  .gallery-slide:hover video { filter: brightness(0.75); }
  .gallery-slide--video:hover .gallery-play-icon { opacity: 1; transform: none; }
  .gallery-slide:hover .gallery-slide-label { opacity: 0; }
  .why-cell--photo:hover img { transform: none; }
  .about-visual:hover img,
  .about-visual:hover video { transform: none; }
  .review-card-inner:hover { border-color: rgba(212,168,67,0.12); }
  .contact-link:hover { color: var(--white); }
  .contact-link:hover .contact-link-icon { background: rgba(212,168,67,0.08); border-color: rgba(212,168,67,0.2); }
  .contact-link:hover .contact-link-value { color: var(--text-muted); }
  .float-call:hover { transform: none; box-shadow: 0 4px 28px rgba(212,168,67,0.45); }
}
