/* ==========================================================================
   TATUATA Static Site — Combined Stylesheet
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Global palette */
  --bg-primary:    #2F3E34;
  --bg-secondary:  #3A4A3F;
  --bg-surface:    #344039;
  --text-primary:  #F2EFE6;
  --text-muted:    #B8C2B5;
  --accent:        #C9A24B;
  --accent-hover:  #DDB85F;
  --border:        rgba(184, 194, 181, 0.12);
  --border-faint:  rgba(184, 194, 181, 0.08);

  /* Homepage/shared .tt tokens (also global so footer, etc. work anywhere) */
  --tt-bg:           #2F3E34;
  --tt-bg-alt:       #3A4A3F;
  --tt-surface:      #344039;
  --tt-text:         #F2EFE6;
  --tt-muted:        #B8C2B5;
  --tt-accent:       #C9A24B;
  --tt-accent-hi:    #DDB85F;
  --tt-border:       rgba(184, 194, 181, 0.12);
  --tt-serif:        'Playfair Display', Georgia, serif;
  --tt-sans:         'Inter', system-ui, -apple-system, sans-serif;
  --tt-ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
  --tt-transition:   0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--accent-hover); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: 1.5rem; }

p { margin-bottom: 1rem; color: rgba(242, 239, 230, 0.82); }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--gray { background: var(--bg-secondary); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}

.btn--gold { background: var(--accent); color: #1a2420; }
.btn--gold:hover { background: var(--accent-hover); color: #1a2420; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--text-primary); border: 1px solid rgba(242, 239, 230, 0.3); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--full { width: 100%; text-align: center; margin-bottom: 0.75rem; display: block; }

/* ---- Section Titles ---- */
.section-title { text-align: center; margin-bottom: 1rem; }

.section-title__sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title__main { color: var(--text-primary); }

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(47, 62, 52, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(40, 54, 46, 0.99);
  border-bottom-color: rgba(201, 162, 75, 0.32);
}

.site-header.header--hidden {
  transform: translateY(-100%);
}

.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 90px;
}

.site-header__logo { text-decoration: none; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.logo-text:hover { color: var(--accent); }

.site-nav__list { display: flex; gap: 2.5rem; align-items: center; }

.site-nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.75);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav__link:hover,
.site-nav__item.active .site-nav__link { color: var(--accent); }

.site-nav__link:hover::after,
.site-nav__item.active .site-nav__link::after { width: 100%; }

/* ---- Artists dropdown ---- */
.site-nav__item--has-dropdown { position: relative; }

.site-nav__item-inner {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav__dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2px 4px;
  color: rgba(242, 239, 230, 0.75);
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  line-height: 1;
}

.site-nav__dropdown-toggle svg {
  transition: transform 0.3s ease;
  display: block;
}

.site-nav__item--has-dropdown:hover .site-nav__dropdown-toggle,
.site-nav__item--has-dropdown.is-open .site-nav__dropdown-toggle {
  color: var(--accent);
}

.site-nav__item--has-dropdown.is-open .site-nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 150px;
  background: var(--bg-secondary);
  border: 1px solid rgba(184, 194, 181, 0.15);
  padding: 0.4rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1000;
}


.site-nav__item--has-dropdown:hover .site-nav__dropdown,
.site-nav__item--has-dropdown.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown-link {
  display: block;
  padding: 0.45rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.72);
  text-decoration: none;
  pointer-events: auto;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__dropdown-link:hover {
  color: var(--accent);
  background: rgba(201, 162, 75, 0.08);
}

/* Mobile nav topbar — hidden on desktop, shown inside overlay on mobile */
.site-nav__topbar { display: none; }
.site-nav__close   { display: none; }

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

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HOMEPAGE — .tt scoped block
   ========================================================================== */

