/* ==========================================================================
   Lucky Rose Tattoo — styles
   Palette from the shop's brand: ink black + rose gold + bone white
   ink #141414 · panel #1f1f1f · gold #e0a82e · gold-deep #b9831f · bone #f7f3ea
   Display face = KC Clementine Solid (recovered from the original Wix site)
   ========================================================================== */

/* Recovered original display font — the gold western wordmark lettering */
@font-face {
  font-family: "KC Clementine";
  src: url("../assets/fonts/kc-clementine.woff2") format("woff2"),
       url("../assets/fonts/kc-clementine.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #141414;
  --panel: #1f1f1f;
  --panel-2: #272727;
  --gold: #e0a82e;
  --gold-deep: #b9831f;
  --gold-soft: #f0cd7e;
  --bone: #f7f3ea;
  --bone-dim: #c9c3b6;
  --text: #2a2722;
  --text-dim: #5d564b;
  --line: rgba(20, 20, 20, 0.12);
  --font-display: "KC Clementine", "Rye", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }
/* anchor targets clear the fixed header */
[id] { scroll-margin-top: 6.5rem; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: 0.6rem 1rem; z-index: 200; font-weight: 700;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

/* ---------- Display helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border-radius: 2px;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(185, 131, 31, 0.35);
}
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); }
.btn--ghost-light { border-color: var(--bone); color: var(--bone); }
.btn--ghost-light:hover { background: var(--bone); color: var(--ink); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12); }
.site-header__inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand__rose { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.brand__loc {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-deep); margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav a:hover { color: var(--gold-deep); }
.nav a.is-active { color: var(--ink); border-bottom-color: var(--gold); }
.nav__cta { margin-left: 0.4rem; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 78vh;
}
.hero__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4.5rem 4rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  margin: 0.6rem 0 1.4rem;
}
.hero__title .gold { color: var(--gold); }
.hero__badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.1rem;
}
.hero__lead { font-size: 1.08rem; color: var(--bone-dim); max-width: 34rem; margin-bottom: 0.6rem; }
.hero__lead strong { color: var(--bone); }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; align-items: center; }
.hero__media { position: relative; }
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* WALK-INS WELCOME is baked into the bottom-left of the photo; the empty floor
     and ceiling are top/right, so anchor bottom-left to keep the lettering whole
     at every viewport width */
  object-position: left bottom;
}

/* ---------- Section scaffold ---------- */
.section { padding: 5.5rem 0; }
.section--ink { background: var(--ink); color: var(--bone); }
.section--panel { background: #efe9dc; }
.section__head { text-align: center; margin-bottom: 3rem; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  margin-top: 0.5rem;
}
.section--ink .section__title { color: var(--bone); }
.section__intro { max-width: 40rem; margin: 1rem auto 0; color: var(--text-dim); }
.section--ink .section__intro { color: var(--bone-dim); }

/* ---------- Recommended + reviews ---------- */
.proof { text-align: center; }
.proof__badge { width: 230px; margin: 0 auto 2.5rem; filter: drop-shadow(0 10px 22px rgba(0,0,0,0.25)); }
.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  text-align: left;
}
.review {
  background: var(--panel);
  color: var(--bone);
  border: 1px solid rgba(224, 168, 46, 0.25);
  border-radius: 6px;
  padding: 1.25rem 1.2rem 1.2rem;
  display: flex; flex-direction: column;
}
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 0.98rem; margin-bottom: 0.6rem; }
.review__text { font-size: 0.88rem; color: var(--bone-dim); line-height: 1.55; }
.review__text--clamp {
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden;
}
.review__by { margin-top: 0.9rem; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; color: var(--gold); }

/* ---------- Info strip (hours / contact) ---------- */
.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.info__col h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.info__col p { color: var(--bone-dim); margin-bottom: 0.3rem; }
.info__col a { color: var(--bone); text-decoration: none; border-bottom: 1px solid rgba(224,168,46,0.4); }
.info__col a:hover { color: var(--gold); }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; max-width: 320px; padding: 0.25rem 0; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.hours-row span:last-child { color: var(--bone); font-weight: 600; white-space: nowrap; }
.hours-row--closed span:last-child { color: var(--bone-dim); font-weight: 500; }

