/* =============================================
   OLD VEGAS PRINT SHOP — Brand Stylesheet
   Option 1: Skyline Badge · Bold Vintage
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Barlow+Condensed:wght@400;500;600;700&family=Barlow:wght@300;400;500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --jet-black:     #0D0D0D;
  --deep-black:    #161616;
  --card-bg:       #1E1A17;
  --vegas-red:     #C41E1E;
  --red-bright:    #E02222;
  --gold:          #C9A84C;
  --gold-light:    #E5C97A;
  --gold-dim:      #8A6E2F;
  --cream:         #F5F0E8;
  --warm-white:    #FAF7F2;
  --gunmetal:      #3A3A3A;
  --mid-gray:      #888;
  --border-subtle: rgba(201,168,76,0.15);
  --border-mid:    rgba(201,168,76,0.35);
  --border-gold:   rgba(201,168,76,0.6);

  --font-display:  'Bebas Neue', sans-serif;
  --font-serif:    'Playfair Display', serif;
  --font-cond:     'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;

  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:        4px;
  --shadow-gold:   0 0 30px rgba(201,168,76,0.12);
  --shadow-red:    0 0 30px rgba(196,30,30,0.25);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--jet-black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.section-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  height: 1px;
  width: 32px;
  background: var(--gold-dim);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 12px 0 0;
}

/* ── Layout ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ── Gold Rule Divider ── */
.gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
  margin: 0;
}
.gold-rule-short {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--vegas-red);
  color: var(--cream);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-gold:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: var(--transition);
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.nav-logo-sub {
  font-family: var(--font-cond);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 12px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(201,168,76,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(196,30,30,0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(13,13,13,0.5) 100%),
    var(--jet-black);
}

/* Animated skyline silhouette */
.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 220' preserveAspectRatio='xMidYMax slice'%3E%3Cpath fill='%23C9A84C' d='M0,220 L0,160 L20,160 L20,120 L40,120 L40,100 L60,100 L60,80 L80,80 L80,60 L90,60 L90,40 L100,40 L100,20 L110,20 L110,40 L120,40 L120,60 L130,60 L130,80 L140,80 L140,100 L160,100 L160,120 L180,120 L180,80 L190,80 L190,60 L200,60 L200,40 L210,40 L210,20 L215,20 L215,0 L220,0 L220,20 L225,20 L225,40 L230,40 L230,60 L240,60 L240,80 L260,80 L260,60 L270,60 L270,40 L280,40 L280,60 L290,60 L290,80 L300,80 L300,100 L320,100 L320,120 L340,120 L340,100 L350,100 L350,80 L360,80 L360,60 L370,60 L370,80 L380,80 L380,100 L390,100 L390,120 L400,120 L400,140 L420,140 L420,120 L430,120 L430,100 L440,100 L440,80 L450,80 L450,60 L460,60 L460,80 L470,80 L470,100 L480,100 L480,120 L500,120 L500,100 L510,100 L510,80 L520,80 L520,60 L530,60 L530,40 L540,40 L540,20 L550,20 L550,0 L555,0 L555,20 L560,20 L560,40 L570,40 L570,60 L580,60 L580,80 L590,80 L590,100 L600,100 L600,120 L620,120 L620,100 L630,100 L630,80 L640,80 L640,60 L650,60 L650,40 L660,40 L660,60 L670,60 L670,80 L680,80 L680,100 L700,100 L700,120 L720,120 L720,100 L730,100 L730,80 L740,80 L740,60 L750,60 L750,80 L760,80 L760,100 L780,100 L780,120 L800,120 L800,100 L810,100 L810,80 L820,80 L820,60 L830,60 L830,40 L840,40 L840,60 L850,60 L850,80 L860,80 L860,100 L880,100 L880,80 L890,80 L890,60 L900,60 L900,80 L910,80 L910,100 L920,100 L920,120 L940,120 L940,100 L950,100 L950,80 L960,80 L960,60 L970,60 L970,40 L980,40 L980,20 L990,20 L990,0 L995,0 L995,20 L1000,20 L1000,40 L1010,40 L1010,60 L1020,60 L1020,80 L1030,80 L1030,100 L1040,100 L1040,120 L1060,120 L1060,100 L1070,100 L1070,80 L1080,80 L1080,60 L1090,60 L1090,80 L1100,80 L1100,100 L1120,100 L1120,80 L1130,80 L1130,60 L1140,60 L1140,40 L1150,40 L1150,60 L1160,60 L1160,80 L1180,80 L1180,100 L1200,100 L1200,120 L1220,120 L1220,100 L1230,100 L1230,80 L1240,80 L1240,60 L1250,60 L1250,80 L1260,80 L1260,100 L1280,100 L1280,120 L1300,120 L1300,100 L1320,100 L1320,120 L1340,120 L1340,140 L1360,140 L1360,160 L1380,160 L1380,140 L1400,140 L1400,160 L1440,160 L1440,220 Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-mid);
  padding: 8px 18px;
  margin-bottom: 32px;
  background: rgba(201,168,76,0.05);
}
.hero-badge::before {
  content: '★';
  font-size: 0.6rem;
}
.hero-badge::after {
  content: '★';
  font-size: 0.6rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.hero-headline .red { color: var(--vegas-red); }
.hero-headline .gold { color: var(--gold); }

.hero-tagline {
  font-family: var(--font-cond);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin: 20px 0 36px;
  border-left: 3px solid var(--vegas-red);
  padding-left: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-top: 4px;
}

/* Hero right decorative element */
.hero-emblem {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.07;
  background:
    radial-gradient(circle at center, var(--gold) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.06; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.1; transform: translateY(-50%) scale(1.05); }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(201,168,76,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SERVICES ── */
.services { background: var(--deep-black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border-subtle);
}

.service-card {
  background: var(--card-bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vegas-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #231F1B; }

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.4rem;
  transition: var(--transition);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  background: rgba(201,168,76,0.04);
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.service-number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  transition: var(--transition);
}
.service-card:hover .service-number {
  color: rgba(201,168,76,0.1);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
}

.service-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245,240,232,0.45);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

/* ── WHY US / PROOF STRIP ── */
.proof-strip {
  background: var(--vegas-red);
  padding: 32px 0;
  overflow: hidden;
}
.proof-ticker {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.proof-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.9);
  display: flex;
  align-items: center;
  gap: 80px;
  flex-shrink: 0;
}
.proof-item::after {
  content: '★';
  font-size: 0.7rem;
  color: rgba(245,240,232,0.4);
}

/* ── GALLERY ── */
.gallery { background: var(--jet-black); }

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  cursor: pointer;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.85) 100%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.06); }

