/* ============================================================
   Skin City Leicester. Tattoo and body piercing since 1998.
   Bespoke brand build grounded in their real identity:
   gold seal badge (#C99F3D pixel-sampled from their logo),
   fleur-de-lis and spades, monochrome studio photography,
   Brandon Grotesque style geometric sans. Heritage, earned.
   ============================================================ */

:root {
  --black:      #0E0D0B;   /* page base */
  --coal:       #171613;   /* raised panels */
  --coal-2:     #201E1A;   /* cards */
  --gold:       #C99F3D;   /* their real badge gold */
  --gold-bright:#E0B54F;   /* hovers, on very dark */
  --gold-dim:   #8F7330;   /* hairlines, small marks */
  --bone:       #F1EDE4;   /* light headings */
  --bone-soft:  #B9B3A6;   /* body text on dark */
  --muted:      #7E796D;
  --white:      #FFFFFF;

  --line:       rgba(201, 159, 61, .28);
  --line-soft:  rgba(241, 237, 228, .09);

  --font-head: "Josefin Sans", "Brandon Grotesque", "Segoe UI", sans-serif;
  --font-seal: "Cinzel", Georgia, serif;
  --font-body: "Mulish", "Avenir", "Segoe UI", sans-serif;

  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 24px 50px rgba(0, 0, 0, .55);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, .4);
  --wrap: 1150px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  color: var(--bone-soft);
  background: var(--black);
  line-height: 1.72;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-bright); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--bone); line-height: 1.14; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.45rem, 3.3vw, 2.15rem); }
h3 { font-size: 1.12rem; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--gold); color: var(--black); padding: 10px 18px; }
.skip-link:focus { left: 0; }

.demo-ribbon { background: var(--gold); color: var(--black); font-size: .82rem; text-align: center; padding: 7px 14px; letter-spacing: .02em; font-weight: 700; }
.demo-ribbon strong { color: #000; }

/* seal rule: gold hairline with a centered diamond, echoing the badge */
.seal-rule { display: flex; align-items: center; gap: 16px; max-width: 320px; margin: 0 auto; }
.seal-rule::before, .seal-rule::after { content: ""; height: 1px; background: var(--gold-dim); flex: 1; }
.seal-rule span { width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); flex: none; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(14, 13, 11, .93); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 22px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 56px; height: 56px; }
.brand-name { font-family: var(--font-head); text-transform: uppercase; color: var(--bone); font-size: 1rem; letter-spacing: .14em; line-height: 1.2; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 700; color: var(--gold); font-size: .64rem; letter-spacing: .3em; }

.site-nav ul { display: flex; gap: 26px; list-style: none; align-items: center; }
.site-nav a { text-decoration: none; color: var(--bone-soft); font-weight: 700; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-bright); }
.site-nav .nav-cta { border: 1.5px solid var(--gold); color: var(--gold-bright); padding: 10px 20px; border-radius: var(--radius-sm); }
.site-nav .nav-cta:hover { background: var(--gold); color: var(--black); }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--gold); border-radius: 6px; padding: 7px 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--gold); margin: 4px 0; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--coal); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .site-nav li { width: 100%; text-align: center; }
  .site-nav a { display: block; padding: 13px 0; }
  .site-nav .nav-cta { margin: 10px auto; display: inline-block; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; filter: grayscale(1); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,13,11,.55) 0%, rgba(14,13,11,.9) 85%); }
