/* ============================================
   TABOOTH - Main Stylesheet
   Ink On Your Terms
   ============================================ */

/* --- CSS Variables --- */
:root {
  --ink-black: #1a1a1a;
  --ink-dark: #2d2d2d;
  --ink-gray: #4a4a4a;
  --ink-light: #888;
  --ink-lighter: #ccc;
  --ink-lightest: #f0ede8;
  --cream: #f5f2ed;
  --cream-dark: #e8e4dd;
  --red-primary: #c13a28;
  --red-dark: #9e2e1f;
  --red-light: #e8563f;
  --gold: #d4a843;
  --gold-light: #f0d078;
  --green: #2a9d5c;
  --green-light: #e6f7ed;
  --blue: #2a6fad;
  --blue-light: #e6f0f9;
  --teal: #1ab5a3;
  --teal-dark: #148f80;
  --teal-light: #e0f7f4;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 242, 237, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-black);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-gray);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink-black);
  background: rgba(0,0,0,0.04);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--red-primary);
  border-radius: 1px;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--red-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(193, 58, 40, 0.3);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-black);
  border-radius: 1px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.hero-logo {
  width: 280px;
  margin: 0 auto 32px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--ink-gray);
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red-primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-top: 4px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 58, 40, 0.3);
}

.btn-secondary {
  background: var(--ink-black);
  color: white;
}

.btn-secondary:hover {
  background: var(--ink-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--ink-black);
  color: var(--ink-black);
  background: transparent;
}

.btn-outline:hover {
  background: var(--ink-black);
  color: white;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* --- Section --- */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--ink-black);
  color: white;
}

.section-alt {
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--ink-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: var(--ink-lighter);
}

/* --- City Cards --- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.city-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-primary);
}

.city-card-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.city-code-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-primary);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-right: 8px;
  font-family: var(--font-body);
}

.city-card h3 {
  margin-bottom: 4px;
}

.city-card-country {
  color: var(--ink-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.city-card-stats {
  display: flex;
  gap: 20px;
}

.city-card-stat {
  font-size: 0.85rem;
  color: var(--ink-gray);
}

.city-card-stat strong {
  color: var(--red-primary);
  font-weight: 700;
}

/* --- Studio Cards --- */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.studio-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
}

.studio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.studio-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.studio-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.badge-verified {
  background: rgba(42, 157, 92, 0.9);
  color: white;
}

.badge-superhost {
  background: rgba(212, 168, 67, 0.9);
  color: white;
}

.badge-available {
  background: rgba(42, 157, 92, 0.15);
  color: var(--green);
  border: 1px solid var(--green);
}

.badge-apprentice {
  background: rgba(42, 111, 173, 0.15);
  color: var(--blue);
  border: 1px solid var(--blue);
}

.badge-xp {
  background: rgba(212, 168, 67, 0.15);
  color: #b08d2b;
  border: 1px solid var(--gold);
}

.studio-card-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.studio-card-body {
  padding: 20px;
}

.studio-card-body h3 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.studio-card-address {
  color: var(--ink-light);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.studio-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.rating .stars {
  color: var(--gold);
}

.rating .count {
  color: var(--ink-light);
  font-weight: 400;
  font-size: 0.8rem;
}

.studio-card-booths {
  font-size: 0.85rem;
  color: var(--ink-gray);
}

.studio-card-booths strong {
  color: var(--green);
}

/* --- Artist Cards --- */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.artist-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.artist-card-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--cream);
}

.artist-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.artist-card-level {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.level-apprentice { background: var(--blue-light); color: var(--blue); }
.level-intermediate { background: var(--green-light); color: var(--green); }
.level-experienced { background: #fff3e0; color: #e67e00; }
.level-master { background: #fce4ec; color: var(--red-primary); }

.artist-card-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.style-tag {
  padding: 3px 10px;
  background: var(--cream);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--ink-gray);
}

.artist-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
}

.artist-card-rate {
  font-weight: 700;
  color: var(--ink-black);
}

.artist-card-rate span {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-light);
}

/* --- Sitter Cards --- */
.sitter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.sitter-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.sitter-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.sitter-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.sitter-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.sitter-card-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.sitter-card-bio {
  color: var(--ink-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.sitter-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.sitter-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--cream);
}

