/* ═══════════════════════════════════════════════════
   GYPSY TATTOO — styles.css
   Ref: inkedstudios.com layout
   Palette: warm off-white · charcoal · rust/sienna
   Fonts: Syne (display + headings) · DM Sans (body)
═══════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────── */
:root {
  --bg:         #F7F4F0;   /* warm off-white page bg  */
  --white:      #FFFFFF;
  --gray:       #E5E1DB;   /* borders, dividers        */
  --gray-2:     #ECE9E4;   /* subtle section bg        */
  --dark:       #161412;   /* near-black               */
  --dark-2:     #1E1B18;   /* info strip bg            */
  --charcoal:   #2C2926;
  --accent-2:   #209ec8;
  --accent:     #03fffe;   /* burnt sienna / rust      */
  --accent-dk:  #8F2E10;   /* darker rust for buttons  */
  --text:       #1E1B18;
  --muted:      #6B6460;

  --font-display: 'Manrope', sans-serif;
  --font-heading: 'Manrope', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --nav-h:   72px;
  --t:       .28s ease;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img     { display: block; max-width: 100%; height: auto; }
a       { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Container ───────────────────────────────────── */
.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

/* ── Section label (eyebrow) ─────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .5rem;
}
.section-label--light { color: rgba(255,255,255,.6); }

/* ── Headings ────────────────────────────────────── */
h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.section-header { margin-bottom: 2.8rem; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  background: var(--dark);
  color: #fff;
  transition: background var(--t), transform .15s;
}
.btn:hover  { background: var(--accent-2); transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-ghost-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--dark);
  color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   NAV  — warm white, dark text, rust hover line
══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.nav-logo-img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--dark);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--charcoal);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.nav-links a:hover {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}
.nav-cta { color: var(--accent-2) !important; }

.nav-fb-icon {
  display: flex;
  align-items: center;
}
.nav-fb-icon img {
  width: 26px;
  height: 26px;
  display: block;
  transition: opacity var(--t), transform var(--t);
}
.nav-fb-icon:hover img {
  opacity: .75;
  transform: scale(1.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* ══════════════════════════════════════════════════
   HERO  — full-screen, cycling photo slideshow
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 1rem 5rem;
  overflow: hidden;
}

/* Slide stack */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slide.active { opacity: 1; }

/* Dark overlay sits above slides */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(12,10,8,.68) 0%, rgba(8,6,4,.76) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.3rem;
  max-width: 860px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  text-shadow: 0 2px 16px rgba(255,255,255,.25);
}

.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.4rem;
}

.hero-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.4));
}

.flex-wrapper {
  display: flex;
  flex-direction: column;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.03em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(.9rem, 2.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-shadow: 0 2px 18px rgba(255,255,255,.25);
}

.hero-body {
  max-width: 52ch;
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

.hero-award img {
  height: 58px;
  width: auto;
  border-radius: 3px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.65));
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: .3rem;
}

.hover:hover {
  color: white;

}

/* ══════════════════════════════════════════════════
   AWARD STRIP — replaces info strip below hero
══════════════════════════════════════════════════ */
.award-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 2.2rem 2rem;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.award-pic {
  height: 100px;
  width: 250px;
  flex-shrink: 0;
  border-radius: 4px;
}

.award-strip-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.award-strip-text p {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.award-strip-text strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(255,255,255,.22);
}

/* ══════════════════════════════════════════════════
   ABOUT — warm white, 2-col split
══════════════════════════════════════════════════ */
.about {
  padding: 5.5rem 0;
  background: var(--white);
}

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

.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.about-text p {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-award-block {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border-left: 3px solid var(--accent-2);
}
.about-award-block img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}
.about-award-block p {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   ARTISTS BANNER — dark charcoal header band
══════════════════════════════════════════════════ */
.artists-banner {
  padding: 4.5rem 0 3.5rem;
  background: var(--dark);
  text-align: center;
}
.artists-banner h2 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 0;
  text-shadow: 0 3px 28px rgba(255,255,255,.22);
}

/* ══════════════════════════════════════════════════
   ARTIST SECTIONS
══════════════════════════════════════════════════ */
.artist-section {
  padding: 4.5rem 0 0;
  background: var(--white);
}
.artist-section--alt { background: var(--bg); }

.artist-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem 3rem;
  align-items: start;
  padding-bottom: 3rem;
}

.artist-intro-left {
  display: flex;
  align-items: center;
}

.artist-intro-right {
  display: flex;
  flex-direction: column;
  gap: .8rem;

}

.artist-num {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--accent-2);
}

.artist-portrait {
  width: 500px;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
}

.artist-name {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6rem);
  padding-left: .4rem;
  border-left: 3px solid var(--accent-2);

  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 0;
}

.artist-role {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  padding: .2rem .65rem;
}

