/* ============================================================
   APEX TATTOO — MAIN STYLESHEET
   Veteran-Owned Custom Tattoo Studio | Conway & Rogers, AR
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --ink:        #0a0a0a;
  --ink-mid:    #141414;
  --ink-light:  #1e1e1e;
  --ash:        #2a2a2a;
  --smoke:      #888888;
  --silver:     #c8c8c8;
  --white:      #f0ece4;
  --gold:       #c9a84c;
  --gold-light: #e8c96d;
  --red:        #b91c1c;
  --font-display:    'Bebas Neue', sans-serif;
  --font-body:       'Barlow', sans-serif;
  --font-condensed:  'Barlow Condensed', sans-serif;
  --max-width: 1200px;
  --section-pad: 100px 0;

  /* Real image URLs from theapextattoostudio.com */
  --img-hero-bg:      url('https://static.wixstatic.com/media/dd345a_81768af280914df686c4285005e16ec6~mv2.png/v1/fill/w_1920,h_1280,al_c,q_95,usm_0.66_1.00_0.01,enc_avif,quality_auto/dd345a_81768af280914df686c4285005e16ec6~mv2.png');
  --img-artist-bw:    url('https://static.wixstatic.com/media/f12c8a6019f146caa1919c0c095c7923.jpg/v1/crop/x_1558,y_0,w_980,h_2018,q_90,enc_avif,quality_auto/f12c8a6019f146caa1919c0c095c7923.jpg');
  --img-studio-wide:  url('https://static.wixstatic.com/media/dd345a_3b250fbf6487484dacbb368d8d35ad3b~mv2.png/v1/crop/x_0,y_1053,w_3024,h_1927/fill/w_918,h_577,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/IMG_6163_heic.png');
  --img-logo:         url('https://static.wixstatic.com/media/dd345a_4c7801e6940b4c6ba510d8c98760921d~mv2.png/v1/fill/w_350,h_347,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/dd345a_4c7801e6940b4c6ba510d8c98760921d~mv2.png');
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* ── NOISE TEXTURE ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section-pad { padding: var(--section-pad); }
.relative { position: relative; z-index: 1; }

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────── */
.eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.eyebrow::after { content: ''; width: 48px; height: 1px; background: var(--gold); }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--smoke);
  max-width: 600px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240,236,228,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-light);
  transform: translateY(-2px);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.apex-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow 0.3s;
}
.apex-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu .nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 8px 20px;
  font-weight: 700;
}
.nav-menu .nav-cta:hover {
  background: var(--gold-light);
  color: var(--ink) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver);
  transition: all 0.3s;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.88) 45%, rgba(10,10,10,0.3) 100%),
    var(--img-hero-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-artist-panel {
  position: absolute;
  right: 0;
  top: 72px;
  bottom: 0;
  width: 40%;
  background-image:
    linear-gradient(to right, rgba(10,10,10,1) 0%, rgba(10,10,10,0.2) 40%, transparent 70%),
    var(--img-artist-bw);
  background-size: cover;
  background-position: top center;
  z-index: 1;
}
.hero-watermark {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  color: rgba(201,168,76,0.035);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .stroke { -webkit-text-stroke: 1px rgba(240,236,228,0.35); color: transparent; }

.hero-sub {
  font-family: var(--font-condensed);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--smoke);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s forwards;
}
.hero-badge {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.06);
  padding: 5px 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}

.hero-locations {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding: 28px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(201,168,76,0.1);
  opacity: 0;
  animation: fadeUp 0.7s 1s forwards;
}
.loc-item { display: flex; align-items: flex-start; gap: 12px; }
.loc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
  flex-shrink: 0; margin-top: 4px;
}
.loc-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  display: block;
  margin-bottom: 2px;
}
.loc-addr {
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver);
  display: block;
}
.loc-phone {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-top: 2px;
}
.loc-phone:hover { color: var(--gold-light); }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--ink-mid);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 18px 40px;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.08); }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section-dark { background: var(--ink); padding: var(--section-pad); }
.section-mid  { background: var(--ink-mid); padding: var(--section-pad); }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.answer-block {
  background: var(--ink-mid);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 24px 0 28px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--silver);
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,0.08);
  margin-top: 40px;
}
.stat-box {
  background: var(--ink-mid);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}
.about-img-wrap { position: relative; padding-bottom: 30px; padding-right: 30px; }
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  background-image: var(--img-studio-wide);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(201,168,76,0.12);
}
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  aspect-ratio: 1;
  background-image: url('https://static.wixstatic.com/media/dd345a_32abdee4c0cb4035ba23e949120ca20a~mv2.png/v1/crop/x_57,y_0,w_3917,h_3024/fill/w_399,h_303,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/IMG_6548_heic.png');
  background-size: cover;
  background-position: center;
  border: 4px solid var(--ink);
}
.vet-ribbon {
  position: absolute;
  top: 24px;
  left: -16px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}