.hero-inner { position: relative; z-index: 2; text-align: center; padding: clamp(80px, 13vw, 160px) 22px clamp(60px, 9vw, 110px); }
.hero-badge { width: clamp(130px, 18vw, 190px); margin: 0 auto 26px; filter: drop-shadow(0 10px 30px rgba(0,0,0,.6)); }
.hero-kicker { font-weight: 800; letter-spacing: .4em; text-transform: uppercase; font-size: .78rem; color: var(--gold-bright); }
.hero h1 { margin: 14px auto 16px; max-width: 800px; }
.hero p.lead { max-width: 600px; margin: 0 auto 30px; color: var(--bone-soft); font-size: 1.1rem; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; text-decoration: none; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .88rem; padding: 15px 32px; border-radius: var(--radius-sm); transition: transform .15s ease, background .15s ease, color .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-ghost { border: 1.5px solid var(--gold); color: var(--gold-bright); }
.btn-ghost:hover { background: var(--gold); color: var(--black); }

.hero-stats { position: relative; z-index: 2; display: flex; justify-content: center; gap: clamp(20px, 5vw, 64px); flex-wrap: wrap; padding: 0 22px 56px; }
.hero-stat { text-align: center; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 1.65rem; color: var(--gold-bright); letter-spacing: .04em; }
.hero-stat span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- sections ---------- */
section { padding: clamp(56px, 8vw, 100px) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head .eyebrow { font-weight: 800; letter-spacing: .34em; text-transform: uppercase; font-size: .74rem; color: var(--gold); }
.section-head h2 { margin-top: 12px; }
.section-head p { margin-top: 12px; }

.band-coal { background: var(--coal); }
.band-gold { background: var(--gold); }
.band-gold h2, .band-gold h3 { color: var(--black); }
.band-gold p { color: rgba(14, 13, 11, .8); }
.band-gold .eyebrow { color: rgba(14, 13, 11, .65); }

/* split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.split-media { border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(1); }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; } }

.tick-list { list-style: none; margin-top: 18px; }
.tick-list li { padding: 8px 0 8px 32px; position: relative; }
.tick-list li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }

/* artist blocks */
.artist-section { padding: 40px 0; border-bottom: 1px solid var(--line-soft); }
.artist-section:last-child { border-bottom: none; }
.artist-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.artist-head h3 { font-size: 1.3rem; }
.artist-head .handle-link { font-weight: 800; font-size: .88rem; letter-spacing: .06em; color: var(--gold-bright); text-decoration: none; border: 1px solid var(--gold-dim); padding: 5px 14px; border-radius: 999px; }
.artist-head .handle-link:hover { background: var(--gold); color: var(--black); }

.port-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
@media (max-width: 960px) { .port-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .port-grid { grid-template-columns: repeat(2, 1fr); } }
.port-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line-soft); transition: transform .25s ease, border-color .25s ease; }
.port-grid img:hover { transform: scale(1.03); border-color: var(--gold); }

/* cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }
.dark-card { background: var(--coal-2); border: 1px solid var(--line-soft); border-top: 3px solid var(--gold); padding: 28px 26px; }
.dark-card h3 { margin-bottom: 10px; }
.dark-card p { font-size: .97rem; }

/* info / visit */
.info-card { background: var(--coal-2); border: 1px solid var(--line-soft); padding: 30px 28px; }
.info-card h3 { margin-bottom: 12px; color: var(--gold-bright); }
.info-card + .info-card { margin-top: 22px; }
.info-card ul { list-style: none; }
.info-card li { padding: 7px 0; border-bottom: 1px solid var(--line-soft); }
.info-card li:last-child { border-bottom: none; }
.info-card a { color: var(--gold-bright); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: 9px 0; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .96rem; font-weight: 400; }
.hours-table td { text-align: right; font-weight: 800; color: var(--bone); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }

.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 54px); }
@media (max-width: 840px) { .visit-grid { grid-template-columns: 1fr; } }
.map-frame { border: 1px solid var(--line); width: 100%; height: 100%; min-height: 400px; filter: grayscale(.4); box-shadow: var(--shadow); }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: var(--coal-2); border: 1px solid var(--line-soft); margin-bottom: 12px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 800; color: var(--bone); list-style: none; position: relative; letter-spacing: .04em; }
.faq summary::after { content: "+"; position: absolute; right: 20px; color: var(--gold-bright); font-size: 1.2rem; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 22px 18px; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 24px; }

/* ---------- footer ---------- */
.site-footer { background: #090908; color: var(--muted); padding: 54px 0 30px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
@media (max-width: 840px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold); font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 12px; font-family: var(--font-head); }
.site-footer a { color: var(--bone-soft); text-decoration: none; }
.site-footer a:hover { color: var(--gold-bright); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 38px; padding-top: 20px; font-size: .82rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: var(--gold-bright); }

/* page hero (inner pages) */
.page-hero { position: relative; text-align: center; padding: clamp(60px, 9vw, 110px) 22px; background: var(--coal); border-bottom: 1px solid var(--line-soft); }
.page-hero h1 { color: var(--bone); }
.page-hero p { color: var(--bone-soft); max-width: 620px; margin: 14px auto 0; }
.page-hero .eyebrow { font-weight: 800; letter-spacing: .4em; text-transform: uppercase; font-size: .76rem; color: var(--gold-bright); }