.sitter-card-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.sitter-card-price.pays {
  color: var(--blue);
}

.sitter-card-price.earns {
  color: var(--green);
}

/* --- Match Section --- */
.match-container {
  max-width: 900px;
  margin: 0 auto;
}

.match-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

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

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-dark);
}

.form-input,
.form-select {
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  color: var(--ink-black);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(193, 58, 40, 0.1);
}

.form-textarea {
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  resize: vertical;
  min-height: 100px;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(193, 58, 40, 0.1);
}

/* Checkbox/Radio group */
.form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--cream);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}

.form-check:hover {
  background: var(--cream-dark);
}

.form-check input {
  accent-color: var(--red-primary);
}

.form-check.selected {
  background: rgba(193, 58, 40, 0.1);
  color: var(--red-primary);
  font-weight: 600;
}

/* Upload area */
.upload-area {
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}

.upload-area:hover {
  border-color: var(--red-primary);
  background: rgba(193, 58, 40, 0.03);
}

.upload-area-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.5;
}

.upload-area p {
  color: var(--ink-light);
  font-size: 0.9rem;
}

.upload-area .upload-cta {
  color: var(--red-primary);
  font-weight: 600;
}

/* --- AI Preview --- */
.ai-preview {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.mannequin-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.mannequin-view {
  flex: 1;
  min-width: 300px;
  background: var(--cream);
  border-radius: var(--radius-md);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mannequin-svg {
  height: 450px;
  opacity: 0.6;
}

.tattoo-overlay {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px dashed var(--red-primary);
  border-radius: var(--radius-sm);
  cursor: move;
  display: none;
  background: rgba(193, 58, 40, 0.1);
}

.tattoo-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mannequin-info {
  flex: 1;
  min-width: 280px;
}

.estimate-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.estimate-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 12px;
}

.estimate-label {
  color: var(--ink-gray);
}

.estimate-value {
  font-weight: 600;
}

/* --- Tabs --- */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--cream);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-gray);
  transition: var(--transition);
  white-space: nowrap;
}

.tab:hover {
  color: var(--ink-black);
}

.tab.active {
  background: white;
  color: var(--ink-black);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* --- Filters --- */
.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--ink-gray);
  background: white;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--red-primary);
  color: var(--red-primary);
  background: rgba(193, 58, 40, 0.05);
}

.filter-search {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px 10px 40px;
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  font-size: 0.9rem;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") 14px center no-repeat;
  transition: var(--transition);
}

.filter-search:focus {
  outline: none;
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(193, 58, 40, 0.1);
}

/* --- Price Slider --- */
.price-slider-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-range {
  -webkit-appearance: none;
  width: 150px;
  height: 4px;
  border-radius: 2px;
  background: var(--cream-dark);
  outline: none;
}

.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(193, 58, 40, 0.3);
}

.price-display {
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 80px;
}

/* --- How It Works --- */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.hiw-card {
  text-align: center;
  padding: 32px 24px;
}

.hiw-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(193, 58, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.section-dark .hiw-icon {
  background: rgba(255, 255, 255, 0.1);
}

.hiw-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hiw-card p {
  color: var(--ink-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-dark .hiw-card p {
  color: var(--ink-lighter);
}

/* --- Studio Detail / Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  cursor: pointer;
}

.modal-close:hover {
  background: white;
  transform: scale(1.1);
}

.modal-body {
  padding: 32px;
}

.modal-body h2 {
  margin-bottom: 8px;
}

.modal-address {
  color: var(--ink-light);
  margin-bottom: 20px;
}

.modal-section {
  margin-bottom: 24px;
}

.modal-section h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1rem;
}

.supplies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.supply-tag {
  padding: 5px 12px;
  background: var(--cream);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--ink-gray);
}

.supply-tag::before {
  content: '\2713 ';
  color: var(--green);
}

/* --- Create Listing Form --- */
.create-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: var(--transition);
}

.step-dot.active {
  background: var(--red-primary);
  transform: scale(1.2);
}

.step-dot.completed {
  background: var(--green);
}

/* --- Match Results --- */
.match-results {
  margin-top: 32px;
}

.match-score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.match-high {
  background: var(--green-light);
  color: var(--green);
}

.match-medium {
  background: #fff8e1;
  color: #e67e00;
}

.match-low {
  background: #fce4ec;
  color: var(--red-primary);
}

/* --- Footer --- */
.footer {
  background: var(--ink-black);
  color: var(--ink-lighter);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-light);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--ink-light);
  transition: var(--transition);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--ink-light);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--red-primary);
  transform: translateY(-2px);
}

