/* ============================================================
   Revere Tattoo — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --bg:           #080808;
  --bg-hero:      #0D0D0D;
  --bg-card:      #1A1A1A;
  --bg-section:   #111111;
  --border:       #2A2A2A;
  --border-light: #333333;
  --text-primary: #F0F0F0;
  --text-white:   #FFFFFF;
  --text-muted:   #888888;
  --text-dim:     #555555;
  --accent:       #C41E3A;
  --accent-hover: #A01830;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --nav-height:   72px;
  --max-width:    1280px;
  --gap-grid:     2px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* ── Typography Helpers ────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

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

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 35px;
  border: 1px solid var(--text-white);
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--bg);
}

.btn-ghost {
  display: inline-block;
  background-color: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.btn-ghost:hover {
  color: var(--text-white);
  border-bottom-color: var(--text-white);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav__mobile {
  display: none;
}

.nav__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.4em;
  color: var(--text-white);
  flex-shrink: 0;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text-white);
}

.nav__cta {
  flex-shrink: 0;
}

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--text-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background-color: var(--bg-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(196, 30, 58, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(196, 30, 58, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--text-white);
  letter-spacing: 0.2em;
  line-height: 0.95;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__rule {
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  margin: 0 auto 36px;
  border: none;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Short hero variant (inner pages) */
.hero--short {
  min-height: 38vh;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
}

.hero--short .hero__headline {
  font-size: 4.5rem;
}

/* ── Section Base ──────────────────────────────────────────── */
.section {
  padding: 100px 40px;
}

.section--dark {
  background-color: var(--bg-section);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  margin-bottom: 60px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.08em;
  color: var(--text-white);
  line-height: 1;
}