.tt {
  background: var(--tt-bg);
  color: var(--tt-text);
  font-family: var(--tt-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tt *, .tt *::before, .tt *::after { box-sizing: border-box; }
.tt a { color: inherit; text-decoration: none; }
.tt img { display: block; max-width: 100%; }
.tt p { margin: 0; color: inherit; }

/* Shared section header: TITLE ———— */
.tt-header { display: flex; align-items: center; gap: 2rem; }

.tt-heading {
  font-family: var(--tt-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--tt-text);
}

.tt-rule {
  flex: 1;
  height: 1px;
  background: var(--tt-border);
  min-width: 30px;
}

/* Buttons */
.tt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--tt-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--tt-transition);
  line-height: 1;
  text-decoration: none;
}

.tt-btn--fill {
  background: var(--tt-accent);
  border-color: var(--tt-accent);
  color: var(--tt-text);
}
.tt-btn--fill:hover {
  background: var(--tt-accent-hi);
  border-color: var(--tt-accent-hi);
  color: var(--tt-text);
}

.tt-btn--ghost {
  background: transparent;
  border-color: rgba(240, 236, 228, 0.35);
  color: var(--tt-text);
}
.tt-btn--ghost:hover {
  border-color: var(--tt-text);
  background: rgba(240, 236, 228, 0.04);
  color: var(--tt-text);
}

/* Text link with arrow */
.tt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tt-text);
  transition: gap var(--tt-transition), color var(--tt-transition);
  text-decoration: none;
}
.tt-link:hover { gap: 0.85rem; color: var(--tt-accent-hi); }

/* Scroll-triggered fade utilities */
.tt-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--tt-ease), transform 0.65s var(--tt-ease);
}
.tt-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s var(--tt-ease), transform 0.65s var(--tt-ease);
}
.tt-up.tt-in, .tt-right.tt-in { opacity: 1; transform: translate(0, 0); }

/* ---- 1. HERO ---- */
.tt-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tt-hero__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.tt-hero__grad {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 24, 0.58);
  z-index: 1;
}

.tt-hero__body {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 7vw, 7rem);
  max-width: 960px;
}

.tt-hero__wordmark {
  font-family: var(--tt-serif);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 0.88;
  color: var(--tt-text);
  opacity: 0;
  transform: translateY(32px);
  animation: tt-fadeup 0.85s var(--tt-ease) 0.15s forwards;
}

.tt-hero__tag {
  font-family: var(--tt-sans);
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tt-muted);
  margin-top: 1.4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: tt-fadeup 0.85s var(--tt-ease) 0.35s forwards;
}

.tt-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.75rem;
  opacity: 0;
  transform: translateY(14px);
  animation: tt-fadeup 0.85s var(--tt-ease) 0.55s forwards;
}

@keyframes tt-fadeup {
  to { opacity: 1; transform: translateY(0); }
}

.tt-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: tt-fadeup 1s var(--tt-ease) 1s forwards;
}

.tt-hero__scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(240, 236, 228, 0.25));
  animation: tt-scrollpulse 2.2s ease-in-out infinite;
}

@keyframes tt-scrollpulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.7;  transform: scaleY(0.85); }
}

/* ---- 2. FRESH INK GALLERY STRIP ---- */
.tt-gallery {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--tt-bg-alt);
  overflow: hidden;
}

.tt-gallery__hd {
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  margin-bottom: 2.25rem;
}

.tt-gallery__sub {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--tt-muted);
  margin-top: 0.9rem;
  max-width: 480px;
}

.tt-strip-outer { overflow: hidden; }

.tt-strip {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: tt-scroll 40s linear infinite;
}

.tt-strip-outer:hover .tt-strip { animation-play-state: paused; }

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

/* Fixed height, natural width — each photo keeps its aspect ratio,
   object-fit: cover fills the frame without distortion. */
.tt-strip__item {
  flex: none;
  height: 380px;
  width: auto;
  min-width: 240px;
  max-width: 540px;
  overflow: hidden;
  background: var(--tt-surface);
}

.tt-strip__item img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  filter: grayscale(12%);
  transition: filter 0.5s var(--tt-ease);
  pointer-events: none;
  display: block;
}

.tt-strip-outer:hover .tt-strip__item img { filter: grayscale(0%); }

