/* ============================================================
   Bloom Street Tattoo Studio, Manchester
   Bespoke brand build, grounded in their real identity:
   dusty pink sun-face emblem, deep olive, cream, ink black,
   pink/olive checkerboard frames and 8 point stars from their
   own Instagram art direction. Chunky seventies display type.
   Light, warm and welcoming: 71 reviews mention the atmosphere.
   ============================================================ */

:root {
  --cream:      #F7F0E2;   /* page base, their post-frame cream */
  --cream-deep: #EFE5D0;   /* alt bands */
  --pink:       #E5B5B2;   /* their dusty logo pink */
  --pink-soft:  #F0D2CF;   /* tints, chips */
  --pink-deep:  #C98F8B;   /* hovers, small accents */
  --olive:      #3F4530;   /* their deep olive green */
  --olive-deep: #2F3423;   /* footer, dark band */
  --olive-soft: #5A614A;   /* secondary text on cream */
  --ink:        #1C1D18;   /* headings on cream */
  --white:      #FFFDF8;

  --line:       rgba(63, 69, 48, .18);
  --line-soft:  rgba(63, 69, 48, .10);

  --font-head: "Rammetto One", "Cooper Black", Georgia, serif;
  --font-body: "Karla", "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 40px rgba(47, 52, 35, .16);
  --shadow-soft: 0 10px 22px rgba(47, 52, 35, .10);
  --wrap: 1140px;
}

* { 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(--olive-soft);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 400; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); letter-spacing: .01em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.22rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream); padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Honest demo banner */
.demo-ribbon {
  background: var(--olive-deep); color: #EDE6D2;
  font-size: .82rem; text-align: center; padding: 7px 14px; letter-spacing: .02em;
}
.demo-ribbon strong { color: var(--pink); }

/* ---------- checkerboard + star motifs (theirs) ---------- */
.checker {
  height: 26px;
  background:
    conic-gradient(var(--pink) 90deg, var(--olive) 90deg 180deg, var(--pink) 180deg 270deg, var(--olive) 270deg) 0 0 / 52px 52px;
  opacity: .92;
}
.checker.thin { height: 14px; background-size: 28px 28px; }

.star8 { width: 34px; height: 34px; flex: none; }
.star8 path { fill: var(--pink-deep); }
.star8.olive path { fill: var(--olive); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 240, 226, .94);
  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: 12px 22px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 54px; height: 54px; border-radius: 50%; }
.brand-name { font-family: var(--font-head); color: var(--ink); font-size: 1.02rem; line-height: 1.1; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 700; color: var(--pink-deep); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }

.site-nav ul { display: flex; gap: 26px; list-style: none; align-items: center; }
.site-nav a { text-decoration: none; color: var(--olive); font-weight: 700; font-size: .98rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--pink-deep); }
.site-nav .nav-cta {
  background: var(--olive); color: var(--cream); padding: 10px 20px; border-radius: 999px;
}
.site-nav .nav-cta:hover { background: var(--olive-deep); color: var(--cream); }

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

@media (max-width: 840px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); 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 ---------- */
/* warm hero: their real cream and pink brand stage, with a faithful, layered
   replica of their olive sun logo as the centrepiece. Only the sun rays spin. */
.hero { position: relative; color: var(--ink); overflow: hidden;
  background: radial-gradient(125% 130% at 50% 22%, var(--pink-soft) 0%, var(--cream) 58%); }
.hero-emblem { display: flex; justify-content: center; margin: 0 auto 4px; }
.hero-emblem svg { width: clamp(230px, 33vw, 328px); height: auto; }
.bs-field { fill: var(--pink-soft); }
.bs-sun use { fill: var(--pink-soft); stroke: var(--olive); stroke-width: 3; stroke-linejoin: round; }
.bs-facebody { fill: var(--pink-soft); stroke: var(--olive); stroke-width: 3; }
.bs-face path { fill: none; stroke: var(--olive); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.bs-face .bs-fill { fill: var(--olive); stroke: none; }
.bs-ringtext { fill: var(--olive); font-family: var(--font-body); font-weight: 800; font-size: 20px; }
.bs-sun { transform-box: fill-box; transform-origin: center; animation: bs-spin 40s linear infinite; }
@keyframes bs-spin { to { transform: rotate(360deg); } }
.hero-inner { position: relative; z-index: 2; text-align: center; padding: clamp(46px, 8vw, 84px) 22px clamp(60px, 9vw, 116px); }
.hero-kicker { font-weight: 700; letter-spacing: .3em; text-transform: uppercase; font-size: .8rem; color: var(--olive); }
.hero h1 { color: var(--ink); margin: 12px auto 16px; max-width: 830px; }
.hero p.lead { max-width: 620px; margin: 0 auto 30px; color: var(--olive-soft); font-size: 1.12rem; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { border-color: var(--olive); color: var(--olive); }
.hero .btn-ghost:hover { background: var(--olive); color: var(--cream); }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700; letter-spacing: .02em;
  padding: 14px 30px; border-radius: 999px; transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-pink { background: var(--pink); color: var(--olive-deep); }
.btn-pink:hover { background: var(--pink-deep); color: var(--white); }
.btn-ghost { border: 2px solid var(--pink); color: var(--pink); }
.btn-ghost:hover { background: var(--pink); color: var(--olive-deep); }
.btn-olive { background: var(--olive); color: var(--cream); }
.btn-olive:hover { background: var(--olive-deep); }

.hero-stats { position: relative; z-index: 2; display: flex; justify-content: center; gap: clamp(20px, 5vw, 64px); flex-wrap: wrap; padding: 0 22px 54px; }
.hero-stat { text-align: center; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--olive); }
.hero-stat span { font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--olive-soft); }

