/* ============================================
   Fame Tattoos — Miami's Most Awarded Studio
   Dark cinematic aesthetic with gold accents
   ============================================ */

/* --- Custom Properties --- */
:root {
  --black: #0A0A0A;
  --black-rich: #050505;
  --gold: #F5A623;
  --gold-dim: rgba(245, 166, 35, 0.15);
  --gold-glow: rgba(245, 166, 35, 0.4);
  --white: #FFFFFF;
  --white-off: #F0F0F0;
  --gray: #1A1A1A;
  --gray-mid: #141414;
  --gray-light: #2A2A2A;
  --gray-border: #333333;
  --text-muted: #999999;
  --text-dim: #666666;
  --red-error: #E74C3C;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

/* --- Section --- */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 2rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--gold);
}

.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
}

.section-header h2 em {
  font-style: normal;
  color: var(--gold);
}

.section-header p {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: #e6991a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* --- Mockup Banner --- */
.mockup-banner {
  background: var(--gold);
  color: var(--black);
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  text-align: center;
  position: relative;
  z-index: 1000;
}

.mockup-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.mockup-badge {
  background: var(--black);
  color: var(--gold);
  padding: 0.15rem 0.6rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  border-radius: 2px;
}

.mockup-banner p {
  line-height: 1.4;
}

.mockup-banner a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 1.25rem 0;
  transition: all var(--transition);
  margin-top: 38px;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .nav-inner { padding: 0 2.5rem; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo-icon {
  height: 36px;
  width: auto;
}

.nav-logo-wordmark {
  height: 24px;
  width: auto;
}

@media (max-width: 767px) {
  .nav-logo-wordmark { display: none; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 910;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: right var(--transition);
  z-index: 900;
}

.nav-links.open {
  right: 0;
}

.nav-links a,
.nav-dropdown-toggle {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-dropdown-toggle:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.75rem 2rem !important;
  font-size: 1rem !important;
}

.nav-cta:hover {
  background: #e6991a !important;
}

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

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-dropdown-arrow {
  font-size: 0.5em;
  transition: transform var(--transition-fast);
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile dropdown menu */
.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
  padding-top: 0.75rem;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  font-size: 1.25rem !important;
  letter-spacing: 0.1em;
  color: var(--text-muted) !important;
}

.nav-dropdown-menu a:hover {
  color: var(--gold) !important;
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    gap: 0;
    align-items: center;
  }

  .nav-links a,
  .nav-dropdown-toggle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    padding: 0.5rem 1rem;
    position: relative;
  }

  .nav-links a:not(.nav-cta):not(.nav-dropdown-menu a)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
  }

  .nav-links a:not(.nav-cta):not(.nav-dropdown-menu a):hover::after {
    transform: scaleX(1);
  }

  /* Desktop dropdown */
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gray-light);
    padding: 0.75rem 0;
    min-width: 220px;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
    padding-top: 0.75rem;
    z-index: 950;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu a {
    font-size: 0.7rem !important;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.5rem !important;
    white-space: nowrap;
    color: var(--text-muted) !important;
  }

  .nav-dropdown-menu a:hover {
    color: var(--gold) !important;
    background: var(--gold-dim);
  }

  .nav-dropdown-menu a::after {
    display: none !important;
  }

  .nav-cta {
    font-size: 0.75rem !important;
    padding: 0.6rem 1.5rem !important;
    margin-left: 0.5rem;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.3) 40%,
    rgba(10, 10, 10, 0.5) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

/* Cinematic side vignette */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(10,10,10,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 1.5rem 4rem;
  max-width: 900px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  font-size: 0.85em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

/* Hero Free Design Banner */
.hero-free-design {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.05) 100%);
  border: 1px solid rgba(245, 166, 35, 0.4);
  padding: 0.75rem 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
  position: relative;
  overflow: hidden;
}

.hero-free-design::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(245, 166, 35, 0.15) 50%, transparent 70%);
  animation: shimmer 3s ease infinite;
}

.hero-free-design span {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.hero-free-design .free-design-arrow {
  font-size: 1.25rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-fast);
}

.hero-free-design:hover .free-design-arrow {
  transform: translateX(4px);
}

.hero-free-design:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.25) 0%, rgba(245, 166, 35, 0.1) 100%);
}

/* Stats Strip */
.stats-strip {
  background: var(--gray-mid);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-off);
  white-space: nowrap;
}

.stat-item strong {
  color: var(--gold);
  font-weight: 400;
}

.stat-divider {
  color: var(--gray-light);
  font-size: 0.75rem;
}

@media (max-width: 600px) {
  .stats-inner {
    gap: 0.75rem 1rem;
  }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 45%; text-align: center; }
}

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--gray);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.2), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85) saturate(0.9);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1);
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Artist Spotlight --- */
.artist-section {
  background: var(--gray-mid);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}

.artist-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}

.artist-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .artist-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.artist-image {
  position: relative;
}

.artist-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05);
}

.artist-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--gray-mid), transparent);
  pointer-events: none;
}

.artist-text {
  position: relative;
  z-index: 1;
}

.artist-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.artist-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.artist-bio {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.artist-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.artist-credential {
  background: var(--gold-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  white-space: nowrap;
}

/* --- Gallery Preview --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
  }
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.8) saturate(0.85);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover {
  box-shadow: 0 0 25px rgba(245, 166, 35, 0.3);
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- Reviews Section --- */
.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.reviews-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 0.15rem;
}

.reviews-stars .star {
  color: var(--gold);
  font-size: 1.25rem;
}

.reviews-count {
  font-size: 0.9375rem;
  color: var(--text-muted);
  width: 100%;
}

.reviews-google-link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: opacity var(--transition-fast);
}

.reviews-google-link:hover {
  opacity: 0.7;
}

