/* ============================================================
   IRON & INK TATTOO STUDIO — styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* --- Variables --- */
:root {
  --black:    #0a0a0a;
  --white:    #f0ece4;
  --red:      #c0392b;
  --card:     #111111;
  --border:   #2a2a2a;
  --border2:  #1a1a1a;
  --muted:    #666666;
  --display:  'Bebas Neue', sans-serif;
  --mono:     'DM Mono', monospace;
  --hh:       76px;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.042;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--mono); cursor: pointer; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hh);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 900;
  transition: border-bottom 0.3s;
}

.site-header.scrolled { border-bottom: 1px solid var(--border); }

.logo-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  line-height: 1;
  flex-shrink: 0;
}

.logo-rule { height: 1px; background: rgba(240,236,228,0.65); }

.logo-wordmark {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--white);
  letter-spacing: 0.04em;
  padding: 3px 0;
}

.logo-subtitle {
  font-size: 7.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav > a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.15s;
}

.header-nav > a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.25s ease;
}

.header-nav > a:hover::after { width: 100%; }
.header-nav > a.active { color: var(--red); }
.header-nav > a.active::after { width: 100%; }

.nav-book {
  background: var(--red) !important;
  color: var(--black) !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  transition: background 0.15s !important;
  white-space: nowrap;
}

.nav-book:hover { background: #a93226 !important; }
.nav-book::after { display: none !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px;
}

.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 5rem);
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.mobile-nav a:hover { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin: 16px 0 20px;
}

.footer-social { display: flex; gap: 20px; }

.footer-social a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.15s;
}

.footer-social a:hover { color: var(--red); }

.footer-nav { display: flex; flex-direction: column; gap: 14px; }

.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}

.footer-nav a:hover { color: var(--white); }

.footer-info { font-size: 12px; color: var(--muted); line-height: 2.1; }

.footer-info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.footer-info strong { color: var(--white); font-weight: 500; }

.footer-walkin {
  margin-top: 12px;
  color: var(--white);
  font-style: italic;
  font-size: 11px;
}

.footer-bottom {
  border-top: 1px solid var(--border2);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3a3a3a;
}

.footer-bottom a { color: var(--red); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  padding: 15px 36px;
  border: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: var(--black); }
.btn-primary:hover { background: #a93226; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #141414; }

/* ============================================================
   UTILITY
   ============================================================ */

.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BOOKING CTA (full-width red section)
   ============================================================ */

.booking-cta {
  background: var(--red);
  padding: 100px 48px;
  text-align: center;
}

.booking-cta-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 20px;
}

.booking-cta-sub {
  font-size: 14px;
  color: rgba(10,10,10,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

.booking-cta-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(10,10,10,0.45);
  margin-top: 20px;
}

/* ============================================================
   MARQUEE (index.html)
   ============================================================ */

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.marquee-track {
  display: flex;
  gap: 6px;
  padding: 6px 0;
  animation: marquee-scroll 38s linear infinite;
  width: max-content;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item { flex-shrink: 0; width: 150px; height: 120px; overflow: hidden; }

.marquee-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.08);
  transition: filter 0.3s;
}

.marquee-item:hover img { filter: grayscale(0%) contrast(1.12); }

/* ============================================================
   STYLE CARDS (index.html)
   ============================================================ */

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.style-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}

.style-card:hover { border-color: var(--red); }

.style-card-img {
  width: 100%; height: 290px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: grayscale(12%) contrast(1.05);
}

.style-card:hover .style-card-img { transform: scale(1.04); }

.style-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.88);
  padding: 14px 18px;
}

.style-card-name {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
}