/* ---------- sections ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .eyebrow { font-weight: 700; letter-spacing: .28em; text-transform: uppercase; font-size: .78rem; color: var(--pink-deep); }
.section-head h2 { margin-top: 10px; }
.section-head p { margin-top: 12px; }

.band-cream-deep { background: var(--cream-deep); }
.band-olive { background: var(--olive-deep); }
.band-olive h2, .band-olive h3 { color: var(--white); }
.band-olive p { color: #D8CFB8; }
.band-olive .eyebrow { color: var(--pink); }

/* welcome split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 10px solid var(--white); }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; } }

.tick-list { list-style: none; margin-top: 18px; }
.tick-list li { padding: 8px 0 8px 34px; position: relative; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 18px; height: 18px;
  background: var(--pink); border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--cream);
  border: 2px solid var(--pink-deep);
}

/* ---------- artist cards ---------- */
.artist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .artist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .artist-grid { grid-template-columns: 1fr; } }

.artist-card {
  background: var(--white); border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-soft); border-top: 6px solid var(--pink);
  display: flex; flex-direction: column; gap: 8px;
}
.artist-card h3 { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.artist-card .handle { font-family: var(--font-body); font-weight: 700; font-size: .85rem; color: var(--pink-deep); }
.artist-card .followers {
  align-self: flex-start; background: var(--pink-soft); color: var(--olive-deep);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; padding: 3px 12px; border-radius: 999px;
}
.artist-card p { font-size: .98rem; }
.artist-links { margin-top: auto; padding-top: 12px; display: flex; gap: 14px; flex-wrap: wrap; font-size: .92rem; font-weight: 700; }
.artist-links a { color: var(--olive); }
.artist-links a:hover { color: var(--pink-deep); }
.artist-card.owner { border-top-color: var(--olive); }
.owner-tag { background: var(--olive); color: var(--cream); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }

/* ---------- gallery ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work-grid { grid-template-columns: 1fr; } }
.work-item { border-radius: var(--radius-sm); overflow: hidden; background: var(--white); box-shadow: var(--shadow-soft); }
.work-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform .3s ease; }
.work-item:hover img { transform: scale(1.03); }
.work-item figcaption { padding: 12px 16px; font-size: .9rem; font-weight: 700; color: var(--olive); }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-soft); position: relative;
}
.review-card::before {
  content: "\201C"; font-family: var(--font-head); font-size: 3.2rem; color: var(--pink);
  position: absolute; top: 8px; left: 20px; line-height: 1;
}
.review-card blockquote { margin-top: 26px; font-size: .99rem; color: var(--olive-soft); }
.review-card cite { display: block; margin-top: 14px; font-style: normal; font-weight: 700; color: var(--ink); font-size: .92rem; }
.review-stars { color: #D9A036; letter-spacing: 2px; margin-top: 4px; font-size: .95rem; }
.review-themes { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
.theme-chip { background: var(--pink-soft); color: var(--olive-deep); font-weight: 700; font-size: .85rem; padding: 6px 16px; border-radius: 999px; }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 54px); }
@media (max-width: 840px) { .visit-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-soft); }
.info-card h3 { margin-bottom: 12px; }
.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; }
.map-frame { border: 0; width: 100%; height: 100%; min-height: 380px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--white); border-radius: var(--radius-sm); margin-bottom: 12px;
  box-shadow: var(--shadow-soft); overflow: hidden;
}
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ink); list-style: none; position: relative; }
.faq summary::after { content: "+"; position: absolute; right: 20px; font-family: var(--font-head); color: var(--pink-deep); }
.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: 22px; }

/* ---------- footer ---------- */
.site-footer { background: var(--olive-deep); color: #C9C0A9; padding: 54px 0 30px; }
.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(--pink); font-size: .95rem; margin-bottom: 12px; }
.site-footer a { color: #E4DCC6; text-decoration: none; }
.site-footer a:hover { color: var(--pink); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(237, 230, 210, .15); 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(--pink); }

/* page hero (inner pages) */
.page-hero { background: var(--olive-deep); text-align: center; padding: clamp(60px, 9vw, 110px) 22px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: #D8CFB8; max-width: 620px; margin: 12px auto 0; }
.page-hero .eyebrow { font-weight: 700; letter-spacing: .3em; text-transform: uppercase; font-size: .78rem; color: var(--pink); }