/* Reviews Marquee */
.reviews-marquee {
  overflow: hidden;
  position: relative;
  padding: 1rem 0 2rem;
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  animation: marquee 300s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 350px;
  background: var(--gray);
  border: 1px solid var(--gray-light);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.3), 0 0 60px rgba(245, 166, 35, 0.1);
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(145deg, var(--gray) 0%, rgba(245, 166, 35, 0.08) 100%);
}

.review-stars {
  display: flex;
  gap: 0.15rem;
}

.review-stars span {
  color: var(--gold);
  font-size: 1rem;
}

.review-text {
  color: var(--white-off);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-light);
}

.review-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
}

.review-via {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* --- Contact Section --- */
.contact-section {
  background: var(--gray-mid);
  border-top: 1px solid var(--gray-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact-info h2 em {
  font-style: normal;
  color: var(--gold);
}

.contact-intro {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail h4 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.375rem;
}

.contact-detail p,
.contact-detail a {
  color: var(--white-off);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--gold);
}

.walkins-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.walkins-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--gray);
  border: 1px solid var(--gray-light);
  color: var(--white);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23999'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--gray);
  color: var(--white);
}

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

/* --- Footer --- */
.footer {
  background: var(--black-rich);
  padding: 4rem 0 0;
  border-top: 1px solid var(--gray-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  height: 32px;
  width: auto;
}

.footer-logo-wordmark {
  height: 20px;
  width: auto;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
  fill: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--gray-light);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.8125rem;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger .reveal {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Gold line separator */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 2rem auto;
}

/* --- Gallery Page Specific --- */

/* Page Header */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background: var(--black);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

/* Category Filter Tabs */
.filter-bar {
  padding: 1.5rem 0;
  background: var(--gray-mid);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 38px;
  z-index: 100;
  transition: top var(--transition);
}

.filter-bar.nav-visible {
  top: calc(38px + 56px);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  flex: 0 0 auto;
  background: none;
  border: 1px solid var(--gray-light);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Full Gallery Grid */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .full-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }
}

.full-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.full-gallery-item.hidden {
  display: none;
}

.full-gallery-item img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.8) saturate(0.85);
}

.full-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.full-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1);
}

.full-gallery-item:hover::after {
  opacity: 1;
}

.full-gallery-item:hover {
  box-shadow: 0 0 25px rgba(245, 166, 35, 0.3);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid var(--gray-light);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2001;
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid var(--gray-light);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2001;
}

.lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Gallery CTA Section */
.gallery-cta-section {
  text-align: center;
  padding: 5rem 0;
  background: var(--gray-mid);
  border-top: 1px solid var(--gray-light);
}

.gallery-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gallery-cta-section p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

/* --- Realistic Color Page --- */

/* RC Hero */
.rc-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.rc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.1) saturate(1.2);
}

.rc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.2) 30%,
    rgba(10, 10, 10, 0.4) 60%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.rc-hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 1.5rem 5rem;
  max-width: 900px;
}

.rc-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.rc-hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.rc-hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.rc-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.rc-stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* RC Intro */
.rc-intro {
  background: var(--gray-mid);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.rc-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.rc-intro-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.rc-intro-content h2 em {
  font-style: normal;
  color: var(--gold);
}

.rc-intro-content p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* RC Video Carousel */
.rc-videos {
  overflow: hidden;
}

.rc-video-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0 1.5rem 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rc-video-scroll::-webkit-scrollbar {
  display: none;
}

.rc-video-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  cursor: pointer;
}

.rc-video-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(245, 166, 35, 0.2);
  transform: translateY(-4px);
}

.rc-video-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.rc-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.rc-video-card:hover .rc-video-thumb img {
  transform: scale(1.05);
  filter: brightness(1);
}

.rc-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(245, 166, 35, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.rc-video-play::after {
  content: '';
  border: 0 solid transparent;
  border-left: 14px solid var(--black);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

.rc-video-card:hover .rc-video-play {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.rc-video-title {
  padding: 1rem 1.25rem;
  background: var(--gray);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-off);
}

/* RC Masonry Gallery */
.rc-masonry {
  columns: 2;
  column-gap: 0.5rem;
  padding: 0;
}

@media (min-width: 768px) {
  .rc-masonry {
    columns: 3;
    column-gap: 0.625rem;
  }
}

.rc-masonry-item {
  break-inside: avoid;
  margin-bottom: 0.5rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow var(--transition);
}

@media (min-width: 768px) {
  .rc-masonry-item {
    margin-bottom: 0.625rem;
  }
}

.rc-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}

.rc-masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.rc-masonry-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.rc-masonry-item:hover::after {
  opacity: 1;
}

.rc-masonry-item:hover {
  box-shadow: 0 0 25px rgba(245, 166, 35, 0.3);
}

.rc-show-more {
  text-align: center;
  margin-top: 2.5rem;
}

.rc-masonry-item.rc-hidden {
  display: none;
}

/* RC What to Expect */
.rc-expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rc-expect-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.rc-expect-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--gray);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}

.rc-expect-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.15);
  transform: translateY(-4px);
}

.rc-expect-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
}

.rc-expect-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.rc-expect-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* RC CTA */
.rc-cta {
  background: var(--gray-mid);
  border-top: 1px solid var(--gray-light);
  text-align: center;
}

.rc-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.rc-cta h2 em {
  font-style: normal;
  color: var(--gold);
}

.rc-cta p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rc-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.rc-cta-details {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.rc-cta-details a {
  color: var(--gold);
  transition: opacity var(--transition-fast);
}

.rc-cta-details a:hover {
  opacity: 0.7;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-inner {
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid var(--gray-light);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2001;
}

.video-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Noise Texture Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* --- Utility --- */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