.style-card-desc {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   STATS ROW
   ============================================================ */

.stats-row { display: flex; gap: 44px; flex-wrap: wrap; margin-top: 40px; }

.stat-num {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-list { margin-top: 40px; }

.testimonial-row {
  border-top: 1px solid var(--border);
  padding: 44px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: start;
}

.testimonial-row:last-child { border-bottom: 1px solid var(--border); }

.testimonial-mark {
  font-family: var(--display);
  font-size: 4.5rem;
  color: var(--red);
  line-height: 0.65;
  user-select: none;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--white);
  max-width: 640px;
}

.testimonial-attr {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
  padding-top: 4px;
}

/* ============================================================
   ARTIST PREVIEW (index.html)
   ============================================================ */

.artist-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.artist-preview-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.15s;
}

.artist-preview-card:hover { border-color: var(--red); }

.artist-preview-img {
  width: 100%; height: 320px;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.05);
  display: block;
  transition: filter 0.3s;
}

.artist-preview-card:hover .artist-preview-img { filter: grayscale(0%) contrast(1.1); }

.artist-preview-info { padding: 24px; }

.artist-preview-name {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 4px;
}

.artist-preview-spec {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.artist-preview-bio {
  font-size: 12px;
  line-height: 1.85;
  color: #888;
  margin-bottom: 16px;
}

.artist-preview-link {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.artist-preview-link:hover { color: var(--white); border-color: var(--white); }

/* ============================================================
   ARTIST PROFILE (artists.html)
   ============================================================ */

.artist-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  border-bottom: 1px solid var(--border);
}

.artist-section.reverse { direction: rtl; }
.artist-section.reverse > * { direction: ltr; }

.artist-photo { overflow: hidden; }

.artist-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(18%) contrast(1.08);
}

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