/* Gallery mosaic layout */
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; aspect-ratio: auto; min-height: 360px; }
.gallery-item:nth-child(2) { grid-column: span 4; min-height: 175px; }
.gallery-item:nth-child(3) { grid-column: span 3; min-height: 175px; }
.gallery-item:nth-child(4) { grid-column: span 4; min-height: 175px; }
.gallery-item:nth-child(5) { grid-column: span 3; min-height: 175px; }
.gallery-item:nth-child(6) { grid-column: span 4; min-height: 175px; }
.gallery-item:nth-child(7) { grid-column: span 4; min-height: 175px; }

.gallery-item-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* Placeholder gallery images using CSS patterns */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.25);
  text-transform: uppercase;
}
.gp-1 { background: linear-gradient(135deg, #1E1A17 0%, #2A2318 50%, #1A1008 100%); }
.gp-2 { background: linear-gradient(135deg, #1A0808 0%, #2A1010 100%); }
.gp-3 { background: linear-gradient(135deg, #0D1520 0%, #1A2535 100%); }
.gp-4 { background: linear-gradient(135deg, #1A1A0D 0%, #2A2A15 100%); }
.gp-5 { background: linear-gradient(135deg, #1A0D1A 0%, #261326 100%); }
.gp-6 { background: linear-gradient(135deg, #0D1A0D 0%, #132613 100%); }
.gp-7 { background: linear-gradient(135deg, #1A1208 0%, #261A0D 100%); }

/* ── ABOUT ── */
.about { background: var(--deep-black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--border-mid);
  pointer-events: none;
  z-index: 2;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(201,168,76,0.02) 0px,
      rgba(201,168,76,0.02) 1px,
      transparent 1px,
      transparent 20px
    ),
    var(--card-bg);
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201,168,76,0.08);
  letter-spacing: 0.1em;
}

.about-accent-card {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--vegas-red);
  padding: 28px 32px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.about-accent-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cream);
  line-height: 1;
}
.about-accent-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  margin-top: 4px;
}

.about-body p {
  font-size: 1rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-body strong { color: var(--cream); font-weight: 500; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-value {
  padding: 20px 24px;
  border: 1px solid var(--border-subtle);
  background: rgba(201,168,76,0.02);
  transition: var(--transition);
}
.about-value:hover { border-color: var(--border-mid); }
.about-value-title {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.about-value-text {
  font-size: 0.84rem;
  color: rgba(245,240,232,0.45);
}

/* ── QUOTE FORM ── */
.quote { background: var(--jet-black); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.quote-info {
  padding-top: 8px;
}
.quote-info p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border-subtle);
  background: rgba(201,168,76,0.02);
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--border-mid); }
.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
}
.contact-value {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
}

/* Form */
.quote-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 48px;
  position: relative;
}
.quote-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vegas-red), var(--gold), var(--vegas-red));
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group.full { grid-column: span 2; }

label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-dim);
  background: rgba(201,168,76,0.04);
}
input::placeholder, textarea::placeholder { color: rgba(245,240,232,0.2); }
select { cursor: pointer; }
select option { background: var(--card-bg); color: var(--cream); }
textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--vegas-red);
  color: var(--cream);
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.form-note {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
  text-align: center;
  margin-top: 16px;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-success p {
  color: rgba(245,240,232,0.6);
  font-size: 0.95rem;
}

/* ── FOOTER ── */
footer {
  background: var(--deep-black);
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
}
.footer-brand-sub {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.4);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245,240,232,0.4);
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.footer-links a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-icon {
  color: var(--gold-dim);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-text {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-legal {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.25);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.35);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* ── MOBILE NAV OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.98);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 1.8rem;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 480px; }
  .quote-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-headline { font-size: 4rem; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-emblem { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 180px !important; }

  .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .quote-form-wrap { padding: 32px 24px; }

  .about-values { grid-template-columns: 1fr; }
  .about-accent-card { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