/* ── STYLES GRID ────────────────────────────────────────────── */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.07);
  margin-top: 56px;
}
.style-card {
  background: var(--ink);
  padding: 32px 24px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.style-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.style-card:hover { background: #111; }
.style-card:hover::after { transform: scaleX(1); }
.style-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.style-card:hover .style-num { color: rgba(201,168,76,0.14); }
.style-name {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.style-desc { font-size: 0.82rem; line-height: 1.65; color: var(--smoke); }

/* ── GALLERY GRID ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--ash);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── ARTISTS ────────────────────────────────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 56px;
  background: rgba(201,168,76,0.07);
}
.artist-card {
  background: var(--ink-mid);
  padding: 48px 40px;
  transition: background 0.3s;
}
.artist-card:hover { background: var(--ink-light); }
.artist-loc-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 10px;
  margin-bottom: 20px;
}
.artist-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.35);
  margin-bottom: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
}
.artist-photo-justin {
  background-image: url('https://static.wixstatic.com/media/dd345a_4cd267364c9b47e88fd5401e5d223c8e~mv2.jpg/v1/fill/w_379,h_467,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/335161567_901080167878676_4417558306108201548_n.jpg');
}
.artist-photo-mumbles {
  background-image: url('https://static.wixstatic.com/media/dd345a_404762c869894dc799f963217e880503~mv2.png/v1/fill/w_373,h_461,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/dd345a_404762c869894dc799f963217e880503~mv2.png');
}
.artist-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 4px;
}
.artist-title {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.artist-bio {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--smoke);
  margin-bottom: 12px;
}
.artist-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.artist-tag {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 3px 9px;
}
.artist-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 24px;
  transition: gap 0.2s;
}
.artist-link:hover { gap: 14px; color: var(--gold-light); }

/* ── LOCATIONS ──────────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 56px;
  background: rgba(201,168,76,0.07);
}
.location-card {
  background: var(--ink);
  padding: 56px 48px;
}
.loc-tag {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.loc-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.5); }
.location-city {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 32px;
}
.location-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.detail-row { display: flex; align-items: flex-start; gap: 14px; }
.detail-key {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  width: 72px;
  flex-shrink: 0;
  padding-top: 2px;
}
.detail-val { font-size: 0.88rem; color: var(--silver); line-height: 1.6; }
.detail-val a { color: var(--gold); font-weight: 600; }
.hours-table { display: grid; grid-template-columns: auto 1fr; gap: 2px 10px; font-size: 0.82rem; }
.hours-day { font-family: var(--font-condensed); font-weight: 600; color: var(--smoke); font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; }
.hours-time { color: var(--silver); }
.hours-time.appt { color: var(--gold); font-style: italic; }
.studio-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 24px; }
.studio-thumb { aspect-ratio: 1; background-size: cover; background-position: center; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  background: rgba(201,168,76,0.05);
}
.faq-item {
  background: var(--ink-mid);
  padding: 28px;
  transition: background 0.2s;
}
.faq-item:hover { background: var(--ink-light); }
.faq-q {
  font-family: var(--font-condensed);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.faq-a { font-size: 0.85rem; line-height: 1.75; color: var(--smoke); }

/* ── CONTENT SECTIONS ───────────────────────────────────────── */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.content-col h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.content-col h3 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 10px;
}
.content-col p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--smoke);
  margin-bottom: 14px;
}
.content-col p strong { color: var(--silver); font-weight: 500; }
.content-col a { color: var(--gold); }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'BOOK';
  position: absolute;
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(10,10,10,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 84px);
  color: var(--ink);
  line-height: 0.93;
  margin-bottom: 14px;
  position: relative;
}
.cta-sub {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  color: rgba(10,10,10,0.55);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  position: relative;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.95)),
    var(--img-hero-bg);
  background-size: cover;
  background-position: center;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { margin: 0 8px; }

/* ── CONTACT FORM ───────────────────────────────────────────── */
.contact-form { max-width: 640px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--ink-mid);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 16px 20px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.apex-footer {
  background: #050505;
  padding: 64px 40px 32px;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--smoke);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-heading {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--smoke);
  text-decoration: none;
  font-family: var(--font-condensed);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.18);
  font-family: var(--font-condensed);
  letter-spacing: 0.07em;
}
.footer-vet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .styles-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .content-2col { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .container { padding: 0 20px; }
  .apex-nav { padding: 0 20px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 24px 20px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .hero-artist-panel { display: none; }
  .hero-content { padding: 40px 20px; }
  .hero-locations { padding: 24px 20px; flex-direction: column; gap: 20px; }
  .about-grid, .content-2col, .artists-grid, .locations-grid, .faq-grid { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-float { display: none; }
  .location-card { padding: 40px 24px; }
  .artist-card { padding: 36px 24px; }
  .cta-banner { padding: 48px 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 48px; }
}

/* ── ACTIVE NAV STATE ───────────────────────────────────────── */
.nav-menu a.nav-active {
  color: var(--gold) !important;
  position: relative;
}
.nav-menu a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}