.artist-name {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.artist-specialty {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.artist-bio {
  font-size: 13px;
  line-height: 1.9;
  color: var(--white);
  margin-bottom: 12px;
}

.artist-stats {
  display: flex;
  margin: 28px 0 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.artist-stat {
  padding: 16px 24px;
  border-right: 1px solid var(--border);
  flex: 1;
}

.artist-stat:first-child { padding-left: 0; }
.artist-stat:last-child { border-right: none; }

.artist-stat-val {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  line-height: 1;
}

.artist-stat-lbl {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.artist-btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
  align-self: flex-start;
}

.artist-btn:hover { color: var(--white); border-color: var(--white); }

/* ============================================================
   MASONRY GRID (artists.html)
   ============================================================ */

.masonry-grid { columns: 3; column-gap: 4px; }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}

.masonry-item img {
  width: 100%; display: block;
  filter: grayscale(15%) contrast(1.08);
  transition: filter 0.35s;
}

.masonry-item:hover img { filter: grayscale(0%) contrast(1.12); }

.masonry-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.88);
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-overlay { transform: translateY(0); }

.masonry-artist {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
}

.masonry-style {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 2px;
  display: block;
}

/* ============================================================
   SERVICE BLOCKS (services.html)
   ============================================================ */

.service-block {
  border-top: 1px solid var(--border);
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.service-name {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.service-rate {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 10px;
  display: block;
}

.service-desc {
  font-size: 13px;
  line-height: 1.95;
  color: var(--white);
  margin-bottom: 20px;
}

.service-includes { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.service-includes li {
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.service-includes li::before { content: '—'; position: absolute; left: 0; color: var(--red); }

/* ============================================================
   ACCORDION (services.html)
   ============================================================ */

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

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

.accordion-question {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.accordion-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 24px;
  transition: transform 0.3s;
}

.accordion-item.is-open .accordion-arrow { transform: rotate(-135deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.is-open .accordion-body { max-height: 400px; }

.accordion-answer {
  font-size: 13px;
  line-height: 1.95;
  color: #aaa;
  padding-bottom: 28px;
  max-width: 700px;
}

/* ============================================================
   DEPOSIT CARD (services.html)
   ============================================================ */

.deposit-card {
  background: var(--card);
  padding: 56px 60px;
  margin: 60px 0;
  border-left: 3px solid var(--red);
}

/* ============================================================
   GUIDE PAGES (first-tattoo.html, aftercare.html)
   ============================================================ */

.guide-col {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}

.guide-section {
  border-top: 1px solid var(--border);
  padding: 72px 0;
}

.guide-num {
  font-family: var(--display);
  font-size: 6rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: -24px;
  display: block;
}

.guide-heading {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.guide-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--white);
  margin-bottom: 20px;
}

.guide-list {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-list li {
  font-size: 14px;
  line-height: 1.75;
  color: #bbb;
  padding-left: 22px;
  position: relative;
}

.guide-list li::before { content: '—'; position: absolute; left: 0; color: var(--red); }
.guide-list.do li::before { color: #27ae60; }
.guide-list.dont li::before { color: var(--red); }

.guide-subhead {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

/* ============================================================
   HEALING TIMELINE (aftercare.html)
   ============================================================ */

.timeline-strip {
  background: var(--card);
  padding: 44px 48px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
}

.timeline-step {
  flex: 1;
  min-width: 140px;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px; right: 0;
  width: 50%;
  height: 1px;
  background: var(--border);
}

.timeline-step:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 14px; left: 0;
  width: 50%;
  height: 1px;
  background: var(--border);
}

.timeline-dot {
  width: 8px; height: 8px;
  background: var(--red);
  display: block;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}

.timeline-day {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.timeline-desc {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
  display: block;
}

/* ============================================================
   PAIN MAP (first-tattoo.html)
   ============================================================ */

.pain-map-wrap {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin: 32px 0;
}

.pain-legend { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }

.legend-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.legend-swatch { width: 18px; height: 18px; flex-shrink: 0; }
.legend-swatch.green  { background: #27ae60; }
.legend-swatch.yellow { background: #f39c12; }
.legend-swatch.red    { background: var(--red); }

/* ============================================================
   PAGE HERO (shared)
   ============================================================ */

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.82) 100%);
}

.page-hero-content { position: relative; z-index: 1; max-width: 800px; }

/* ============================================================
   LOCATION SECTION (index.html)
   ============================================================ */

.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.location-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-photo { overflow: hidden; }

.location-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.08);
}

.location-detail { font-size: 13px; line-height: 2.2; color: #888; }
.location-detail strong { color: var(--white); font-weight: 500; display: block; }
.location-detail span { display: block; }

/* ============================================================
   ABOUT SECTION (index.html)
   ============================================================ */

.about-section {
  display: grid;
  grid-template-columns: 40fr 60fr;
  min-height: 640px;
}

.about-photo { overflow: hidden; }

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.08);
}

.about-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .style-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .site-header { padding: 0 24px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }

  .about-section { grid-template-columns: 1fr; }
  .about-photo { height: 400px; }
  .about-content { padding: 48px 32px; }

  .artist-section { grid-template-columns: 1fr; }
  .artist-section.reverse { direction: ltr; }
  .artist-photo { height: 380px; }
  .artist-content { padding: 48px 32px; }

  .location-section { grid-template-columns: 1fr; }
  .location-photo { height: 320px; }
  .location-content { padding: 48px 32px; }

  .service-block { grid-template-columns: 1fr; gap: 16px; }
  .masonry-grid { columns: 2; }

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

  .guide-col { padding: 0 24px; }
}

@media (max-width: 640px) {
  .site-header { padding: 0 20px; }

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

  .booking-cta { padding: 64px 24px; }
  .page-hero { padding: 0 24px 56px; }

  .testimonial-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
  }
  .testimonial-attr { grid-column: 1 / -1; text-align: left; }

  .stats-row { flex-wrap: wrap; gap: 24px; }

  .site-footer { padding: 40px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .deposit-card { padding: 36px 24px; }

  .pain-map-wrap { flex-direction: column; }
  .timeline-strip { padding: 32px 20px; }
  .timeline-step { min-width: 100px; padding: 0 10px; }
}
