/* ══════════════════════════════════════════════════════════
   40S INK TATTOO STUDIO
   ══════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ──────────────────────────────────────────── */
:root {
  --bg:          #0c0b09;
  --bg-raised:   #141210;
  --bg-subtle:   #1c1a17;
  --border:      #2a2824;
  --border-mid:  #3a3733;

  --text:        #ddd9d0;
  --text-2:      #7c7870;
  --text-3:      #48453f;

  --accent:      #c41e1e;

  --ff-display:  'Bebas Neue', sans-serif;
  --ff-ui:       'Oswald', sans-serif;
  --ff-body:     'Inter', sans-serif;

  --max-w:       1200px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── 2. RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── 3. LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── 4. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--ff-ui);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: #a81818; }

.btn--text {
  background: transparent;
  color: var(--text-2);
  padding-inline: 0;
}
.btn--text:hover { color: var(--text); }

.btn--full { width: 100%; justify-content: center; }

/* ── 5. NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.375rem 0;
  transition: background 0.35s, padding 0.3s;
}

.nav.nav--scrolled {
  background: rgba(12, 11, 9, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  position: relative;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  /* Centre relative to the full nav width */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* CTA pushed to the right edge */
.nav__cta { margin-left: auto; }

.nav__link {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }

.nav__cta {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.5rem 1.125rem;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.nav__cta:hover {
  background: var(--accent);
  color: #fff;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── 6. HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero__left {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(6rem, 10vw, 8rem) clamp(2rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 420px;
}

.hero__title { display: block; }

.hero__logo {
  width: clamp(180px, 22vw, 340px);
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero__studio {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
  text-align: center;
}

.hero__location {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 38ch;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__bg-img.is-active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%),
              linear-gradient(to top, var(--bg) 0%, transparent 20%);
}

/* ── 7. ARTISTS ─────────────────────────────────────────── */
.artists {
  padding-block: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--border);
}

.artists__title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3rem;
  text-align: center;
}

.artists__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
}

.artists__card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.artists__card:hover { border-color: var(--border-mid); }

.artists__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-subtle);
}

.artists__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease);
}

.artists__card:hover .artists__img img { transform: scale(1.04); }

.artists__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  flex: 1;
}

.artists__copy-top {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.artists__tag {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}

.artists__name {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
}

.artists__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-2);
  flex: 1;
}

/* ── 8. GALLERY ─────────────────────────────────────────── */
.gallery {
  padding-block: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--border);
}

.gallery__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery__title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1;
}

.gallery__filters {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.filter-btn {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  background: transparent;
  border: none;
  padding: 0;
  transition: color 0.2s;
  position: relative;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

.filter-btn:hover { color: var(--text-2); }

.filter-btn--active {
  color: var(--text);
}
.filter-btn--active::after { width: 100%; }

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

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--bg-raised);
}

.gallery__item--wide { grid-column: span 2; }

.gallery__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover .gallery__thumb { transform: scale(1.05); }

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 0.875rem;
  background: linear-gradient(transparent, rgba(8,7,5,0.85));
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(221, 217, 208, 0.7);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: none;
}

.gallery__item.is-hidden { display: none; }

.gallery__foot {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

/* ── 9. STYLES ──────────────────────────────────────────── */
.styles {
  padding-block: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--border);
}

.styles__title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3rem;
}

.styles__list {
  border-top: 1px solid var(--border);
}

.styles__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2fr;
  gap: 0 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: background 0.2s;
}

.styles__item:hover { background: rgba(255,255,255,0.015); }

.styles__num {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.styles__name {
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.2s;
}

.styles__item:hover .styles__name { color: var(--accent); }

.styles__desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-2);
}

/* ── 10. REVIEWS ────────────────────────────────────────── */
.reviews {
  padding-block: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}

.reviews__title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3rem;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.reviews__card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reviews__stars {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.reviews__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-2);
  flex: 1;
}

.reviews__name {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-transform: uppercase;
}

.reviews__foot {
  margin-top: 2.5rem;
}

/* ── 11. FAQ ────────────────────────────────────────────── */
.faq {
  padding-block: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--border);
}

.faq__title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3rem;
}

.faq__list {
  border-top: 1px solid var(--border);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-family: var(--ff-ui);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), color 0.2s;
}

.faq__item[open] .faq__question { color: var(--accent); }
.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq__answer {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-2);
  padding-bottom: 1.25rem;
  max-width: 65ch;
}

/* ── 11. BOOKING ────────────────────────────────────────── */
.booking {
  padding-block: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.booking__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6rem;
}

.booking__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
}

.booking__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 44ch;
}

/* ── 11. FORM ───────────────────────────────────────────── */
.booking__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}

.form-input {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--text-3); }

.form-input:focus {
  outline: none;
  border-color: var(--text-2);
}

.form-input.is-error { border-color: var(--accent); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23484540' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
  color: var(--text-3);
}

.form-select:valid { color: var(--text); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-3);
}

.form-success {
  padding: 1.25rem;
  border: 1px solid var(--border-mid);
  background: var(--bg-subtle);
}

.form-success p {
  font-size: 0.875rem;
  color: var(--text-2);
}