.artist-bio {
  grid-column: 2;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 58ch;
}

/* ── Masonry ─────────────────────────────────── */
.masonry-wrap {
  columns: 3 280px;
  column-gap: 4px;
  line-height: 0;
  width: 100%;
}
.masonry-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  margin-bottom: 4px;
  break-inside: avoid;
  cursor: zoom-in;
  filter: brightness(.93) saturate(.85);
  transition: filter var(--t), transform .4s ease;
}
.masonry-wrap img:hover {
  filter: brightness(1.04) saturate(1.06);
  transform: scale(1.012);
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════ */
.reviews-section {
  padding: 5.5rem 0;
  background: var(--gray-2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: box-shadow var(--t), transform var(--t);
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--accent-2);
  font-size: .9rem;
  letter-spacing: .12em;
}

.review-card blockquote {
  font-size: .93rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--muted);
  border-left: 2px solid var(--accent-2);
  padding-left: 1.1rem;
  flex: 1;
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.review-card footer strong { color: var(--dark); }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2   { margin-bottom: 1rem; }
.contact-info address p {
  font-size: .97rem;
  color: var(--muted);
  margin-bottom: .5rem;
}
.contact-info a    { color: var(--accent-2); font-weight: 600; }

.contact-actions {
  display: flex;
  gap: .8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hours h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--dark);
  margin-bottom: 1rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}
.hours-table td {
  padding: .65rem .3rem;
  border-bottom: 1px solid var(--border);
}
.hours-table td:first-child { font-weight: 600; color: var(--dark); width: 55%; }
.hours-table td:last-child  { color: var(--muted); text-align: right; }
.hours-table tr.late  td:last-child { color: var(--accent-2); font-weight: 700; }
.hours-table tr.closed td           { color: #C8C4BF; }
.hours-table tr.closed td:first-child { font-weight: 400; }

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq-section {
  padding: 5.5rem 0;
  background: var(--dark);
}

.faq-section .section-header { text-align: left; }
.faq-section h2   { color: #fff; text-shadow: 0 3px 28px rgba(255,255,255,.22); }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.08);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
  text-shadow: 0 2px 16px rgba(255,255,255,.2);
  transition: color var(--t);
}

/* Remove default marker in all browsers */
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }

/* Custom +/− indicator */
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-2);
  flex-shrink: 0;
  transition: transform var(--t), color var(--t);
}

.faq-item[open] .faq-q { color: var(--accent-2); }
.faq-item[open] .faq-q::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-a {
  padding: 0 0 1.5rem;
  font-size: .97rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 72ch;
}

/* ── Map embed ───────────────────────────────── */
.map-wrap {
  width: min(1160px, 92vw);
  height: 420px;
  margin: 4rem auto 0;
  overflow: hidden;
  border: 1px solid black;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%) contrast(1.02);
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  /* border-top: 3px solid var(--accent); */
  padding: 2.4rem 0;
}

.footer-inner {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  width: 250px;
  height: 80px;
  filter: invert(1);
  opacity: .5;
}

.footer-copy { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-fb-icon img {
  width: 28px;
  height: 28px;
  display: block;
  transition: opacity var(--t), transform var(--t);
}
.footer-fb-icon:hover img { 
  opacity: 1; transform: scale(1.1); 
}

/* ══════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10,8,6,.96);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }

#lbImg {
  max-width: 92vw;
  max-height: 92svh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(255,255,255,.22);
}

#lbClose {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--t);
}

.new {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  flex-shrink: 0;
}
#lbClose:hover { color: #fff; }

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .6s ease, transform .6s ease;
}


.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img img { height: 340px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .award-strip   { flex-direction: column; text-align: center; gap: 1rem; padding: 2rem 1.5rem; }
  .artist-intro  { grid-template-columns: 1fr; gap: 1rem; }
  .artist-bio    { grid-column: auto; }
  .masonry-wrap  { columns: 2 220px; }
}

@media (max-width: 600px) {
  .artist-intro {
    grid-template-columns: 110px 1fr;
    row-gap: .8rem;
    align-items: center;
  }
  .artist-intro-right { justify-content: center; }
  .artist-bio {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  :root { --nav-h: 62px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li   { width: 100%; }
  .nav-links a    { display: block; padding: .8rem 1.5rem; border-bottom: 1px solid var(--border); }

  .hero-title   { font-size: clamp(2.4rem, 12vw, 5rem); }
  .hero-title-row { gap: .4rem; }
  .hero-logo    { width: 80px; height: 80px; }
  .masonry-wrap { columns: 2 150px; }
  .artist-portrait { width: 110px; height: 110px; }

  .footer-inner    { flex-direction: column; align-items: flex-start; }
  .contact-actions { flex-direction: column; }
  h2 { font-size: 1.8rem; }
}