/* --- Pricing Toggle --- */
.pricing-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-display .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-black);
}

.pricing-display .unit {
  font-size: 0.85rem;
  color: var(--ink-light);
}

/* --- Notification Toast --- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 24px;
  background: var(--ink-black);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: var(--shadow-xl);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --- Page Header (sub pages) --- */
.page-header {
  padding: 120px 0 40px;
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}

.page-header h1 {
  margin-bottom: 8px;
}

.page-header p {
  color: var(--ink-light);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--ink-light);
}

.breadcrumb a {
  color: var(--red-primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* --- Empty State --- */
.empty-state {
  text-align: center;
  padding: 60px 24px;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

.empty-state h3 {
  margin-bottom: 8px;
  color: var(--ink-gray);
}

.empty-state p {
  color: var(--ink-light);
  font-size: 0.9rem;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--cream-dark);
  }

  .hero { min-height: auto; padding: 140px 24px 60px; }
  .hero-stats { gap: 24px; }
  .hero-logo { width: 200px; }

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

  .studio-grid { grid-template-columns: 1fr; }
  .artist-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  .mannequin-container { flex-direction: column; }
  .mannequin-view { min-height: 350px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .cities-grid { grid-template-columns: 1fr; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.5s ease-out forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* --- Airbnb-style Nav Categories --- */
.nav-categories {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-categories::-webkit-scrollbar { display: none; }

.nav-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: var(--transition);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.nav-cat:hover {
  color: var(--ink-black);
}

.nav-cat.active {
  color: var(--ink-black);
  border-bottom-color: var(--red-primary);
  font-weight: 600;
}

.nav-cat svg {
  opacity: 0.5;
  transition: var(--transition);
}

.nav-cat:hover svg,
.nav-cat.active svg {
  opacity: 1;
}

/* --- Everyone Grid (4-col) --- */
.everyone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.everyone-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
}

.everyone-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-primary);
}

.everyone-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(193, 58, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.everyone-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.everyone-card p {
  color: var(--ink-gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* --- Dynamic Pricing Demo --- */
.pricing-demo {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-demo-studio strong {
  display: block;
  font-size: 1.1rem;
}

.pricing-demo-studio span {
  color: var(--ink-light);
  font-size: 0.85rem;
}

.pricing-demo-legend {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--ink-gray);
  align-items: center;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 4px;
}

.legend-off-peak { background: #e8f5e9; }
.legend-standard { background: #fff8e1; }
.legend-peak { background: #fce4ec; }

.pricing-grid-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-col {
  display: grid;
  grid-template-columns: 60px repeat(7, 1fr);
  gap: 2px;
}

.pricing-cell {
  padding: 10px 8px;
  text-align: center;
  font-size: 0.85rem;
  border-radius: 4px;
  font-weight: 500;
}

.pricing-cell.ph {
  color: var(--ink-gray);
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--cream);
}

.pricing-cell.pricing-corner {
  background: none;
}

.pricing-cell.off-peak {
  background: #e8f5e9;
  color: #2e7d32;
}

.pricing-cell.standard {
  background: #fff8e1;
  color: #f57f17;
}

.pricing-cell.peak {
  background: #fce4ec;
  color: var(--red-primary);
  font-weight: 700;
}

/* --- Ornamental Divider --- */
.ornament-divider {
  text-align: center;
  padding: 20px 0;
}

.ornament-svg {
  width: 300px;
  height: 40px;
  margin: 0 auto;
  display: block;
}

/* --- Gift Cards --- */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gift-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.gift-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gift-card-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gift-card-visual.tattoo { background: linear-gradient(135deg, #1a1a1a, #c13a28); }
.gift-card-visual.utensil { background: linear-gradient(135deg, #2d2d2d, #4a4a4a); }
.gift-card-visual.cancer { background: linear-gradient(135deg, #e8563f, #d4a843); }

.gift-card-visual svg {
  opacity: 0.9;
}

.gift-card-visual .gift-label {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gift-card-body {
  padding: 24px;
}

.gift-card-body h3 {
  margin-bottom: 8px;
}

.gift-card-body p {
  color: var(--ink-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.gift-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.gift-tier {
  padding: 8px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  background: white;
}

.gift-tier:hover,
.gift-tier.selected {
  border-color: var(--red-primary);
  color: var(--red-primary);
  background: rgba(193, 58, 40, 0.05);
}

/* --- Partnership Cards --- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.partner-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.partner-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.partner-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.convention-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.convention-card:hover {
  box-shadow: var(--shadow-lg);
}

.convention-date {
  background: var(--red-primary);
  color: white;
  padding: 12px 16px;
  text-align: center;
}

.convention-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.convention-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.convention-body {
  padding: 16px;
}

/* --- Timeline (Founder Story) --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream-dark);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red-primary);
  border: 3px solid var(--cream);
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--red-primary);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.timeline-text {
  color: var(--ink-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Ink Carpet (Visa) --- */
.visa-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.visa-step {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.visa-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 12px;
}

.visa-step h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.visa-step p {
  font-size: 0.8rem;
  color: var(--ink-light);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.country-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.country-card:hover {
  box-shadow: var(--shadow-md);
}

.country-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.country-flag {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.country-card-header h4 {
  font-family: var(--font-body);
  font-size: 1rem;
}

.country-card-info {
  font-size: 0.85rem;
  color: var(--ink-gray);
  line-height: 1.6;
}

.country-card-info strong {
  color: var(--ink-black);
}

/* --- Flying Carpet Icon --- */
.flying-carpet-icon {
  display: inline-block;
  position: relative;
}

/* --- Founder Hero --- */
.founder-hero {
  background: var(--ink-black);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.founder-hero h1 {
  margin-bottom: 16px;
}

.founder-hero p {
  color: var(--ink-lighter);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.founder-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--red-light);
  max-width: 600px;
  margin: 32px auto 0;
  line-height: 1.5;
}

/* --- Responsive additions --- */
@media (max-width: 1024px) {
  .everyone-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-grid { grid-template-columns: 1fr; }
  .visa-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .everyone-grid { grid-template-columns: 1fr; }
  .nav-categories { display: none; }
  .pricing-col { grid-template-columns: 50px repeat(7, 1fr); }
  .pricing-cell { padding: 6px 4px; font-size: 0.75rem; }
  .visa-steps { grid-template-columns: 1fr; }
}

/* ============================================
   STUDIOS PAGE - Enhanced Layout
   ============================================ */

.studios-stats-bar {
  background: var(--ink-black);
  padding: 16px 0;
  overflow-x: auto;
}

.stats-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  white-space: nowrap;
}

.stat-pill strong { color: #fff; font-weight: 700; }

.stat-pill.highlight {
  background: rgba(193,58,40,0.3);
  border: 1px solid rgba(193,58,40,0.5);
  color: #fff;
}

.studios-toolbar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.studios-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.studios-search {
  border: none;
  background: none;
  flex: 1;
  font-size: 0.95rem;
  outline: none;
  color: var(--ink-black);
}

.studios-filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.studios-filter-select {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-lighter);
  background: white;
  font-size: 0.85rem;
  color: var(--ink-gray);
  cursor: pointer;
  transition: var(--transition);
}

.studios-filter-select:focus {
  border-color: var(--red-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(193,58,40,0.1);
}

.studios-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-gray);
  margin-left: auto;
}

.studios-price-wrap input[type="range"] {
  width: 120px;
  accent-color: var(--red-primary);
}

.studios-price-wrap span {
  font-weight: 700;
  color: var(--red-primary);
  min-width: 36px;
}

/* City Tabs */
.studios-city-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 0 12px;
  margin-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.studios-city-tabs::-webkit-scrollbar { height: 3px; }
.studios-city-tabs::-webkit-scrollbar-thumb { background: var(--ink-lighter); border-radius: 3px; }

.city-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-gray);
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.city-tab:hover { border-color: var(--red-primary); color: var(--red-primary); }

.city-tab.active {
  background: var(--red-primary);
  color: white;
  border-color: var(--red-primary);
}

.city-tab-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.city-tab.active .city-tab-code {
  background: rgba(255,255,255,0.25);
  color: white;
}

.studios-results-info {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 16px;
  padding-left: 2px;
}

/* City Highlights Grid */
.city-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.city-highlight-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: var(--transition);
}

.city-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-primary);
}

.city-highlight-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.city-highlight-code {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.city-highlight-header h3 { font-size: 1.1rem; margin-bottom: 0; }
.city-highlight-country { font-size: 0.8rem; color: var(--ink-light); }

.city-highlight-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.city-hl-stat {
  font-size: 0.8rem;
  color: var(--ink-light);
}

.city-hl-num {
  font-weight: 700;
  color: var(--ink-black);
}

.city-highlight-top {
  font-size: 0.8rem;
  color: var(--ink-gray);
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.city-hl-label { font-weight: 600; color: var(--ink-light); }

/* ============================================
   TATTOO ART - Edge Decorations
   Merged: old school motifs + tabooth.ink flowing waves & teal
   ============================================ */

/* Left edge - old school + flowing wave tattoo strip */
body::before {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 54px;
  z-index: 999;
  pointer-events: none;
  background-color: rgba(26, 26, 26, 0.035);
  border-right: 2px solid rgba(26, 181, 163, 0.18);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='520' viewBox='0 0 54 520'%3E%3C!-- FLOWING WAVE TOP (tabooth style) --%3E%3Cpath d='M10 8 Q27 0 27 18 Q27 36 44 28' fill='none' stroke='%231ab5a3' stroke-width='2' opacity='0.45' stroke-linecap='round'/%3E%3Cpath d='M10 18 Q27 10 27 28 Q27 46 44 38' fill='none' stroke='%231ab5a3' stroke-width='1.2' opacity='0.25' stroke-linecap='round'/%3E%3C!-- ROSE --%3E%3Ccircle cx='27' cy='62' r='14' fill='none' stroke='%23c13a28' stroke-width='2'/%3E%3Ccircle cx='27' cy='62' r='8' fill='%23c13a28' opacity='0.35'/%3E%3Ccircle cx='27' cy='62' r='4' fill='%23c13a28' opacity='0.5'/%3E%3Cpath d='M27 48 Q33 54 31 62 Q35 56 41 54' fill='none' stroke='%23c13a28' stroke-width='1.5' opacity='0.6'/%3E%3Cpath d='M27 48 Q21 54 23 62 Q19 56 13 54' fill='none' stroke='%23c13a28' stroke-width='1.5' opacity='0.6'/%3E%3C!-- STEM with THORNS --%3E%3Cline x1='27' y1='76' x2='27' y2='120' stroke='%231a1a1a' stroke-width='2' opacity='0.65'/%3E%3Cpath d='M27 87 L21 82' stroke='%231a1a1a' stroke-width='1.5' opacity='0.5'/%3E%3Cpath d='M27 100 L33 95' stroke='%231a1a1a' stroke-width='1.5' opacity='0.5'/%3E%3C!-- LEAF --%3E%3Cpath d='M27 107 Q17 97 11 104 Q17 112 27 107' fill='%231a1a1a' opacity='0.35'/%3E%3Cpath d='M27 114 Q37 104 43 111 Q37 119 27 114' fill='%231a1a1a' opacity='0.35'/%3E%3C!-- FLOWING WAVE SEPARATOR --%3E%3Cpath d='M8 135 Q20 128 27 138 Q34 148 46 141' fill='none' stroke='%231ab5a3' stroke-width='1.8' opacity='0.35' stroke-linecap='round'/%3E%3C!-- DIAMOND --%3E%3Cpolygon points='27,155 40,180 27,205 14,180' fill='none' stroke='%23c13a28' stroke-width='2'/%3E%3Cpolygon points='27,163 36,180 27,197 18,180' fill='%23c13a28' opacity='0.18'/%3E%3Cline x1='14' y1='180' x2='40' y2='180' stroke='%23c13a28' stroke-width='1'/%3E%3Cline x1='27' y1='155' x2='27' y2='205' stroke='%23c13a28' stroke-width='0.5' opacity='0.4'/%3E%3C!-- WAVE DETAIL (flowing Japanese curves) --%3E%3Cpath d='M8 218 Q18 210 27 220 Q36 230 46 222' fill='none' stroke='%231a1a1a' stroke-width='1.5' opacity='0.4' stroke-linecap='round'/%3E%3Cpath d='M8 226 Q18 218 27 228 Q36 238 46 230' fill='none' stroke='%231ab5a3' stroke-width='1' opacity='0.25' stroke-linecap='round'/%3E%3C!-- DAGGER --%3E%3Cpolygon points='27,248 21,261 27,258 33,261' fill='%231a1a1a' opacity='0.7'/%3E%3Cline x1='27' y1='258' x2='27' y2='315' stroke='%231a1a1a' stroke-width='2.5' opacity='0.65'/%3E%3Crect x='19' y='290' width='16' height='6' rx='2' fill='none' stroke='%231a1a1a' stroke-width='1.5' opacity='0.55'/%3E%3Crect x='17' y='295' width='20' height='5' rx='2' fill='%231a1a1a' opacity='0.25'/%3E%3C!-- FLOWING WAVE CONNECTOR --%3E%3Cpath d='M44 325 Q34 318 27 328 Q20 338 10 331' fill='none' stroke='%231ab5a3' stroke-width='1.5' opacity='0.3' stroke-linecap='round'/%3E%3C!-- STAR --%3E%3Cpolygon points='27,348 30,359 42,359 33,366 36,377 27,371 18,377 21,366 12,359 24,359' fill='%23c13a28' opacity='0.3' stroke='%23c13a28' stroke-width='1.5'/%3E%3C!-- TATTOO MACHINE (tabooth tribute) --%3E%3Crect x='21' y='392' width='12' height='20' rx='2' fill='none' stroke='%231a1a1a' stroke-width='1.5' opacity='0.5'/%3E%3Cline x1='27' y1='412' x2='27' y2='435' stroke='%231a1a1a' stroke-width='2' opacity='0.55'/%3E%3Ccircle cx='27' cy='438' r='2' fill='%231a1a1a' opacity='0.6'/%3E%3Cpath d='M21 397 L16 392 L16 388' fill='none' stroke='%231ab5a3' stroke-width='1' opacity='0.4'/%3E%3Cpath d='M33 397 L38 392 L38 388' fill='none' stroke='%231ab5a3' stroke-width='1' opacity='0.4'/%3E%3C!-- FLOWING WAVE BOTTOM --%3E%3Cpath d='M10 455 Q20 448 27 458 Q34 468 44 461' fill='none' stroke='%231ab5a3' stroke-width='1.8' opacity='0.35' stroke-linecap='round'/%3E%3Cpath d='M10 463 Q20 456 27 466 Q34 476 44 469' fill='none' stroke='%231a1a1a' stroke-width='1' opacity='0.2' stroke-linecap='round'/%3E%3C!-- DOT SEPARATOR --%3E%3Ccircle cx='27' cy='488' r='3' fill='%231ab5a3' opacity='0.35'/%3E%3Ccircle cx='27' cy='498' r='2' fill='%23c13a28' opacity='0.3'/%3E%3Ccircle cx='27' cy='508' r='3' fill='%231ab5a3' opacity='0.35'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center top;
}

/* Right edge - anchor/heart/snake + flowing waves & teal */
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 54px;
  z-index: 999;
  pointer-events: none;
  background-color: rgba(26, 26, 26, 0.035);
  border-left: 2px solid rgba(26, 181, 163, 0.18);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='520' viewBox='0 0 54 520'%3E%3C!-- FLOWING WAVE TOP --%3E%3Cpath d='M44 8 Q27 0 27 18 Q27 36 10 28' fill='none' stroke='%231ab5a3' stroke-width='2' opacity='0.45' stroke-linecap='round'/%3E%3Cpath d='M44 18 Q27 10 27 28 Q27 46 10 38' fill='none' stroke='%231ab5a3' stroke-width='1.2' opacity='0.25' stroke-linecap='round'/%3E%3C!-- ANCHOR --%3E%3Ccircle cx='27' cy='58' r='7' fill='none' stroke='%231a1a1a' stroke-width='2' opacity='0.65'/%3E%3Cline x1='27' y1='65' x2='27' y2='108' stroke='%231a1a1a' stroke-width='2.5' opacity='0.65'/%3E%3Cpath d='M14 96 Q27 113 40 96' fill='none' stroke='%231a1a1a' stroke-width='2' opacity='0.55'/%3E%3Cline x1='18' y1='75' x2='36' y2='75' stroke='%231a1a1a' stroke-width='1.5' opacity='0.45'/%3E%3C!-- FLOWING WAVE SEPARATOR --%3E%3Cpath d='M46 122 Q36 115 27 125 Q18 135 8 128' fill='none' stroke='%231ab5a3' stroke-width='1.8' opacity='0.35' stroke-linecap='round'/%3E%3C!-- HEART --%3E%3Cpath d='M27 150 C27 142 17 134 17 145 C17 156 27 164 27 164 C27 164 37 156 37 145 C37 134 27 142 27 150' fill='%23c13a28' opacity='0.35' stroke='%23c13a28' stroke-width='2'/%3E%3C!-- WAVE TENDRILS --%3E%3Cpath d='M8 178 Q18 172 27 180 Q36 188 46 182' fill='none' stroke='%231a1a1a' stroke-width='1.5' opacity='0.35' stroke-linecap='round'/%3E%3Cpath d='M8 186 Q18 180 27 188 Q36 196 46 190' fill='none' stroke='%231ab5a3' stroke-width='1' opacity='0.22' stroke-linecap='round'/%3E%3C!-- SNAKE --%3E%3Cpath d='M14 205 Q38 213 32 230 Q26 247 40 255 Q46 260 32 270 Q18 280 32 290' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' opacity='0.55'/%3E%3Ccircle cx='14' cy='203' r='3' fill='%231a1a1a' opacity='0.45'/%3E%3Ccircle cx='12' cy='201' r='1' fill='%231ab5a3' opacity='0.6'/%3E%3C!-- FLOWING WAVE CONNECTOR --%3E%3Cpath d='M10 305 Q20 298 27 308 Q34 318 44 311' fill='none' stroke='%231ab5a3' stroke-width='1.5' opacity='0.3' stroke-linecap='round'/%3E%3C!-- SWALLOW --%3E%3Cpath d='M27 330 L21 337 L11 345 L19 340 L15 353 L27 341 L39 353 L35 340 L43 345 L33 337 Z' fill='%23c13a28' opacity='0.35' stroke='%23c13a28' stroke-width='1'/%3E%3C!-- INK DROP (tabooth tribute) --%3E%3Cpath d='M27 370 Q22 380 22 388 Q22 395 27 398 Q32 395 32 388 Q32 380 27 370' fill='%231a1a1a' opacity='0.5'/%3E%3Ccircle cx='25' cy='386' r='1.5' fill='%231ab5a3' opacity='0.4'/%3E%3C!-- FLOWING WAVE CONNECTOR --%3E%3Cpath d='M46 412 Q36 405 27 415 Q18 425 8 418' fill='none' stroke='%231ab5a3' stroke-width='1.8' opacity='0.35' stroke-linecap='round'/%3E%3Cpath d='M46 420 Q36 413 27 423 Q18 433 8 426' fill='none' stroke='%231a1a1a' stroke-width='1' opacity='0.2' stroke-linecap='round'/%3E%3C!-- TATTOO NEEDLE (tabooth tribute) --%3E%3Cline x1='27' y1='440' x2='27' y2='478' stroke='%231a1a1a' stroke-width='1.5' opacity='0.5'/%3E%3Ccircle cx='27' cy='440' r='4' fill='none' stroke='%231a1a1a' stroke-width='1.5' opacity='0.4'/%3E%3Ccircle cx='27' cy='481' r='1.5' fill='%231a1a1a' opacity='0.6'/%3E%3Cpath d='M23 448 L18 445' stroke='%231ab5a3' stroke-width='1' opacity='0.35'/%3E%3Cpath d='M31 448 L36 445' stroke='%231ab5a3' stroke-width='1' opacity='0.35'/%3E%3C!-- DOT SEPARATOR --%3E%3Ccircle cx='27' cy='495' r='3' fill='%231ab5a3' opacity='0.35'/%3E%3Ccircle cx='27' cy='505' r='2' fill='%23c13a28' opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-position: center top;
}

/* Top ornamental border strip - teal + red merged */
#app::before {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--teal) 0px,
    var(--teal) 12px,
    transparent 12px,
    transparent 16px,
    var(--red-primary) 16px,
    var(--red-primary) 28px,
    transparent 28px,
    transparent 32px,
    var(--ink-black) 32px,
    var(--ink-black) 44px,
    transparent 44px,
    transparent 48px
  );
  opacity: 0.25;
}

/* Section corner ornaments on alternate sections */
.section-alt { position: relative; }

.section-alt::before,
.section-alt::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.22;
  pointer-events: none;
}

.section-alt::before {
  top: 12px;
  left: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 0 L40 0 L40 4 L4 4 L4 40 L0 40 Z' fill='%231ab5a3'/%3E%3Cpath d='M12 12 L32 12 L32 15 L15 15 L15 32 L12 32 Z' fill='%23c13a28'/%3E%3Ccircle cx='8' cy='8' r='3' fill='%231ab5a3'/%3E%3Cpath d='M22 22 Q30 18 38 26' fill='none' stroke='%231a1a1a' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.section-alt::after {
  bottom: 12px;
  right: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M80 80 L40 80 L40 76 L76 76 L76 40 L80 40 Z' fill='%231ab5a3'/%3E%3Cpath d='M68 68 L48 68 L48 65 L65 65 L65 48 L68 48 Z' fill='%23c13a28'/%3E%3Ccircle cx='72' cy='72' r='3' fill='%231ab5a3'/%3E%3Cpath d='M58 58 Q50 62 42 54' fill='none' stroke='%231a1a1a' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* Hero section overlay - waves & ornament merged */
.hero::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='36' viewBox='0 0 320 36'%3E%3Cpath d='M10 18 Q40 8 70 18 Q100 28 130 18' fill='none' stroke='%231ab5a3' stroke-width='1.5' opacity='0.3' stroke-linecap='round'/%3E%3Ccircle cx='160' cy='18' r='10' fill='none' stroke='%23c13a28' stroke-width='1.5' opacity='0.3'/%3E%3Ccircle cx='160' cy='18' r='5' fill='%23c13a28' opacity='0.15'/%3E%3Cpath d='M190 18 Q220 8 250 18 Q280 28 310 18' fill='none' stroke='%231ab5a3' stroke-width='1.5' opacity='0.3' stroke-linecap='round'/%3E%3Ccircle cx='140' cy='18' r='2.5' fill='%231ab5a3' opacity='0.25'/%3E%3Ccircle cx='180' cy='18' r='2.5' fill='%231ab5a3' opacity='0.25'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

/* Footer tattoo banner - merged teal + red */
.footer { position: relative; overflow: hidden; }

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--teal) 0px,
    var(--teal) 8px,
    transparent 8px,
    transparent 12px,
    var(--red-primary) 12px,
    var(--red-primary) 20px,
    transparent 20px,
    transparent 24px,
    var(--ink-light) 24px,
    var(--ink-light) 32px,
    transparent 32px,
    transparent 36px
  );
  opacity: 0.35;
}

/* Card accents - teal corner flourish */
.studio-card::after,
.artist-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M40 0 L40 20 L36 20 L36 4 L20 4 L20 0 Z' fill='%231ab5a3'/%3E%3Cpath d='M40 0 Q28 8 32 20' fill='none' stroke='%23c13a28' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  border-radius: 0 var(--radius-md) 0 0;
}

.studio-card,
.artist-card { position: relative; }

/* Page header underline - teal accent */
.page-header h1 {
  position: relative;
  display: inline-block;
}

.page-header h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--red-primary));
  margin-top: 8px;
  border-radius: 2px;
  opacity: 0.6;
}

/* Responsive - Studios Page */
@media (max-width: 1024px) {
  .city-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  body::before, body::after { width: 36px; }
}

@media (max-width: 768px) {
  body::before, body::after { width: 26px; opacity: 0.5; }
  .studios-filter-row { flex-direction: column; }
  .studios-price-wrap { margin-left: 0; width: 100%; }
  .studios-filter-select { width: 100%; }
  .city-highlights-grid { grid-template-columns: 1fr; }
  .stats-row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 8px; }
}

@media (max-width: 480px) {
  body::before, body::after { display: none; }
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--ink-lighter); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-light); }
