/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --red: #C41E24;
  --red-dark: #8B1419;
  --red-glow: #E8333A;
  --blue: #1A4B8C;
  --blue-dark: #0D2B54;
  --blue-light: #2B6BC4;
  --white: #F0EDE8;
  --off-white: #D4CFC7;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-card: #161616;
  --dark-border: #222222;
  --gray: #888888;
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%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)'/%3E%3C/svg%3E");
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: all 0.4s;
}
.nav.scrolled { background: rgba(10, 10, 10, 0.98); }
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
.nav-logo:hover img {
  transform: scale(1.05);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--white) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-text span {
  color: var(--red);
  -webkit-text-fill-color: var(--red);
}
@media (max-width: 768px) {
  .nav-logo img { height: 45px; }
  .nav-logo-text { font-size: 1rem; }
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s;
  color: var(--off-white);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(196, 30, 36, 0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
}
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  margin: 2rem auto;
}
.page-spacer { height: 80px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  border-radius: 2px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-glow), var(--red-dark));
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--dark-border);
  border-radius: 2px;
  transition: all 0.4s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
}

/* ============================================
   HERO (index.html)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 30, 36, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(26, 75, 140, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(196, 30, 36, 0.08) 0%, transparent 50%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.06;
}
.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 200%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  animation: lineDrift 12s ease-in-out infinite;
}
.hero-lines::before { left: 20%; animation-delay: 0s; }
.hero-lines::after { left: 80%; animation-delay: -6s; }
@keyframes lineDrift {
  0%, 100% { transform: translateY(-30%); }
  50% { transform: translateY(-10%); }
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.hero-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--red);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title .line1 {
  display: block;
  background: linear-gradient(135deg, var(--white) 30%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-title .line2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gray);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   HOME — ABOUT STRIP
   ============================================ */
.about-strip {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.about-card {
  text-align: center;
  padding: 2rem 1rem;
}
.about-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}
.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.about-card p { color: var(--gray); font-size: 0.95rem; }

/* ============================================
   HOME — WELCOME
   ============================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.welcome-image {
  aspect-ratio: 4/5;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-image img {
  width: 80%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.welcome-image::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, var(--red) 0%, transparent 30%, transparent 70%, var(--blue) 100%);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.welcome-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.welcome-text h2 span { color: var(--red); }
.welcome-text p { color: var(--gray); font-size: 1.05rem; margin-bottom: 1.25rem; }
.welcome-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--dark-border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ============================================
   HOME — SERVICES
   ============================================ */
.services-bg {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--black);
  border: 1px solid var(--dark-border);
  padding: 2.5rem 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--dark-border); transform: translateY(-4px); }
.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(196, 30, 36, 0.15);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--gray); font-size: 0.95rem; }

/* ============================================
   HOME — CTA BANNER
   ============================================ */
.cta-banner {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.08), rgba(26, 75, 140, 0.08));
  border: 1px solid var(--dark-border);
  margin: 4rem 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-banner p { color: var(--gray); margin-bottom: 2rem; }

/* ============================================
   AFTERCARE
   ============================================ */
.aftercare-container { max-width: 900px; margin: 0 auto; }
.aftercare-block {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  padding: 3rem;
  margin-bottom: 2rem;
  position: relative;
}
.aftercare-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--blue));
}
.aftercare-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.aftercare-block h3 .step-num {
  color: var(--red);
  margin-right: 0.75rem;
}
.aftercare-list {
  list-style: none;
  counter-reset: aftercare;
}
.aftercare-list li {
  color: var(--off-white);
  padding: 0.75rem 0;
  padding-left: 2rem;
  border-bottom: 1px solid rgba(34, 34, 34, 0.6);
  position: relative;
  font-size: 1rem;
}
.aftercare-list li:last-child { border-bottom: none; }
.aftercare-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 600;
}
.aftercare-warning {
  background: rgba(196, 30, 36, 0.08);
  border: 1px solid rgba(196, 30, 36, 0.2);
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.aftercare-warning svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.aftercare-warning p { color: var(--off-white); font-size: 0.95rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--dark-border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.75rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--red); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { border-color: var(--red); }
.faq-item.open .faq-toggle svg { stroke: var(--red); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 1.75rem;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   SOCIAL MEDIA
   ============================================ */
.social-hub { text-align: center; }
.social-links-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.social-link-card {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s;
  min-width: 200px;
}
.social-link-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.social-link-card svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
  transition: fill 0.3s;
}
.social-link-card:hover svg { fill: var(--red); }
.social-link-card .platform {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}
.social-link-card .handle { color: var(--gray); font-size: 0.85rem; }
.fb-embed-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  padding: 2rem;
  min-height: 600px;
}
.fb-embed-container h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: left;
}
.fb-embed-frame {
  width: 100%;
  min-height: 500px;
  border: none;
  background: var(--black);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.artist-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.artist-tab {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--dark-border);
  color: var(--gray);
  transition: all 0.3s;
  background: transparent;
}
.artist-tab:hover { border-color: var(--red); color: var(--white); }
.artist-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.artist-gallery { display: none; }
.artist-gallery.active { display: block; }
.artist-info {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--dark);
  border: 1px solid var(--dark-border);
}
.artist-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.artist-info .artist-style {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1rem;
}
.artist-info p { color: var(--gray); max-width: 600px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-placeholder {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
}
.gallery-item:hover { border-color: var(--red); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.gallery-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid var(--dark-border);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 2001;
  transition: border-color 0.3s;
}
.lightbox-close:hover { border-color: var(--red); }
.lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--dark-border);
}
.contact-detail svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail .label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 0.25rem;
}
.contact-detail .value { font-size: 1.05rem; color: var(--white); }
.contact-hours {
  margin-top: 2rem;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  padding: 2rem;
}
.contact-hours h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(34, 34, 34, 0.6);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--off-white); }
.hours-row .time { color: var(--gray); }
.hours-row .closed { color: var(--red); }
.contact-form-wrapper {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  padding: 3rem;
}
.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  display: block;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--black);
  border: 1px solid var(--dark-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}
.form-submit:hover { background: var(--red-glow); }
.map-container {
  margin-top: 3rem;
  aspect-ratio: 21/9;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) invert(0.92) contrast(0.85);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-brand h3 span { color: var(--red); }
.footer-brand p { color: var(--gray); font-size: 0.9rem; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { transition: color 0.3s; }
.footer-socials a:hover { color: var(--red); }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--dark-border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .welcome-stats { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .social-links-row { flex-direction: column; align-items: center; }
}
