/* =========================================================
   Vegas Vic Tattoos — shared stylesheet
   ========================================================= */

:root {
  --black: #0a0a0a;
  --near-black: #131313;
  --charcoal: #1c1c1c;
  --line: #2c2c2c;
  --white: #f3f1ec;
  --off-white: #c9c6bf;
  --red: #b1121e;
  --red-bright: #d81729;
  --gold: #ad8a3f;
  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  color: var(--white);
}

h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
}

h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); margin-bottom: 26px; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }

p { color: var(--off-white); margin-bottom: 16px; }

.eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.ornament {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  margin-bottom: 18px;
  opacity: 0.85;
}

.ornament::before { content: "\2726"; }

/* ---------- Scroll reveal ---------- */
/* Content is visible by default (no-JS safe). JS adds .reveal-init to hide
   elements just before animating them in via .in-view. */

.reveal { transition: opacity 0.8s ease, transform 0.8s ease; }

.reveal.reveal-init { opacity: 0; transform: translateY(22px); }

.reveal.reveal-init.in-view { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 15px 34px;
  border: 2px solid var(--red-bright);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { background: var(--red-bright); border-color: var(--red-bright); color: var(--white); }

.btn-solid {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.btn-solid:hover { background: var(--red); border-color: var(--red); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
}

.logo span { color: var(--red-bright); }

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

nav.main-nav ul {
  display: flex;
  gap: 34px;
}

nav.main-nav a {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--off-white);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--white);
  border-color: var(--red-bright);
}

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

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 65%, var(--black) 100%),
    radial-gradient(circle at 50% 20%, #2a2a2a 0%, #0a0a0a 70%);
  border-bottom: 1px solid rgba(173, 138, 63, 0.18);
  overflow: hidden;
}

.hero-inner { max-width: 760px; }

/* Side-by-side hero (used on Home): text on the left, video card on the right */

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  text-align: left;
  width: 100%;
  max-width: 1080px;
}

.hero.hero .hero-split .cities,
.hero-split .btn-row {
  justify-content: flex-start;
}

.hero-split .lede {
  margin: 0 0 34px;
  max-width: 520px;
}

@media (max-width: 860px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }
  .hero.hero .hero-split .cities,
  .hero-split .btn-row {
    justify-content: center;
  }
  .hero-split .lede { margin: 0 auto 34px; }
}

/* Vertical reel/video card shown within the hero (source clip is portrait 9:16,
   so it's framed as a card rather than forced into a full-bleed landscape crop) */

.reel-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  margin: 8px auto 0;
  border: 1px solid rgba(173, 138, 63, 0.4);
  overflow: hidden;
  background: var(--near-black);
}

.reel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero .cities {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 22px 0 32px;
  flex-wrap: wrap;
}

.city-badge {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--gold);
  cursor: default;
}

.city-badge + .city-badge {
  margin-left: 6px;
}

.city-badge + .city-badge::before {
  content: "\2022";
  margin-right: 10px;
  color: var(--gold);
  opacity: 0.7;
}

.hero p.lede {
  font-size: 1.15rem;
  color: var(--off-white);
  max-width: 600px;
  margin: 0 auto 34px;
}

/* ---------- Sections ---------- */

section { padding: 100px 0; border-bottom: 1px solid rgba(173, 138, 63, 0.18); }
section:last-of-type { border-bottom: none; }

.section-alt { background: var(--near-black); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head p { color: var(--off-white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stat-row {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat { text-align: left; }
.stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--red-bright);
  display: block;
}
.stat .label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
}

/* Placeholder image block (swap for real photos) */

.img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(45deg, #1a1a1a, #1a1a1a 10px, #161616 10px, #161616 20px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-frame:hover img { transform: scale(1.06); }

.img-frame .placeholder-label {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--off-white);
  text-align: center;
  padding: 12px;
}

/* ---------- Video frame ---------- */

.video-section { padding-top: 0; padding-bottom: 0; border-bottom: none; }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: repeating-linear-gradient(45deg, #1a1a1a, #1a1a1a 10px, #161616 10px, #161616 20px);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.video-frame .play-icon {
  width: 68px;
  height: 68px;
  border: 2px solid var(--red-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.video-frame .play-icon::after {
  content: "";
  border-left: 16px solid var(--red-bright);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

/* ---------- Portfolio grid ---------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}

.portfolio-grid .img-frame { aspect-ratio: 1 / 1; }

/* One larger tile breaks the rigid grid for a more organic, gallery-wall feel */
.portfolio-grid .img-frame:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

@media (max-width: 720px) {
  .portfolio-grid .img-frame:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.mini-grid .img-frame { aspect-ratio: 1 / 1; }

@media (max-width: 720px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Form flanked by a small image gallery (used on Make Appointment) */

.form-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: start;
}

.side-gallery {
  display: grid;
  gap: 16px;
}

.side-gallery .img-frame { aspect-ratio: 1 / 1; }

@media (max-width: 860px) {
  .form-layout { grid-template-columns: 1fr; }
  .side-gallery { grid-template-columns: repeat(3, 1fr); }
}

.portfolio-note {
  text-align: center;
  max-width: 620px;
  margin: 40px auto 0;
  padding: 18px 22px;
  border: 1px dashed var(--line);
  color: var(--off-white);
  font-size: 0.92rem;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.faq-item::after { content: ""; display: table; clear: both; }

.faq-img {
  float: right;
  width: 200px;
  aspect-ratio: 1 / 1;
  margin: 6px 0 16px 24px;
  border: 1px solid rgba(173, 138, 63, 0.4);
  overflow: hidden;
}

.faq-img.left { float: left; margin: 6px 24px 16px 0; }

.faq-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 600px) {
  .faq-img, .faq-img.left {
    float: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 18px;
  }
}

.faq-item h3 {
  color: var(--red-bright);
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.faq-item ul { margin: 10px 0 10px 4px; }
.faq-item ul li {
  color: var(--off-white);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.faq-item ul li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--red-bright);
}

/* ---------- Form ---------- */

form.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--off-white);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--near-black);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red-bright);
}

.field textarea { resize: vertical; min-height: 140px; }

.required-note { font-size: 0.85rem; color: var(--off-white); margin-bottom: 26px; }

.form-status {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--gold);
  display: none;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--near-black);
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--off-white);
  margin-bottom: 14px;
}

.footer-col a, .footer-col p {
  display: block;
  color: var(--off-white);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

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

.social-row { display: flex; gap: 16px; }

.social-row a {
  border: 1px solid var(--line);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-row a:hover { border-color: var(--red-bright); color: var(--red-bright); }

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #6d6a63;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav.main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    display: none;
    padding: 30px 24px;
    overflow-y: auto;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 26px; }
  nav.main-nav a { display: inline-block; padding: 6px 0; }
  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }
  section { padding: 56px 0; }
  .hero { padding: 100px 20px 56px; min-height: auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .btn { width: 100%; text-align: center; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .footer-inner { flex-direction: column; gap: 34px; }
}

@media (max-width: 420px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .city-badge { font-size: 0.85rem; }
}