@media (max-width: 640px) {
  .tt-strip__item { height: 260px; min-width: 160px; max-width: 380px; }
}

/* ---- 5. HOMEPAGE FOOTER (tt-footer) ---- */
.tt-footer {
  background: #232e27;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid var(--tt-border);
}

.tt-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--tt-border);
}

@media (max-width: 900px) { .tt-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .tt-footer__grid { grid-template-columns: 1fr; } }

.tt-footer__logo {
  display: block;
  font-family: var(--tt-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tt-text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.tt-footer__logo:hover { color: var(--tt-text); }

.tt-footer__strap { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tt-muted); line-height: 1.6; }

.tt-footer__col-title { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tt-accent-hi); margin-bottom: 1.2rem; font-weight: 500; }

.tt-footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.tt-footer__nav a { font-size: 0.86rem; color: var(--tt-muted); transition: color 0.2s var(--tt-ease); letter-spacing: 0.01em; text-decoration: none; }
.tt-footer__nav a:hover { color: var(--tt-text); }

.tt-footer__contact { display: flex; flex-direction: column; gap: 0.7rem; }
.tt-footer__contact-line { font-size: 0.86rem; color: var(--tt-muted); }
.tt-footer__contact-line a { transition: color 0.2s var(--tt-ease); text-decoration: none; color: var(--tt-muted); }
.tt-footer__contact-line a:hover { color: var(--tt-text); }

.tt-footer__bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.tt-footer__copy { font-size: 0.7rem; letter-spacing: 0.05em; color: var(--tt-muted); }

.tt-footer__socials { display: flex; gap: 1rem; }
.tt-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--tt-border);
  color: var(--tt-muted);
  text-decoration: none;
  transition: border-color 0.25s var(--tt-ease), color 0.25s var(--tt-ease);
}
.tt-footer__social:hover { border-color: rgba(240, 236, 228, 0.3); color: var(--tt-text); }

/* ==========================================================================
   TATTOOS PAGE — .ta-* styles
   ========================================================================== */

.ta-artists {
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--bg-primary);
}

.ta-artists__hd { display: flex; align-items: center; gap: 2rem; margin-bottom: 3rem; }

.ta-artists__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--text-primary);
}

.ta-artists__rule { flex: 1; height: 1px; background: rgba(184, 194, 181, 0.12); min-width: 30px; }

.ta-artists__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) { .ta-artists__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .ta-artists__grid { grid-template-columns: repeat(4, 1fr); } }

.ta-card {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-secondary);
  text-decoration: none;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.ta-card.ta-in { opacity: 1; transform: translateY(0); }

.ta-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(22%) brightness(0.9);
  transition: transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ta-card:hover .ta-card__img { transform: scale(1.06); filter: grayscale(0%) brightness(1); }

.ta-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 42%, transparent 100%);
  transition: background 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ta-card:hover .ta-card__veil {
  background: linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.5) 55%, rgba(10,10,10,0.12) 100%);
}

.ta-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.1rem 1.1rem 1.25rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ta-card:hover .ta-card__info { transform: translateY(-6px); }

.ta-card__name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); line-height: 1.2; }
.ta-card__style { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.2rem; }

.ta-card__cta {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.55rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ta-card:hover .ta-card__cta { opacity: 1; transform: translateY(0); }

.ta-divider { height: 1px; background: rgba(184, 194, 181, 0.1); margin: 0 clamp(1.5rem, 6vw, 6rem); }

/* ==========================================================================
   GALLERY PAGES — tabs, grid, modal
   ========================================================================== */

.gallery-hero { padding: 10rem 0 4rem; text-align: center; }

.gallery-tabs {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: rgba(47, 62, 52, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.gallery-tabs__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.42);
  background: none; border: none;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.gallery-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.gallery-tab:hover { color: rgba(242, 239, 230, 0.78); }
.gallery-tab.active { color: var(--accent); }
.gallery-tab.active::after { transform: scaleX(1); }

.gallery-sections { padding: 4rem 0 8rem; }

.gallery-artist-section { display: none; }
.gallery-artist-section.active { display: block; animation: fadeUp 0.4s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gallery-artist-header { text-align: center; padding: 3rem 0 2.5rem; }
.gallery-artist-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--text-primary); margin-bottom: 0.5rem; }
.gallery-artist-header p { color: rgba(242, 239, 230, 0.42); font-size: 0.9375rem; letter-spacing: 0.05em; margin: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--bg-secondary);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(0,0,0,0.42); }