/* ── 12. FOOTER ─────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-block: 2rem;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer__wordmark {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
}

.footer__sub {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__link {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--text); }

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.footer__bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-3);
}

.footer__powered a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__powered a:hover { color: var(--text); }

/* ── 13. SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* Hero entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero__content  { opacity: 0; animation: fadeUp 0.9s 0.1s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero__right    { opacity: 0; animation: fadeUp 0.9s 0.3s cubic-bezier(0.16,1,0.3,1) forwards; }

/* ── 14. SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: var(--bg); }
::-webkit-scrollbar-thumb        { background: var(--border-mid); }
::-webkit-scrollbar-thumb:hover  { background: var(--text-3); }

/* ── 15. STICKY BOOK BUTTON ─────────────────────────────── */
.sticky-book {
  display: none;
}

@media (max-width: 768px) {
  .sticky-book {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 90;
    background: var(--accent);
    color: #fff;
    font-family: var(--ff-ui);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem;
    border: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .sticky-book.is-hidden {
    opacity: 0;
    transform: translateY(1rem);
    pointer-events: none;
  }
}

/* ── 16. SELECTION ──────────────────────────────────────── */
::selection { background: var(--accent); color: #fff; }

/* ── 16. RESPONSIVE ─────────────────────────────────────── */

/* ·· Large laptop (≤1280px) ································ */
@media (max-width: 1280px) {
  .nav__inner { gap: 2rem; }
  .nav__links  { gap: 2rem; }
}

/* ·· Laptop / tablet landscape (≤1024px) ················· */
@media (max-width: 1024px) {
  /* Gallery: 3-col */
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }

  /* Reviews: 2-col */
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }

  /* Styles list: collapse name + desc to stacked 2-col */
  .styles__item {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
    gap: 0 1.5rem;
  }
  .styles__desc {
    grid-column: 2;
    margin-top: 0.375rem;
  }
}

/* ·· Nav breaks to burger (≤900px) ······················· */
@media (max-width: 900px) {
  .nav__links,
  .nav__cta { display: none; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(12, 11, 9, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav__links.is-open { display: flex; }
  .nav__links .nav__link {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    color: var(--text);
  }

  .nav__burger { display: flex; z-index: 100; }
}

/* ·· Tablet portrait (≤768px) ···························· */
@media (max-width: 768px) {
  /* Hero: full-bleed slideshow behind content on mobile/tablet */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 100svh;
    position: relative;
  }
  .hero__right {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero__left {
    position: relative;
    z-index: 1;
    padding-top: clamp(5rem, 14vw, 8rem);
    padding-bottom: 3rem;
    background: transparent;
  }
  .hero__overlay {
    background: linear-gradient(to right, rgba(12,11,9,0.92) 0%, rgba(12,11,9,0.6) 60%, transparent 100%),
                linear-gradient(to top, var(--bg) 0%, transparent 30%);
  }
  .hero__content { max-width: 360px; }

  /* Artists: tighten gap on tablet */
  .artists__grid { gap: 1.25rem; }

  /* Gallery */
  .gallery__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .gallery__filters { flex-wrap: wrap; gap: 0.875rem; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  /* Keep wide items spanning 2 cols on tablet */
  .gallery__item--wide { grid-column: span 2; }
  /* Captions always visible — no hover on touch */
  .gallery__caption {
    opacity: 1;
    transform: none;
  }

  /* Reviews: single column */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Styles: clean stacked mobile layout */
  .styles__title { margin-bottom: 2rem; }
  .styles__item {
    display: block;
    padding: 1.25rem 0;
  }
  .styles__num  { display: none; }
  .styles__name {
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
  }
  .styles__desc {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--text-2);
  }

  /* Booking: stack */
  .booking__grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking__copy { position: static; }
  .booking__copy .btn { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-input { font-size: 1rem; }
  .form-textarea { min-height: 100px; }
  .booking { padding-bottom: 5rem; }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* ·· Mobile (≤480px) ····································· */
@media (max-width: 480px) {
  /* Hero */
  .hero__logo  { width: clamp(140px, 45vw, 240px); }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero__actions .btn--primary { width: 100%; justify-content: center; }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }
  .hero__actions .btn--primary { width: 100%; justify-content: center; }

  /* Artists: single column on mobile */
  .artists__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 1.5rem;
  }
  .artists__img { aspect-ratio: 3 / 2; }

  /* Gallery: single column */
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gallery__item--wide { grid-column: span 1; }

  /* Styles: tighter text on small phones */
  .styles__item  { padding: 1rem 0; }
  .styles__name  { font-size: 0.9375rem; }
  .styles__desc  { font-size: 0.8125rem; line-height: 1.65; }

  /* Footer: wrap links */
  .footer__links { flex-wrap: wrap; gap: 1rem; }
}

/* ·· Small phone (≤360px) ································ */
@media (max-width: 360px) {
  .hero__logo { width: clamp(130px, 42vw, 200px); }
  .artists__copy { padding: 1.25rem; }
  .gallery__grid { grid-auto-rows: 240px; }
  .styles__item { padding: 1.25rem 0; }
  .booking { padding-block: 2.5rem; }
}