.section__desc {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ── Portfolio Grid ────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.portfolio-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.portfolio-item__img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-item__img {
  transform: scale(1.04);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}

.portfolio-item:hover .portfolio-item__overlay {
  background: rgba(8, 8, 8, 0.65);
}

.portfolio-item__label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--text-white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover .portfolio-item__label {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient placeholders for portfolio items */
.grad-1  { background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); }
.grad-2  { background: linear-gradient(145deg, #0D0D0D 0%, #2A2A2A 100%); }
.grad-3  { background: linear-gradient(120deg, #1E1E1E 0%, #2D1A1A 100%); }
.grad-4  { background: linear-gradient(160deg, #0A0A0A 0%, #1E2A1A 100%); }
.grad-5  { background: linear-gradient(135deg, #1A1A2A 0%, #2A2A3A 100%); }
.grad-6  { background: linear-gradient(110deg, #1A1A1A 0%, #3A2A2A 100%); }
.grad-7  { background: linear-gradient(150deg, #0D0D0D 0%, #1A2A2A 100%); }
.grad-8  { background: linear-gradient(135deg, #1E1E1E 0%, #2A1A2A 100%); }
.grad-9  { background: linear-gradient(125deg, #0A0A0A 0%, #2A2A1A 100%); }
.grad-10 { background: linear-gradient(140deg, #1A1A1A 0%, #3A3A2A 100%); }
.grad-11 { background: linear-gradient(135deg, #0D0D1A 0%, #1A1A2A 100%); }
.grad-12 { background: linear-gradient(155deg, #1A0A0A 0%, #2A1A1A 100%); }
.grad-portrait { background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%); }
.grad-work-a { background: linear-gradient(140deg, #0F0F0F 0%, #252520 100%); }
.grad-work-b { background: linear-gradient(130deg, #0D0D12 0%, #1E1E2A 100%); }
.grad-work-c { background: linear-gradient(150deg, #120A0A 0%, #221414 100%); }
.grad-work-d { background: linear-gradient(125deg, #0A100A 0%, #1A241A 100%); }
.grad-work-e { background: linear-gradient(145deg, #10100F 0%, #242420 100%); }
.grad-work-f { background: linear-gradient(135deg, #0F0A10 0%, #201A22 100%); }

/* ── Artist Cards ──────────────────────────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.artist-card {
  background-color: var(--bg-card);
  overflow: hidden;
}

.artist-card__portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.artist-card__body {
  padding: 28px 28px 32px;
}

.artist-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 8px;
}

.artist-card__specialty {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.artist-card__bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.artist-card__link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.artist-card__link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Artist page: expanded cards */
.artist-expanded {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background-color: var(--bg-card);
  margin-bottom: 2px;
  overflow: hidden;
}

.artist-expanded__portrait {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.artist-expanded__content {
  padding: 52px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artist-expanded__name {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1;
}

.artist-expanded__specialty {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.artist-expanded__bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 32px;
}

.artist-expanded__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 5px 12px;
}

.artist-expanded__work {
  margin-top: 2px;
}

.artist-work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap-grid);
}

.artist-work-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.artist-work-item__img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.artist-work-item:hover .artist-work-item__img {
  transform: scale(1.06);
}

/* Guest artists */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.guest-card {
  background-color: var(--bg-card);
  overflow: hidden;
}

.guest-card__portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.guest-card__body {
  padding: 24px;
}

.guest-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 4px;
}

.guest-card__location {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.guest-card__specialty {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.guest-card__bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Process Strip ─────────────────────────────────────────── */
.process {
  padding: 60px 40px;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process__step {
  display: flex;
  align-items: center;
  gap: 20px;
}

.process__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.process__label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--text-white);
}

.process__arrow {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--border-light);
  margin: 0 28px;
  letter-spacing: 0;
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq {
  padding: 100px 40px;
}

.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq__item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.faq__question-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--text-white);
  line-height: 1.2;
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--accent);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.open .faq__answer {
  max-height: 400px;
}

.faq__answer-inner {
  padding-bottom: 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Booking Page ──────────────────────────────────────────── */
.booking-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 100px 40px;
}

.booking-info__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 20px;
}

.booking-info__body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.booking-info__response {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

.booking-info__response-icon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 0;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.booking-info__response-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.booking-info__response-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

.booking-policies {
  margin-top: 32px;
}

.booking-policies__title {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.booking-policies__list {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.booking-policies__list li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}

.booking-policies__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-input,
.form-select,
.form-textarea {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 12px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555555'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option {
  background-color: var(--bg-card);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background-color: var(--bg-card);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-check label {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 70px 40px 40px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.4em;
  color: var(--text-white);
  margin-bottom: 14px;
  line-height: 1;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 220px;
}

.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer__col-links a:hover {
  color: var(--text-white);
}

.footer__address {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: normal;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: var(--accent);
}

/* ── Divider ───────────────────────────────────────────────── */
.red-rule {
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  border: none;
  margin: 0;
}

/* ── Artist Intro Block (artists.html) ─────────────────────── */
.studio-intro {
  padding: 80px 40px;
  background-color: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.studio-intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.studio-intro__title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.08em;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 24px;
}

.studio-intro__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.studio-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stat {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__headline {
    font-size: 4.5rem;
  }

  .hero--short .hero__headline {
    font-size: 3.5rem;
  }

  .nav {
    padding: 0 28px;
  }

  .section {
    padding: 80px 28px;
  }

  .faq {
    padding: 80px 28px;
  }

  .footer {
    padding: 60px 28px 36px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .artists-grid {
    grid-template-columns: 1fr 1fr;
  }

  .artists-grid .artist-card:nth-child(3) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 340px 1fr;
  }

  .artists-grid .artist-card:nth-child(3) .artist-card__portrait {
    height: 100%;
    aspect-ratio: auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .artist-expanded {
    grid-template-columns: 280px 1fr;
  }

  .artist-expanded__content {
    padding: 36px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 28px;
  }

  .studio-intro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .artist-work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guest-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 60px;
  }

  .nav {
    padding: 0 20px;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(8, 8, 8, 0.98);
    padding: 40px 28px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
  }

  .nav__mobile.open {
    display: flex;
  }

  .nav__mobile a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.12em;
    color: var(--text-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }

  .nav__mobile .btn-primary {
    margin-top: 32px;
    text-align: center;
  }

  .hero {
    padding: calc(var(--nav-height) + 40px) 20px 60px;
  }

  .hero__headline {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }

  .hero--short .hero__headline {
    font-size: 2.5rem;
  }

  .hero__sub {
    font-size: 0.9rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-outline {
    text-align: center;
  }

  .section {
    padding: 60px 20px;
  }

  .section__title {
    font-size: 2.2rem;
  }

  .faq {
    padding: 60px 20px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item--tall {
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artists-grid .artist-card:nth-child(3) {
    grid-column: auto;
    display: block;
  }

  .artists-grid .artist-card:nth-child(3) .artist-card__portrait {
    aspect-ratio: 3 / 4;
  }

  .process__inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .process__arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .process {
    padding: 48px 20px;
  }

  .footer {
    padding: 50px 20px 32px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .artist-expanded {
    grid-template-columns: 1fr;
  }

  .artist-expanded__portrait {
    min-height: 0;
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
  }

  .artist-expanded__content {
    padding: 28px 20px;
  }

  .artist-expanded__name {
    font-size: 2.5rem;
  }

  .artist-work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guest-grid {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    padding: 60px 20px;
  }

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

  .studio-intro {
    padding: 60px 20px;
  }

  .studio-intro__title {
    font-size: 2.5rem;
  }

  .studio-intro__stats {
    grid-template-columns: 1fr 1fr;
  }
}