.gallery-item__zoom {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s ease;
  width: 52px; height: 52px;
  border: 2px solid rgba(242, 239, 230, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: scale(1); }
.gallery-item__zoom svg { width: 20px; height: 20px; color: var(--text-primary); }

/* Gallery Modal */
.gallery-modal {
  position: fixed; inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-modal.open { opacity: 1; pointer-events: all; }

.gallery-modal__overlay { position: absolute; inset: 0; background: rgba(14, 24, 18, 0.96); }

.gallery-modal__content {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.gallery-modal__image { max-width: 80vw; max-height: 85vh; object-fit: contain; }

.gallery-modal__close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  background: rgba(242, 239, 230, 0.07);
  border: 1px solid rgba(242, 239, 230, 0.14);
  color: var(--text-primary);
  width: 48px; height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.gallery-modal__close:hover { background: rgba(201, 162, 75, 0.18); border-color: var(--accent); color: var(--accent); }

.gallery-modal__btn {
  background: rgba(242, 239, 230, 0.07);
  border: 1px solid rgba(242, 239, 230, 0.14);
  color: var(--text-primary);
  width: 56px; height: 56px;
  font-size: 2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.gallery-modal__btn:hover { background: rgba(201, 162, 75, 0.18); border-color: var(--accent); color: var(--accent); }

.gallery-modal__counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(242, 239, 230, 0.4);
  z-index: 2;
  pointer-events: none;
}

.ap-gallery__item { cursor: pointer; }
.tt-strip__item   { cursor: pointer; }

/* ==========================================================================
   ARTIST PORTFOLIO PAGE — .ap-* styles
   ========================================================================== */

.ap {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
.ap *, .ap *::before, .ap *::after { box-sizing: border-box; }
.ap a { color: inherit; text-decoration: none; }
.ap img { display: block; max-width: 100%; }
.ap p { margin: 0; color: inherit; }

.ap-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: clamp(6rem, 10vw, 8rem) clamp(1.5rem, 6vw, 6rem) 0;
  display: block;
  transition: color 0.25s ease;
  text-decoration: none;
}
.ap-back:hover { color: var(--accent); }

.ap-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

@media (max-width: 768px) { .ap-hero { grid-template-columns: 1fr; } }

.ap-hero__photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  /* Don't stretch to match the info column's height — that height now
     changes when the booking-info accordion opens/closes, and the photo
     must stay fixed to its own aspect ratio regardless. */
  align-self: start;
}
.ap-hero__photo img { width: 100%; height: auto; object-fit: cover; display: block; filter: grayscale(15%); transition: filter 0.6s ease; }
.ap-hero__photo:hover img { filter: grayscale(0%); }

.ap-hero__photo--contain { max-height: 70vh; display: flex; align-items: center; justify-content: center; }
.ap-hero__photo--contain img { height: auto; max-height: 70vh; object-fit: contain; }

.ap-hero__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--bg-secondary);
  border-left: 1px solid rgba(184, 194, 181, 0.1);
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 768px) { .ap-hero__info { border-left: none; border-top: 1px solid rgba(184, 194, 181, 0.1); } }

.ap-hero__eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.ap-hero__name { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 700; line-height: 0.92; letter-spacing: -0.01em; color: var(--text-primary); margin-bottom: 1.5rem; overflow-wrap: break-word; }
.ap-hero__style { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(184, 194, 181, 0.1); }
.ap-hero__bio { font-size: 1rem; line-height: 1.85; color: rgba(242, 239, 230, 0.72); max-width: 420px; margin-bottom: 1.25rem; }
.ap-hero__bio:last-of-type { margin-bottom: 2.5rem; }
.ap-hero__bio a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.ap-hero__bio a:hover { color: var(--accent-hover); }