/* ---------- Artists grid ---------- */
.artist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3rem;
}
.artist-card {
  flex: 1 1 185px;
  max-width: 230px;
  background: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.artist-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(0,0,0,0.22); }
.artist-card__media { aspect-ratio: 3 / 4; overflow: hidden; background: #000; }
.artist-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.03);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.artist-card:hover .artist-card__media img { transform: scale(1.05); filter: grayscale(0.15) contrast(1.05); }
.artist-card__plate {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  padding: 0.7rem 0.5rem 0.85rem;
}
.artist-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.03em;
}
.artist-card__ig {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  text-decoration: none; color: var(--ink);
}
.artist-card__ig:hover { color: var(--gold-deep); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  padding: 4.5rem 1.5rem 3.5rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
}
.page-hero__title .gold { color: var(--gold); }
.page-hero__sub { color: var(--bone-dim); max-width: 40rem; margin: 1rem auto 0; }

/* ---------- FAQ / aftercare ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0.2rem;
}
.faq summary {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-size: 1.5rem; line-height: 1; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-top: 0.8rem; color: var(--text-dim); }

.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 880px; margin: 2.5rem auto 0; }
.care-card {
  background: var(--ink); color: var(--bone);
  border-radius: 8px; padding: 2rem 1.8rem;
  border-top: 4px solid var(--gold);
}
.care-card h3 { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); margin-bottom: 1rem; }
.care-card p { color: var(--bone-dim); margin-bottom: 0.9rem; font-size: 0.96rem; }
.care-note {
  max-width: 760px; margin: 2rem auto 0; text-align: center;
  font-weight: 700; color: var(--gold-deep);
}

/* ---------- Consultation form ---------- */
.form-wrap { max-width: 720px; margin: 0 auto; }
.lr-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.lr-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(20,20,20,0.18);
  border-radius: 4px; background: #fff; color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(224,168,46,0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.radio-set { display: flex; flex-wrap: wrap; gap: 1rem; }
.radio-set label { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--text); font-size: 0.95rem; }
.radio-set input { accent-color: var(--gold-deep); }
.form-note { font-size: 0.85rem; color: var(--text-dim); margin-top: 0.4rem; }
.form-status { font-weight: 700; margin-top: 0.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--bone-dim); padding: 3.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand__name { color: var(--bone); }
.footer-brand p { margin-top: 0.8rem; max-width: 22rem; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold); margin-bottom: 0.9rem; }
.footer-col p, .footer-col a { color: var(--bone-dim); text-decoration: none; font-size: 0.95rem; display: block; margin-bottom: 0.3rem; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.6rem; color: var(--bone); }
.footer-social:hover { color: var(--gold); }
.footer-bottom { text-align: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem; color: var(--bone-dim); }
.footer-bottom a { color: var(--bone-dim); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .reviews { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { padding: 3rem 1.6rem; order: 2; }
  .hero__media { order: 1; min-height: 320px; height: 52vw; }
  .info { grid-template-columns: 1fr; gap: 2rem; justify-items: center; text-align: center; }
  .hours-row { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand .brand, .footer-social { justify-content: center; }
  .footer-brand p { margin-inline: auto; }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 14px 22px rgba(0,0,0,0.12);
  }
  .nav.is-open { max-height: 26rem; }
  .nav a { padding: 0.95rem 1.5rem; border-bottom: 1px solid var(--line); }
  .nav a.is-active { border-bottom-color: var(--line); color: var(--gold-deep); }
  .nav__cta { margin: 0.8rem 1.5rem 1.1rem; text-align: center; }

  .section { padding: 4rem 0; }
  .care-grid { grid-template-columns: 1fr; }
  .lr-form { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
}