.ap-hero__links { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }

.ap-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: gap 0.25s ease, color 0.25s ease;
  text-decoration: none;
}
.ap-link:hover { gap: 0.85rem; color: var(--accent); }

/* ---- Accordion (e.g. artist booking info) ---- */
.ap-accordion {
  margin-top: 2rem;
  max-width: 420px;
  border-top: 1px solid var(--border);
}

.ap-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
}
.ap-accordion__summary::-webkit-details-marker { display: none; }
.ap-accordion__summary::marker { content: ''; }

.ap-accordion__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ap-accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.ap-accordion__icon::before,
.ap-accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.ap-accordion__icon::before { width: 14px; height: 1.5px; }
.ap-accordion__icon::after { width: 1.5px; height: 14px; }
.ap-accordion[open] .ap-accordion__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.ap-accordion__summary:hover .ap-accordion__icon::before,
.ap-accordion__summary:hover .ap-accordion__icon::after { background: var(--accent-hover); }

.ap-accordion__body {
  padding: 0 0 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.ap-accordion__body p { margin: 0 0 1.1rem; }
.ap-accordion__body p:last-child { margin-bottom: 0; }
.ap-accordion__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.ap-accordion__body a:hover { color: var(--accent-hover); }

.ap-accordion__section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 0.85rem !important;
}
.ap-accordion__section-label:not(:first-child) { margin-top: 1.75rem; }

.ap-gallery {
  padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--bg-primary);
}

.ap-gallery__header { display: flex; align-items: center; gap: 2rem; margin-bottom: 3rem; }
.ap-gallery__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 600; letter-spacing: 0.05em; white-space: nowrap; flex-shrink: 0; color: var(--text-primary); }
.ap-gallery__rule { flex: 1; height: 1px; background: rgba(184, 194, 181, 0.12); }

.ap-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

@media (max-width: 900px) { .ap-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ap-gallery__grid { grid-template-columns: 1fr; } }

.ap-gallery__item { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-secondary); }
.ap-gallery__item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%); transition: transform 0.55s ease, filter 0.55s ease; }
.ap-gallery__item:hover img { transform: scale(1.05); filter: grayscale(0%); }

.ap-footer {
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--bg-secondary);
  border-top: 1px solid rgba(184, 194, 181, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ap-footer__back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: gap 0.25s ease, color 0.25s ease;
  text-decoration: none;
}
.ap-footer__back:hover { gap: 0.95rem; color: var(--text-primary); }

.ap-footer__studio { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(242, 239, 230, 0.3); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-hero {
  padding: 10rem 0 6rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-story { padding: 7rem 0; background: var(--bg-secondary); }

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

.about-story__image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(15%); }
.about-story__image--logo { display: block; padding: 0; overflow: hidden; border-radius: 4px; }
.about-story__image--logo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: none; }
.about-story__text h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.5rem; color: var(--text-primary); }
.about-story__text p { font-size: 1rem; line-height: 1.85; color: rgba(242, 239, 230, 0.68); margin-bottom: 1.25rem; }

.about-artists { padding: 8rem 0; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 4rem;
}

.artist-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--bg-secondary); }
.artist-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.artist-card:hover img { transform: scale(1.06); }

.artist-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.artist-card__name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text-primary); margin-bottom: 0.3rem; }
.artist-card__role { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-hero { padding: 10rem 0 5rem; text-align: center; }
.contact-main { padding: 4rem 0 8rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; }

.contact-info__title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-primary); margin-bottom: 2.5rem; }

.contact-detail { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2.5rem; }

.contact-detail__icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(201, 162, 75, 0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-detail__icon svg { width: 20px; height: 20px; }

.contact-detail__label { font-family: 'Inter', sans-serif; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.25rem; }
.contact-detail__value { color: rgba(242, 239, 230, 0.78); font-size: 1rem; line-height: 1.6; margin: 0; }
.contact-detail__value a { color: rgba(242, 239, 230, 0.78); text-decoration: none; }
.contact-detail__value a:hover { color: var(--accent); }

.social-links { margin-top: 3rem; }
.social-links__title { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242, 239, 230, 0.32); margin-bottom: 1rem; }
.social-links__list { display: flex; gap: 0.75rem; }

.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(242, 239, 230, 0.48);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(201, 162, 75, 0.06); }
.social-link svg { width: 18px; height: 18px; }

.booking-box { background: var(--bg-secondary); border: 1px solid rgba(201, 162, 75, 0.18); padding: 3rem; }
.booking-box__title { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.booking-box__subtitle { font-size: 0.875rem; color: rgba(242, 239, 230, 0.42); margin-bottom: 2.5rem; letter-spacing: 0.05em; }

.booking-steps { counter-reset: steps; }

.booking-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-faint);
}
.booking-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.booking-step__num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: rgba(201, 162, 75, 0.25); line-height: 1; flex-shrink: 0; width: 48px; }
.booking-step__title { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
.booking-step__text { font-size: 0.9rem; color: rgba(242, 239, 230, 0.52); margin: 0; }

/* ==========================================================================
   PLACEHOLDER / INFO PAGES
   ========================================================================== */

.page-hero {
  padding: 12rem 2rem 6rem;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--text-primary); margin-bottom: 1rem; }
.page-hero p { max-width: 560px; font-size: 1rem; line-height: 1.85; color: rgba(242, 239, 230, 0.55); margin: 0 auto; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .about-story__grid,
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-story__image--logo img { aspect-ratio: 16/10; max-height: 420px; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .site-header__container { padding: 0 1.25rem; }

  .nav-toggle { display: flex; }

  /* Full-screen overlay — sits above the header (z-index 1001 > 1000) */
  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
  }
  .site-nav.open { transform: translateX(0); }

  /* Topbar inside the overlay — logo left, × right */
  .site-nav__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    height: 80px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(184, 194, 181, 0.1);
  }

  .site-nav__close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 6px;
    transition: color 0.2s ease;
  }
  .site-nav__close:hover { color: var(--accent); }

  /* Link list — fills remaining height and centers the group */
  .site-nav__list {
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    text-align: center;
    width: 100%;
    padding: 0;
  }

  .site-nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(184, 194, 181, 0.07);
  }
  .site-nav__item:first-child { border-top: 1px solid rgba(184, 194, 181, 0.07); }

  .site-nav__link {
    font-size: 0.875rem;
    letter-spacing: 0.18em;
    display: block;
    padding: 0.8rem 2rem;
  }

  /* Dropdown: mobile overrides */
  .site-nav__item--has-dropdown { position: static; }
  .site-nav__item-inner { justify-content: center; padding: 0.8rem 2rem; }
  .site-nav__item--has-dropdown .site-nav__link { padding: 0; display: inline; }
  .site-nav__dropdown {
    position: static;
    transform: none;
    left: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    border-top: 1px solid rgba(184, 194, 181, 0.07);
    padding: 0.2rem 1rem 0.3rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .site-nav__item--has-dropdown.is-open .site-nav__dropdown {
    display: grid;
    /* The global (non-mobile) open-state rule sets transform: translateX(-50%),
       which has equal specificity and would otherwise win, shifting this
       single-column list half its own width off-screen. */
    transform: none;
  }
  .site-nav__dropdown-link {
    font-size: 0.7rem;
    text-align: center;
    padding: 0.32rem 0.5rem;
    letter-spacing: 0.1em;
  }
  .site-nav__dropdown-toggle { padding: 0 2px 0; }

  /* Push artists grid below the fixed 90px header */
  .ta-artists { padding-top: calc(90px + 2rem); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tab { padding: 0.625rem 0.875rem; font-size: 0.75rem; }

  .tt-hero__ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: 1fr; }
  .tt-footer__grid { grid-template-columns: 1fr; }
  .tt-hero__wordmark { line-height: 0.92; }
  .tt-hero__ctas { flex-direction: column; align-items: flex-start; }
}
