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

:root {
  --bg-0: #0a0a0a;
  --bg-1: #111111;
  --bg-2: #1a1a1a;
  --bg-3: #222222;
  --border: #2a2a2a;
  --border-hover: #444444;
  --text-0: #ffffff;
  --text-1: #cccccc;
  --text-2: #888888;
  --text-3: #555555;
  --accent: #e0bd6a;
  --accent-dim: #b89043;
  --gold: #ffc32a;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 20% -10%, rgba(224,189,106,0.08), transparent 28%),
    linear-gradient(180deg, #030303 0%, #0a0a0a 100%);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  padding: 16px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-nav { display: flex; align-items: center; gap: 12px; }

.logo { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-0); letter-spacing: -0.5px; }
.logo span { color: var(--accent); }
.footer-logo span { color: var(--accent-dim); }

.desktop-saved-link {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  color: var(--text-2);
  background: rgba(255,255,255,0.035);
  border: 0.5px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.desktop-saved-link:hover,
.desktop-saved-link.has-saved {
  color: var(--accent);
  border-color: rgba(224,189,106,0.44);
  background: rgba(224,189,106,0.08);
}
.desktop-saved-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.desktop-saved-link.has-saved svg { fill: currentColor; }
.desktop-saved-link.has-saved::after {
  content: attr(data-count);
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  color: #1b1200;
  background: var(--accent);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.lang-switcher { display: flex; gap: 8px; }
.lang-btn { font-size: 12px; font-weight: 500; color: var(--text-3); padding: 4px 10px; border-radius: 20px; border: 0.5px solid transparent; transition: all 0.2s; background: transparent; cursor: pointer; font-family: var(--font-body); }
.lang-btn:hover { color: var(--text-1); border-color: var(--border); }
.lang-btn.active { color: var(--text-0); border-color: var(--border-hover); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: 100px 0 80px; border-bottom: 0.5px solid var(--border); }
.hero-title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 72px); font-weight: 700; color: var(--text-0); line-height: 1.1; letter-spacing: -2px; margin-bottom: 20px; }
.hero-title span { color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--text-2); font-weight: 300; }

/* ── Cities ──────────────────────────────────────────────────────────────── */
.cities-section { padding: 80px 0; }
.section-title { font-family: var(--font-display); font-size: 13px; font-weight: 500; color: var(--text-3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 32px; }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.city-card { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: var(--bg-2); border: 0.5px solid var(--border); border-radius: var(--radius-lg); transition: all 0.2s; }
.city-card:hover { border-color: var(--border-hover); background: var(--bg-3); transform: translateY(-1px); }
.city-name { font-weight: 500; color: var(--text-0); font-size: 15px; }
.city-arrow { color: var(--text-3); transition: transform 0.2s; }
.city-card:hover .city-arrow { transform: translateX(4px); color: var(--accent); }

/* ── Home ───────────────────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 58px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(224,189,106,0.26), transparent 24%),
    radial-gradient(circle at 8% 68%, rgba(31,170,104,0.18), transparent 28%),
    radial-gradient(circle at 62% 86%, rgba(62,120,255,0.12), transparent 23%),
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 44%);
  pointer-events: none;
}
.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 56px;
}
.home-hero-grid--text {
  display: block;
}
.home-hero-grid--text .home-hero-copy {
  max-width: 860px;
}
.home-hero-copy { max-width: 560px; }
.home-eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-hero-title {
  max-width: 640px;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}
.home-hero-sub {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.7;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.home-primary-btn,
.home-secondary-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}
.home-primary-btn { color: #1b1300; }
.home-secondary-btn {
  color: var(--text-0);
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.14);
}
.home-secondary-btn:hover {
  border-color: rgba(224,189,106,0.48);
  background: rgba(224,189,106,0.1);
}
.home-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.home-hero-highlights span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.065);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.home-hero-highlights span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(224,189,106,0.72);
}
.home-hero-media {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  grid-template-rows: 190px 210px;
  gap: 12px;
}
.home-hero-photo {
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
}
.home-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-photo--1 { grid-row: 1 / 3; }
.home-hero-photo--2 { grid-column: 2 / 4; }
.home-hero-photo--3 { grid-column: 2 / 3; }
.home-hero-photo--4 { grid-column: 3 / 4; }
.home-section {
  padding: 72px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.home-section-title {
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}
.home-section-link {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}
.home-studios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.home-studio-card {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.home-studio-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224,189,106,0.38);
  background:
    linear-gradient(145deg, rgba(224,189,106,0.12), rgba(255,255,255,0.035));
}
.home-studio-photos {
  height: 190px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  padding: 8px;
}
.home-studio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg-2);
}
.home-studio-photo:first-child { grid-row: span 2; }
.home-studio-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0 8px 8px;
  padding: 16px;
  background: rgba(8,8,8,0.78);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 -18px 42px rgba(0,0,0,0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.home-studio-name {
  color: var(--text-0);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.16;
}
.home-studio-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.home-studio-meta svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}
.home-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}
.home-rating strong { color: var(--text-0); }
.home-rating small {
  color: var(--text-2);
  font-weight: 600;
}
.home-style-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.home-style-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px 4px 5px;
  color: var(--text-1);
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.home-style-pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 50%;
}
.home-reviews-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(80,100,255,0.11), transparent 22%),
    radial-gradient(circle at 82% 88%, rgba(31,170,104,0.1), transparent 24%);
}
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.home-review-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 210px;
  background: rgba(255,255,255,0.055);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 18px;
}
.home-review-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}
.home-review-body {
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.home-review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.home-review-text {
  margin-top: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.55;
}
.home-review-meta {
  margin-top: auto;
  padding-top: 14px;
  color: var(--text-2);
  font-size: 13px;
}
.home-review-meta strong { color: var(--text-0); }
.home-review-meta a { color: var(--accent); }
.cities-section--home { padding: 72px 0 88px; }
.home-cities-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.cities-section--home .home-city-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  align-items: flex-start;
  flex-direction: column;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at 86% 8%, rgba(224,189,106,0.34), transparent 31%),
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
}
.cities-section--home .home-city-card::before {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 118px;
  height: 118px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(224,189,106,0.2), rgba(255,255,255,0.04)),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,255,255,0.08) 8px 9px);
  transform: rotate(18deg);
}
.cities-section--home .home-city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), transparent 46%);
  pointer-events: none;
}
.cities-section--home .home-city-card:nth-child(2n) {
  background:
    radial-gradient(circle at 86% 8%, rgba(48,157,255,0.26), transparent 31%),
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
}
.cities-section--home .home-city-card:nth-child(3n) {
  background:
    radial-gradient(circle at 86% 8%, rgba(36,190,119,0.26), transparent 31%),
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
}
.cities-section--home .home-city-card:nth-child(4n) {
  background:
    radial-gradient(circle at 86% 8%, rgba(182,124,255,0.24), transparent 31%),
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
}
.cities-section--home .home-city-card:nth-child(5n) {
  background:
    radial-gradient(circle at 88% 8%, rgba(255,109,86,0.22), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
}
.cities-section--home .home-city-card:nth-child(2n)::before {
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(48,157,255,0.22), transparent 64%),
    repeating-radial-gradient(circle, rgba(255,255,255,0.08) 0 1px, transparent 1px 12px);
}
.cities-section--home .home-city-card:nth-child(3n)::before {
  width: 138px;
  background:
    linear-gradient(135deg, rgba(36,190,119,0.18), rgba(255,255,255,0.04)),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(255,255,255,0.08) 10px 11px);
}
.cities-section--home .home-city-card:nth-child(4n)::before {
  background:
    linear-gradient(135deg, rgba(182,124,255,0.18), rgba(255,255,255,0.04)),
    repeating-linear-gradient(-45deg, transparent 0 8px, rgba(255,255,255,0.08) 8px 9px);
}
.cities-section--home .home-city-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224,189,106,0.38);
}
.home-city-kicker,
.home-city-name,
.home-city-cta {
  position: relative;
  z-index: 1;
}
.home-city-kicker {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-city-name {
  margin-top: 12px;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.08;
}
.home-city-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .home-hero-media { min-height: 360px; }
  .home-cities-grid,
  .home-studios-grid,
  .home-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cities-section--home .home-city-card { min-height: 132px; }
  .home-review-card { grid-template-columns: 116px minmax(0, 1fr); }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 34px 0 44px;
  }
  .home-hero-title {
    font-size: 40px;
  }
  .home-hero-sub {
    font-size: 15px;
    line-height: 1.62;
  }
  .home-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-primary-btn,
  .home-secondary-btn {
    width: 100%;
  }
  .home-hero-highlights {
    gap: 8px;
  }
  .home-hero-highlights span {
    min-height: 32px;
    font-size: 12px;
  }
  .home-hero-media {
    min-height: 310px;
    grid-template-rows: 132px 150px;
    gap: 8px;
  }
  .home-hero-photo { border-radius: 14px; }
  .home-section,
  .cities-section--home {
    padding: 44px 0;
  }
  .home-section-head {
    align-items: flex-start;
    margin-bottom: 18px;
  }
  .home-studios-grid,
  .home-cities-grid,
  .home-reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cities-section--home .home-city-card {
    min-height: 128px;
  }
  .home-studio-photos { height: 180px; }
  .home-review-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 188px;
  }
  .home-review-image img { min-height: 188px; }
  .home-review-body { padding: 14px; }
  .home-review-text { font-size: 13px; }
}

/* Home visual refresh */
.home-hero {
  min-height: min(620px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  padding: 72px 0 66px;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.92) 31%, rgba(5,5,5,0.42) 66%, rgba(5,5,5,0.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.72)),
    url("/static/img/home/main.png") right center / cover no-repeat;
}
.home-hero::before {
  background:
    radial-gradient(circle at 18% 76%, rgba(224,189,106,0.24), transparent 24%),
    radial-gradient(circle at 72% 24%, rgba(224,126,77,0.16), transparent 28%),
    linear-gradient(180deg, transparent 72%, rgba(8,8,8,0.96));
}
.home-hero-grid--text .home-hero-copy,
.home-hero-copy {
  max-width: 610px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.home-hero-grid.home-hero-grid--text {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(0, 1fr);
  justify-content: start;
  justify-items: start;
}
.home-eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
}
.home-hero-title {
  max-width: 560px;
  font-size: clamp(40px, 5.6vw, 62px);
  line-height: 0.98;
  text-shadow: 0 18px 60px rgba(0,0,0,0.62);
}
.home-hero-sub {
  max-width: 520px;
  color: rgba(255,255,255,0.76);
  font-size: 17px;
}
.home-primary-btn,
.home-secondary-btn {
  gap: 10px;
  min-height: 56px;
  padding: 14px 28px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}
.home-primary-btn svg,
.home-secondary-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-secondary-btn {
  background: rgba(12,12,12,0.56);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.home-hero-highlights {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 30px;
  width: max-content;
  max-width: min(100vw - 48px, 920px);
}
.home-hero-highlights span {
  display: inline-grid;
  grid-template-columns: 30px max-content;
  align-items: center;
  justify-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 42px;
  padding: 7px 13px 7px 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035));
  border: 1px solid rgba(224,189,106,0.16);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 34px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.home-hero-highlights span::before {
  content: none;
}
.home-hero-highlights svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(224,189,106,0.12);
  border: 1px solid rgba(224,189,106,0.3);
  border-radius: 9px;
}
.home-section,
.cities-section--home {
  position: relative;
  padding: 76px 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(224,189,106,0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent);
}
.home-section-title {
  font-size: clamp(30px, 4vw, 42px);
}
.home-section-link {
  color: var(--gold);
}
.home-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.cities-section--home .home-city-card {
  isolation: isolate;
  min-height: 178px;
  padding: 18px;
  justify-content: flex-end;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.cities-section--home .home-city-card::before {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 72%;
  border-radius: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.82));
  transform: none;
  z-index: -1;
}
.cities-section--home .home-city-card::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.72)),
    radial-gradient(circle at 16% 18%, rgba(224,189,106,0.2), transparent 28%);
  z-index: -1;
}
.home-city-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06);
  transition: transform 0.3s ease;
}
.cities-section--home .home-city-card:hover .home-city-image {
  transform: scale(1.05);
}
.home-city-kicker {
  color: var(--gold);
  text-shadow: 0 2px 14px rgba(0,0,0,0.8);
}
.home-city-name {
  margin-top: 8px;
  font-size: 21px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.82);
}
.home-city-cta {
  margin-top: 12px;
  color: rgba(238,202,119,0.98);
}
.home-studios-grid {
  gap: 22px;
}
.home-studio-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 18px;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 22px 70px rgba(0,0,0,0.32);
}
.home-studio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.9));
}
.home-studio-photos {
  height: 100%;
  min-height: 0;
  padding: 0;
  gap: 4px;
}
.home-studio-photo {
  border-radius: 0;
  filter: saturate(1.08) contrast(1.04);
}
.home-studio-body {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  flex: 0;
  margin: 0;
  background: rgba(12,12,12,0.66);
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 16px 46px rgba(0,0,0,0.48);
}
.home-studio-meta {
  color: rgba(255,255,255,0.78);
}
.home-style-pill {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
}
.home-review-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 58px rgba(0,0,0,0.25);
}
.home-review-image img {
  filter: saturate(1.08) contrast(1.04);
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto;
    padding: 62px 0 56px;
    background:
      linear-gradient(90deg, rgba(5,5,5,0.98), rgba(5,5,5,0.76)),
      linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.84)),
      url("/static/img/home/main.png") 64% center / cover no-repeat;
  }
  .home-cities-grid,
  .home-studios-grid,
  .home-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cities-section--home .home-city-card {
    min-height: 152px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 58px 0 54px;
    background:
      linear-gradient(180deg, rgba(5,5,5,0.82), rgba(5,5,5,0.98) 82%),
      url("/static/img/home/main.png") 64% top / auto 58% no-repeat;
  }
  .home-hero-title {
    max-width: 360px;
    font-size: 40px;
  }
  .home-hero-sub {
    font-size: 14px;
  }
  .home-primary-btn,
  .home-secondary-btn {
    min-height: 52px;
  }
  .home-hero-highlights {
    gap: 10px;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-hero-highlights span {
    width: 100%;
    grid-template-columns: 30px minmax(0, 1fr);
    flex: initial;
    min-height: 38px;
    color: rgba(255,255,255,0.95);
    font-size: 13px;
    font-weight: 850;
  }
  .home-hero-highlights span:nth-child(3) {
    grid-column: 1 / -1;
  }
  .home-section,
  .cities-section--home {
    padding: 48px 0;
  }
  .home-cities-grid,
  .home-studios-grid,
  .home-reviews-grid {
    grid-template-columns: 1fr;
  }
  .cities-section--home .home-city-card {
    min-height: 132px;
  }
  .home-studio-card { min-height: 0; }
  .home-section-head {
    gap: 12px;
  }
}

/* ── Listing ─────────────────────────────────────────────────────────────── */
.listing-page { padding: 48px 0 80px; }
.listing-header { margin-bottom: 32px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--text-1); }
.listing-title { font-family: var(--font-display); font-size: clamp(24px, 4vw, 42px); font-weight: 700; color: var(--text-0); letter-spacing: -1px; margin-bottom: 6px; }
.listing-count { font-size: 14px; color: var(--text-3); }

/* ── Filters ─────────────────────────────────────────────────────────────── */
.filters-bar { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 0.5px solid var(--border); }
.filters-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; width: 100%; }
.filters-label { width: 56px; flex: 0 0 56px; font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0; margin-right: 2px; }
.filters-style-options { display: contents; }
.filters-style-options.is-loading { min-height: 32px; visibility: hidden; }
.filter-btn { font-family: var(--font-body); font-size: 13px; color: var(--text-2); padding: 6px 16px; border-radius: 20px; border: 0.5px solid var(--border); background: transparent; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.filter-style { display: inline-flex; align-items: center; gap: 7px; padding: 3px 14px 3px 5px; }
.filters-style-options:not(.is-expanded) .filter-style:nth-child(n+7) { display: none; }
.filter-btn:hover { color: var(--text-0); border-color: var(--border-hover); }
.filter-btn.active { color: var(--bg-0); background: var(--text-0); border-color: var(--text-0); }
.filter-style-more,
.filter-style-reset {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  background: rgba(224,189,106,0.08);
  border: 0.5px solid rgba(224,189,106,0.44);
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
}
.filter-style-more {
  color: var(--text-1);
  background: rgba(255,255,255,0.055);
  border: 0.5px solid var(--border);
}
.filter-style-more:hover { color: var(--text-0); border-color: var(--border-hover); }
.filter-style-reset:hover { background: rgba(224,189,106,0.14); }
.filters-row--search { align-items: center; }
.listing-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 720px;
}
.listing-search-field {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  padding: 0 14px;
  color: var(--text-3);
  background: rgba(255,255,255,0.055);
  border: 0.5px solid var(--border);
  border-radius: 999px;
}
.listing-search-field svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.listing-search-field input {
  width: 100%;
  min-width: 0;
  font: inherit;
  font-size: 14px;
  color: var(--text-0);
  background: transparent;
  border: 0;
  outline: 0;
}
.listing-search-field input::placeholder { color: var(--text-3); }
.listing-search-submit,
.listing-search-clear {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 13px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.listing-search-submit {
  color: #15110a;
  background: linear-gradient(135deg, var(--accent), #c99b3d);
  border: 0;
  font-weight: 700;
}
.listing-search-clear {
  color: var(--accent);
  background: rgba(224,189,106,0.08);
  border: 0.5px solid rgba(224,189,106,0.44);
}
.style-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  border-radius: 6px;
}

.mobile-filters { display: none; }

.filter-sheet[hidden] { display: none; }
.filter-sheet {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.filter-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  border: 0;
  opacity: 0;
  transition: opacity 0.18s;
}
.filter-sheet-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  height: auto;
  max-height: calc(100vh - 10px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #111111;
  border: 0.5px solid var(--border-hover);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -24px 70px rgba(0,0,0,0.55);
  transform: translateY(100%);
  transition: transform 0.2s;
}
.filter-sheet.open { pointer-events: auto; }
.filter-sheet.open .filter-sheet-backdrop { opacity: 1; }
.filter-sheet.open .filter-sheet-panel { transform: translateY(0); }
.filter-sheet-lock { overflow: hidden; }
.filter-sheet-handle {
  width: 42px;
  height: 4px;
  margin: 10px auto 4px;
  border-radius: 999px;
  background: var(--border-hover);
}
.filter-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px 14px;
  border-bottom: 0.5px solid var(--border);
}
.filter-sheet-header h2 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-0);
  letter-spacing: 0;
}
.filter-sheet-close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-1);
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}
.filter-sheet-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.filter-sheet-content {
  flex: 0 0 auto;
  overflow: visible;
  padding: 18px;
}
.filter-sheet-group + .filter-sheet-group { margin-top: 24px; }
.filter-sheet-group h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.filter-sheet-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.filter-sheet-group-head h3 { margin-bottom: 0; }
.filter-sheet-style-clear {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 0;
}
.filter-sheet-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.filter-sheet-options--styles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.filter-sheet-options--styles.is-loading {
  min-height: 104px;
  visibility: hidden;
}
.sheet-option {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-1);
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-align: center;
}
.sheet-style-option .style-icon {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}
.sheet-option.active {
  color: var(--bg-0);
  background: var(--text-0);
  border-color: var(--text-0);
}
.filter-sheet-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
  background: #111111;
  border-top: 0.5px solid var(--border);
}

@supports (height: 100dvh) {
  .filter-sheet-panel {
    max-height: calc(100dvh - 10px);
  }
}
.filter-sheet-clear,
.filter-sheet-apply {
  min-height: 46px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.filter-sheet-clear {
  color: var(--text-1);
  background: transparent;
  border: 0.5px solid var(--border-hover);
}
.filter-sheet-apply {
  color: var(--bg-0);
  background: var(--text-0);
  border: 0.5px solid var(--text-0);
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.masters-list { display: flex; flex-direction: column; gap: 22px; }
.master-card { display: flex; flex-direction: column; background: #101010; border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s, background 0.2s; }
.master-card--buffered { display: none !important; }
.master-card:hover { border-color: var(--border-hover); background: #121212; }

.card-photos { position: relative; width: 100%; background: var(--bg-0); overflow: hidden; border-radius: var(--radius-sm); }
.card-photos-track { display: flex; align-items: stretch; height: 100%; gap: 8px; overflow-x: auto; overscroll-behavior-x: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 0; }
.card-photos-track::-webkit-scrollbar { display: none; }
.card-photo { position: relative; flex: 0 0 calc((100% - 24px) / 4); height: 100%; overflow: hidden; background: var(--bg-2); scroll-snap-align: start; border-radius: var(--radius-sm); }
.card-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%) contrast(1.05) brightness(0.92); transition: filter 0.3s; }
.master-card:hover .card-photo img { filter: none; }
.card-photo-more { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 12px; font-size: 14px; font-weight: 600; color: var(--text-0); background: rgba(10,10,10,0.58); opacity: 0; transition: opacity 0.15s, background 0.15s; }
.card-photo:hover .card-photo-more, .card-photo-more:focus-visible { opacity: 1; }
.card-photo-more:hover { background: rgba(10,10,10,0.72); }

.card-photo--placeholder { background: var(--bg-2); }
.placeholder-pattern { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; opacity: 0.3; }
.placeholder-pattern svg { width: 40px; height: 40px; }
.card-swiper-btn { position: absolute; top: 50%; z-index: 2; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--text-0); background: rgba(10,10,10,0.72); border: 0.5px solid rgba(255,255,255,0.16); border-radius: 50%; cursor: pointer; transform: translateY(-50%); transition: opacity 0.15s, background 0.15s; }
.card-swiper-btn:hover { background: rgba(10,10,10,0.9); }
.card-swiper-btn:disabled { opacity: 0; pointer-events: none; }
.card-swiper-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-swiper-btn--prev { left: 8px; }
.card-swiper-btn--next { right: 8px; }

.card-body {
  position: relative;
  flex: 1;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(360px, 0.44fr) minmax(0, 0.56fr);
  grid-template-areas:
    "info photos"
    "contact photos";
  align-items: stretch;
  gap: 16px 28px;
  min-width: 0;
}
.card-body > .card-photos {
  grid-area: photos;
  align-self: stretch;
  min-height: 190px;
  max-height: 230px;
}
.card-body > .card-top {
  grid-area: info;
}
.card-body > .card-contact,
.card-body > .card-footer {
  grid-area: contact;
  align-self: start;
}
.card-top { display: flex; flex-direction: column; gap: 12px; }
.card-title-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.card-title-main { display: flex; align-items: center; gap: 14px; min-width: 0; }
.card-logo-link { width: 62px; height: 62px; flex: 0 0 62px; display: block; border-radius: 10px; overflow: hidden; background: var(--bg-2); border: 1px solid var(--border-hover); box-shadow: 0 10px 24px rgba(0,0,0,0.3); }
.card-logo { width: 62px; height: 62px; display: block; object-fit: cover; }
.card-logo--placeholder { display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--accent); text-transform: uppercase; }
.card-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text-0); letter-spacing: 0; line-height: 1.2; margin-bottom: 5px; }
.card-name a:hover { color: var(--accent); }
.card-meta { font-size: 15px; color: var(--text-2); }

.badge-premium { flex-shrink: 0; font-size: 11px; font-weight: 600; color: var(--gold); background: rgba(204,170,0,0.1); border: 0.5px solid rgba(204,170,0,0.28); padding: 4px 11px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; }
.save-toggle {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  background: rgba(255,255,255,0.045);
  border: 0.5px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s;
}
.save-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.save-toggle:hover {
  color: var(--text-0);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.08);
}
.save-toggle.is-saved {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  color: var(--accent);
  border-color: rgba(255,232,168,0.42);
  background:
    radial-gradient(circle at 28% 12%, rgba(255,255,255,0.28), transparent 34%),
    linear-gradient(135deg, rgba(224,189,106,0.2), rgba(184,144,67,0.1));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.34),
    inset 0 -9px 18px rgba(105,70,20,0.12),
    0 8px 18px rgba(195,151,71,0.14);
  backdrop-filter: blur(12px) saturate(1.18);
  -webkit-backdrop-filter: blur(12px) saturate(1.18);
}
.save-toggle.is-saved::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.03) 58%),
    radial-gradient(circle at 72% 100%, rgba(255,255,255,0.16), transparent 36%);
  pointer-events: none;
}
.save-toggle.is-saved svg {
  position: relative;
  z-index: 1;
  fill: currentColor;
}

.card-rating { display: flex; align-items: center; gap: 8px; }
.stars { display: flex; gap: 1px; }
.star { font-size: 14px; color: var(--text-3); }
.star--full { color: var(--gold); }
.rating-value { font-size: 16px; font-weight: 600; color: var(--text-0); }
.rating-count { font-size: 14px; color: var(--text-2); }

.card-styles { display: flex; flex-wrap: wrap; gap: 8px; }
.style-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-1); background: var(--bg-3); border: 0.5px solid var(--border); padding: 2px 11px 2px 4px; border-radius: 20px; }
.style-tag .style-icon { width: 28px; height: 28px; flex-basis: 28px; }

.card-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: start;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
.card-contact-apps {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(106px, 1.18fr);
  gap: 8px;
}
.card-contact .btn-contact-app,
.card-contact .btn-phone,
.card-contact .phone-revealed {
  min-width: 0;
}
.card-contact .contact-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-view-square {
  position: static;
  width: 42px;
  min-width: 42px;
  max-width: 42px;
  height: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(8,8,8,0.62);
  border: 1px solid rgba(224,189,106,0.42);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.card-view-square:hover,
.card-view-square:focus-visible {
  color: #f4d383;
  background: rgba(224,189,106,0.09);
  border-color: rgba(224,189,106,0.66);
}
.card-view-square svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-footer { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 16px; border-top: 0.5px solid var(--border); }

.btn-phone { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 42px; font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--text-1); background: transparent; border: 0.5px solid var(--border); padding: 10px 18px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.15s; }
.btn-phone:hover { color: var(--text-0); border-color: var(--border-hover); }
.phone-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  object-fit: contain;
  transform: scale(0.9);
  transform-origin: center;
}
.phone-revealed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-0);
  background: var(--bg-2);
  border: 0.5px solid var(--border-hover);
  border-radius: var(--radius-sm);
}

.phone-modal[hidden] { display: none; }
.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
}
.phone-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
  border: 0;
  cursor: pointer;
}
.phone-modal__panel {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(24,24,24,0.98), rgba(12,12,12,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.48);
}
.phone-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--text-2);
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.phone-modal__eyebrow {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.phone-modal__number {
  color: var(--text-0);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}
.phone-modal__copy {
  min-height: 42px;
  color: #1b1200;
  background: linear-gradient(135deg, #f0d285, #c29848);
  border: 0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.has-phone-modal { overflow: hidden; }

/* ── Saved ─────────────────────────────────────────────────────────────── */
.saved-page { padding: 48px 0 80px; }
.saved-header { margin-bottom: 22px; }
.saved-tools {
  display: grid;
  grid-template-columns: max-content minmax(220px, 320px) max-content;
  align-items: end;
  gap: 12px;
  padding: 16px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.035);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
}
.saved-tool-btn,
.saved-copy-link {
  min-height: 42px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  color: #1b1200;
  background: linear-gradient(135deg, #f0d285, #c29848);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}
.saved-tool-btn:disabled { opacity: 0.58; cursor: wait; }
.saved-email-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
}
.saved-email-field input {
  min-height: 42px;
  width: 100%;
  color: var(--text-0);
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}
.saved-link-result {
  grid-column: 1 / -1;
  min-height: 18px;
  font-size: 13px;
  color: var(--text-2);
}
.saved-link-result a { color: var(--accent); overflow-wrap: anywhere; }
.saved-empty {
  padding: 32px;
  text-align: center;
  color: var(--text-2);
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
}
.saved-empty .btn-view { margin: 18px auto 0; width: max-content; }
.saved-modal[hidden] { display: none; }
.saved-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
}
.saved-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
  border: 0;
  cursor: pointer;
}
.saved-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(24,24,24,0.98), rgba(12,12,12,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.48);
}
.saved-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  color: var(--text-2);
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}
.saved-modal__eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.saved-modal__title {
  color: var(--text-0);
  font-size: 24px;
  line-height: 1.15;
}
.saved-modal__text {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}
.saved-modal__email {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-1);
  font-size: 13px;
  font-weight: 700;
}
.saved-modal__email input {
  min-height: 42px;
  color: var(--text-0);
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}
.saved-modal__primary,
.saved-modal__secondary,
.saved-modal__later {
  min-height: 42px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
}
.saved-modal__primary {
  color: #1b1200;
  background: linear-gradient(135deg, #f0d285, #c29848);
  border: 0;
}
.saved-modal__secondary {
  color: var(--accent);
  background: rgba(224,189,106,0.08);
  border: 0.5px solid rgba(224,189,106,0.38);
}
.saved-modal__later {
  color: var(--text-2);
  background: transparent;
  border: 0;
}
.saved-modal__result {
  min-height: 18px;
  color: var(--text-2);
  font-size: 13px;
  overflow-wrap: anywhere;
}
.has-saved-modal { overflow: hidden; }

.btn-view {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-0);
  background: linear-gradient(135deg, #116bff 0%, #0845cf 100%);
  border: 0.5px solid rgba(109,190,255,0.46);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.18s, border-color 0.18s, background 0.18s, box-shadow 0.18s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 8px 22px rgba(0,55,160,0.22);
}
.btn-view::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(124,232,255,0.96) 42%, rgba(66,138,255,0.96) 58%, transparent 78%) top right / 72% 1px no-repeat,
    linear-gradient(180deg, rgba(124,232,255,0.9), transparent 68%) top right / 1px 64% no-repeat,
    linear-gradient(90deg, rgba(44,117,255,0.8), transparent 72%) bottom left / 46% 1px no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.btn-view::after {
  content: "";
  position: absolute;
  top: -26px;
  right: -24px;
  z-index: 0;
  width: 64px;
  height: 64px;
  background: radial-gradient(circle, rgba(77,226,255,0.9) 0%, rgba(35,132,255,0.54) 36%, transparent 72%);
  filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.btn-view:hover,
.btn-view:focus-visible {
  background: linear-gradient(135deg, #1676ff 0%, #0755ff 100%);
  border-color: rgba(134,233,255,0.82);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 10px 26px rgba(0,102,255,0.34), 8px -7px 22px rgba(63,220,255,0.32);
}
.btn-view:hover::before,
.btn-view:focus-visible::before,
.btn-view:hover::after,
.btn-view:focus-visible::after {
  opacity: 1;
}

/* ── Pagination ──────────────────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 56px; }
.page-btn { font-size: 13px; color: var(--text-2); border: 0.5px solid var(--border); padding: 8px 20px; border-radius: var(--radius-sm); transition: all 0.15s; }
.page-btn:hover { color: var(--text-0); border-color: var(--border-hover); }
.page-info { font-size: 13px; color: var(--text-3); }

/* ── Empty & Footer ──────────────────────────────────────────────────────── */
.empty-state { padding: 80px 0; text-align: center; color: var(--text-3); font-size: 15px; }
.legal-disclaimer {
  margin-top: 72px;
  padding: 22px 0 0;
  border-top: 0.5px solid var(--border);
}
.legal-disclaimer p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}
.site-footer { border-top: 0.5px solid var(--border); padding: 40px 0; margin-top: 80px; }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-3); }
.footer-logo span { color: var(--accent-dim); }
.footer-copy { font-size: 13px; color: var(--text-3); }

.mobile-tabbar { display: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  body { padding-bottom: calc(94px + env(safe-area-inset-bottom)); }
  .container { padding: 0 14px; }
  .site-header {
    padding: 8px 0;
    border-bottom: 0;
    background: rgba(3,3,3,0.82);
  }
  .site-header .container {
    min-height: 54px;
    padding: 0 20px;
  }
  .desktop-saved-link { display: none; }
  .logo { font-size: 20px; }
  .lang-switcher { gap: 4px; }
  .lang-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
  }
  .listing-page { padding: 18px 0 34px; }
  .saved-page { padding: 18px 0 34px; }
  .saved-tools {
    grid-template-columns: 1fr;
    padding: 14px;
    margin-bottom: 16px;
  }
  .saved-tool-btn,
  .saved-copy-link,
  .saved-email-field input {
    width: 100%;
  }
  .listing-header { margin-bottom: 14px; }
  .breadcrumb { display: none; }
  .listing-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 8px;
  }
  .listing-description {
    display: -webkit-box;
    max-width: 36rem;
    margin: 0 auto 10px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
  }
  .listing-count {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--text-2);
  }
  .filters-bar { display: none; }
  .mobile-filters {
    position: sticky;
    top: 70px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 -14px 18px;
    padding: 10px 14px 12px;
    background: linear-gradient(180deg, rgba(3,3,3,0.96), rgba(3,3,3,0.88));
    border: 0;
    backdrop-filter: blur(18px);
  }
  .listing-search-form--mobile {
    max-width: none;
    width: 100%;
  }
  .listing-search-form--mobile .listing-search-field {
    min-height: 40px;
    padding: 0 12px;
  }
  .listing-search-form--mobile .listing-search-submit {
    min-height: 40px;
    padding: 0 13px;
  }
  .mobile-filter-controls {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .mobile-filter-controls::-webkit-scrollbar { display: none; }
  .mobile-filter-trigger {
    flex: 0 0 auto;
    min-height: 42px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 14px;
    font-family: var(--font-body);
    color: var(--text-0);
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    cursor: pointer;
    text-align: left;
  }
  .mobile-filter-trigger span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
    text-transform: none;
  }
  .mobile-filter-trigger strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-0);
  }
  .mobile-active-filters {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 1px;
  }
  .mobile-active-filters::-webkit-scrollbar { display: none; }
  .mobile-active-chip,
  .mobile-clear-btn {
    flex: 0 0 auto;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 12px;
    font-family: var(--font-body);
    border-radius: 999px;
    white-space: nowrap;
  }
  .mobile-active-chip { gap: 6px; }
  .mobile-active-chip .style-icon { width: 24px; height: 24px; flex-basis: 24px; }
  .mobile-active-chip {
    color: var(--text-1);
    background: var(--bg-3);
    border: 0.5px solid var(--border);
  }
  .mobile-clear-btn {
    color: var(--accent);
    background: transparent;
    border: 0.5px solid rgba(232,213,163,0.34);
    cursor: pointer;
  }
  .filter-sheet {
    align-items: stretch;
    padding-top: 8px;
  }
  .filter-sheet-panel {
    width: 100%;
    max-height: none;
    height: calc(100vh - 8px);
    margin-top: auto;
    border-radius: 18px 18px 0 0;
  }
  .filter-sheet-content {
    padding-bottom: 24px;
  }
  .filter-sheet-actions {
    box-shadow: 0 -12px 24px rgba(0,0,0,0.36);
  }
  @supports (height: 100dvh) {
    .filter-sheet-panel { height: calc(100dvh - 8px); }
  }
  @supports (height: 100svh) {
    .filter-sheet-panel { height: calc(100svh - 8px); }
  }
  .masters-list { gap: 16px; }
  .master-card {
    border-radius: 16px;
    border-color: rgba(255,255,255,0.08);
    background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    box-shadow: 0 14px 36px rgba(0,0,0,0.36);
  }
  .card-body {
    position: relative;
    padding: 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-areas: none;
  }
  .card-body > .card-photos {
    grid-row: auto;
    min-height: 0;
  }
  .card-view-square {
    position: static;
    width: auto;
  }
  .card-top,
  .card-contact,
  .card-footer {
    grid-column: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .card-photos {
    aspect-ratio: 3.15 / 1;
    border-radius: 16px 16px 0 0;
  }
  .card-photos::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
    pointer-events: none;
    z-index: 1;
  }
  .card-photos-track {
    height: 100%;
    display: flex;
    gap: 6px;
    scroll-snap-type: x mandatory;
    padding: 0;
  }
  .card-photo {
    flex: 0 0 calc((100% - 18px) / 3.25);
    width: auto;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    scroll-snap-align: start;
  }
  .card-photo:nth-child(4n + 1) {
    scroll-snap-align: start;
  }
  .card-photo img {
    filter: contrast(1.05) brightness(0.72) saturate(0.9);
  }
  .card-swiper-btn {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(10,10,10,0.58);
    border-color: rgba(255,255,255,0.12);
    z-index: 4;
  }
  .card-swiper-btn--prev { left: 12px; }
  .card-swiper-btn--next { right: 12px; }
  .card-photo-more {
    opacity: 1;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: rgba(0,0,0,0.58);
    z-index: 2;
  }
  .card-top {
    padding: 14px 16px 12px;
    gap: 10px;
  }
  .card-title-row { align-items: flex-start; }
  .card-title-main { gap: 0; }
  .card-logo-link { display: none; }
  .card-name {
    font-family: var(--font-body);
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: 0;
    margin-bottom: 6px;
  }
  .card-meta { font-size: 13px; color: var(--text-2); }
  .badge-premium {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    color: #2d2005;
    background: linear-gradient(135deg, #f1d58d, #b99145);
    border: 0;
    text-transform: none;
    letter-spacing: 0;
  }
  .card-rating { gap: 6px; }
  .star { font-size: 15px; }
  .rating-value { font-size: 16px; }
  .rating-count { font-size: 13px; }
  .card-styles {
    gap: 7px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .card-styles::-webkit-scrollbar { display: none; }
  .style-tag {
    flex: 0 0 auto;
    padding: 2px 10px 2px 4px;
    font-size: 12px;
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.08);
  }
  .style-tag .style-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .card-contact {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 42px;
    align-items: stretch;
    gap: 7px;
    padding-top: 2px;
    padding-bottom: 10px;
  }
  .card-contact-apps {
    display: contents;
  }
  .card-contact-apps--single {
    display: grid;
    grid-column: span 3;
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
  }
  .card-contact .btn-contact-app,
  .card-contact .btn-phone,
  .card-contact .phone-revealed,
  .card-view-square {
    width: 100%;
    max-width: none;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    padding: 6px 4px;
    border-radius: 12px;
    font-size: 14px;
  }
  .card-contact .btn-whatsapp {
    background: rgba(24,185,88,0.06);
    border-color: rgba(45,196,91,0.5);
  }
  .card-contact .btn-zalo {
    background: rgba(16,106,216,0.06);
    border-color: rgba(36,116,220,0.62);
  }
  .card-contact .contact-apps .btn-phone,
  .card-contact .contact-apps .phone-revealed {
    background: linear-gradient(135deg, #f0d285, #c29848);
  }
  .card-view-square {
    max-width: 42px;
    color: var(--accent);
    background: rgba(8,8,8,0.62);
    border: 1px solid rgba(224,189,106,0.42);
  }
  .card-view-square svg {
    width: 20px;
    height: 20px;
  }
  .card-contact .contact-app-icon,
  .card-contact .phone-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
  .card-contact .btn-contact-app .contact-label,
  .card-contact .btn-phone .contact-label {
    display: none;
  }
  .card-contact .phone-revealed .contact-label {
    display: inline;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
  }
  .card-footer {
    padding: 0 16px 16px;
    border-top: 0;
  }
  .btn-view {
    width: 100%;
    min-height: 48px;
    margin-left: 0;
    color: #1b1200;
    background: linear-gradient(135deg, #f0d285, #c29848);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(195,151,71,0.18);
  }
  .btn-view::before,
  .btn-view::after { display: none; }
  .btn-view:hover,
  .btn-view:focus-visible {
    background: linear-gradient(135deg, #f6dc98, #caa253);
    color: #1b1200;
    transform: none;
    box-shadow: 0 12px 28px rgba(195,151,71,0.24);
  }
  .mobile-tabbar {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 200;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 72px;
    padding: 9px 16px;
    overflow: hidden;
    background:
      radial-gradient(circle at 17% 0%, rgba(224,189,106,0.32), transparent 18%),
      linear-gradient(145deg, rgba(18,18,18,0.88), rgba(5,5,5,0.76));
    border: 1px solid rgba(224,189,106,0.16);
    border-radius: 26px;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 0 0 42px rgba(255,255,255,0.025),
      0 22px 70px rgba(0,0,0,0.48);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }
  .mobile-tabbar::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 62px;
    width: 92px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(224,189,106,0.95), transparent);
    filter: blur(0.4px);
    pointer-events: none;
  }
  .mobile-tabbar__item {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: rgba(255,255,255,0.48);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
  }
  .mobile-tabbar__item.is-active {
    color: var(--accent);
  }
  .mobile-tabbar__item.has-saved::after {
    content: attr(data-count);
    position: absolute;
    top: 8px;
    right: calc(50% - 45px);
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    padding: 0 6px;
    color: #211500;
    background: linear-gradient(135deg, #f7d987, #c99e43);
    border: 1px solid rgba(255,235,176,0.42);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(224,189,106,0.24);
    font-size: 11px;
    font-weight: 900;
  }
  .mobile-tabbar__item svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .legal-disclaimer {
    margin-top: 44px;
    padding: 18px 0 22px;
  }
  .legal-disclaimer p {
    font-size: 11px;
    line-height: 1.55;
    text-align: left;
  }
  .site-footer .container { flex-direction: column; gap: 8px; text-align: center; }
  .site-footer { display: none; }
}

.listing-description {
  font-size: 15px;
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ── Detail page ─────────────────────────────────────────────────────────── */
.detail-page { padding: 32px 0 80px; }
.detail-back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 9px 13px;
  color: var(--text-1);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.detail-back-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-back-link:hover,
.detail-back-link:focus-visible {
  color: var(--accent);
  border-color: rgba(224,189,106,0.32);
  background: rgba(224,189,106,0.08);
}

/* Hero: info first, gallery below */
.detail-hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 64px;
}

/* Pinterest masonry using CSS columns */
.detail-gallery {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.detail-masonry {
  columns: 4;
  column-gap: 8px;
}
.masonry-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-2);
  cursor: zoom-in;
  text-align: left;
}
.masonry-item img {
  width: 100%;
  display: block;
  filter: grayscale(15%) contrast(1.05) brightness(0.92);
  transition: filter 0.3s;
}
.masonry-item:hover img { filter: none; }
.masonry-item--review { opacity: 0.85; }
.masonry-item--placeholder { height: 160px; }
.masonry-item--placeholder .placeholder-pattern {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.3;
}
.masonry-item--placeholder .placeholder-pattern svg { width: 40px; height: 40px; }
.gallery-item--hidden { display: none !important; }
.gallery-show-more {
  width: 100%;
  break-inside: avoid;
}
.detail-gallery-show-more {
  align-self: center;
  width: auto;
  min-width: 180px;
}
.detail-gallery-nav { display: none; }
.detail-gallery-row { display: contents; }

.detail-info {
  order: 1;
  width: 100%;
}

/* Info panel */
.detail-info-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(0,0,0,0.24);
}

.detail-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.detail-title-row > div { flex: 1; min-width: 0; }
.detail-save-toggle { margin-left: auto; }
.detail-logo {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border-radius: 10px;
  border: 1px solid var(--border-hover);
  background: var(--bg-2);
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.detail-logo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
}

.detail-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: 0;
  line-height: 1.2;
}

.detail-meta { font-size: 16px; color: var(--text-2); margin-top: 4px; }

.detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.detail-rating .rating-value { font-size: 18px; font-weight: 600; }
.detail-rating .rating-count { font-size: 15px; color: var(--text-2); }

.detail-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.style-tag--link {
  transition: all 0.15s;
}
.style-tag--link:hover {
  color: var(--text-0);
  border-color: var(--border-hover);
}

.detail-description {
  font-size: 15px;
  color: var(--text-1);
  line-height: 1.75;
  border-top: 0.5px solid var(--border);
  padding-top: 18px;
}

.detail-facts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 0.5px solid var(--border);
  padding-top: 18px;
}
.detail-facts-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-facts-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
}
.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-1);
  background: var(--bg-3);
  border: 0.5px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
}
.detail-badge--feature {
  padding: 8px 13px;
  --feature-color: rgba(255,255,255,0.82);
  background: color-mix(in srgb, var(--feature-color) 12%, transparent);
  border-color: color-mix(in srgb, var(--feature-color) 24%, transparent);
}
.feature-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--feature-color);
}
.detail-badge--custom_design { --feature-color: #f0d285; }
.detail-badge--walk_ins { --feature-color: #7dd3fc; }
.detail-badge--appointment_only { --feature-color: #c4b5fd; }
.detail-badge--english_spoken { --feature-color: #86efac; }
.detail-badge--private_studio { --feature-color: #f9a8d4; }
.detail-badge--hygiene_mentioned { --feature-color: #67e8f9; }
.detail-badge--cover_up { --feature-color: #fb923c; }
.detail-badge--piercing { --feature-color: #a7f3d0; }
.detail-badge--permanent_makeup { --feature-color: #f0abfc; }
.detail-badge--tattoo_removal { --feature-color: #93c5fd; }
.detail-badge--touch_ups { --feature-color: #fde68a; }
.detail-badge--flash_tattoos { --feature-color: #facc15; }
.detail-badge--large_scale_work { --feature-color: #fdba74; }
.detail-badge--small_tattoos { --feature-color: #bef264; }
.detail-badge--uv_tattoos { --feature-color: #c084fc; }
.detail-badge--gift_certificates { --feature-color: #fda4af; }
.detail-badge--training { --feature-color: #60a5fa; }
.detail-badge--female_artist { --feature-color: #f472b6; }
.detail-badge--aftercare { --feature-color: #34d399; }
.detail-badge--late_hours { --feature-color: #a78bfa; }
.detail-badge--friendly_for_first_tattoo { --feature-color: #fb7185; }
.detail-badge--tourist_friendly { --feature-color: #38bdf8; }
.detail-badge--accent {
  color: var(--text-0);
  border-color: rgba(232,213,163,0.3);
  background: rgba(232,213,163,0.08);
}
.detail-price-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
}
.detail-price-level {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}
.detail-price-range {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-0);
}
.detail-price-evidence {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* Contacts */
.detail-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 0.5px solid var(--border);
  padding-top: 16px;
}
.contact-apps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.btn-contact-app {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #45e07f, #1fb75d);
  border: 0;
  border-radius: 14px;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #45e07f, #1fb75d);
  box-shadow: 0 10px 24px rgba(31,183,93,0.18);
}
.contact-app-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}
.btn-zalo {
  color: #ffffff;
  background: linear-gradient(135deg, #1398ff, #0068d8);
  box-shadow: 0 10px 24px rgba(0,104,216,0.18);
}
.btn-whatsapp:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #56ec8d, #24c768);
}
.btn-zalo:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #27a6ff, #0874e8);
}
.contact-apps .btn-phone,
.contact-apps .phone-revealed {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 14px;
  color: #1b1200;
  background: linear-gradient(135deg, #f0d285, #c29848);
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.contact-apps .btn-phone:hover,
.contact-apps .phone-revealed:hover {
  color: #1b1200;
  background: linear-gradient(135deg, #f5dc96, #cfa556);
}
.contact-apps .phone-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.card-contact .btn-contact-app,
.card-contact .btn-phone,
.card-contact .phone-revealed {
  height: 38px;
  min-height: 38px;
  max-height: 38px;
  gap: 6px;
  padding: 7px 8px;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: none;
}
.card-contact .contact-app-icon,
.card-contact .phone-icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}
.card-contact .btn-whatsapp {
  color: #55d861;
  background: rgba(24,185,88,0.08);
  border: 1px solid rgba(45,196,91,0.48);
}
.card-contact .btn-whatsapp:hover,
.card-contact .btn-whatsapp:focus-visible {
  color: #6bf073;
  background: rgba(24,185,88,0.13);
  border-color: rgba(70,220,111,0.65);
}
.card-contact .btn-zalo {
  color: #4d9bff;
  background: rgba(16,106,216,0.08);
  border: 1px solid rgba(36,116,220,0.58);
}
.card-contact .btn-zalo:hover,
.card-contact .btn-zalo:focus-visible {
  color: #6eb0ff;
  background: rgba(16,106,216,0.13);
  border-color: rgba(72,146,235,0.75);
}
.card-contact .contact-apps .btn-phone,
.card-contact .contact-apps .phone-revealed {
  color: #1b1200;
  background: linear-gradient(135deg, #f0d285, #c29848);
  border: 1px solid rgba(224,189,106,0.18);
}
.card-contact .contact-apps .btn-phone:hover,
.card-contact .contact-apps .phone-revealed:hover,
.card-contact .contact-apps .phone-revealed:focus-visible {
  color: #1b1200;
  background: linear-gradient(135deg, #f5dc96, #cfa556);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-1);
  line-height: 1.55;
}
.contact-row svg { flex-shrink: 0; margin-top: 3px; color: var(--text-2); }
.contact-row a { color: var(--text-1); }
.contact-row a:hover { color: var(--text-0); }

.detail-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 0.5px solid var(--border);
  padding-top: 18px;
}
.detail-proof-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}
.detail-proof-list li {
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.65;
}

/* ── Detail sections ─────────────────────────────────────────────────────── */
.detail-section { margin-bottom: 64px; }
.detail-section-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-0);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

/* ── Portfolio grid ──────────────────────────────────────────────────────── */
.portfolio-grid {
  columns: 4;
  column-gap: 6px;
}
.portfolio-item {
  break-inside: avoid;
  display: block;
  margin-bottom: 6px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.portfolio-item img {
  width: 100%;
  display: block;
  filter: grayscale(10%) brightness(0.9);
  transition: filter 0.3s, transform 0.3s;
}
.portfolio-item:hover img {
  filter: none;
  transform: scale(1.02);
}
.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 8px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  font-size: 10px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  padding: 2px 6px;
  border-radius: 10px;
}

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.reviews-list { display: flex; flex-direction: column; gap: 16px; }

.review-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card--ai-summary {
  border-color: rgba(224,189,106,0.22);
  background:
    linear-gradient(145deg, rgba(224,189,106,0.09), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  flex-shrink: 0;
}
.review-author-circle--ai {
  background: rgba(224,189,106,0.1);
  border-color: rgba(224,189,106,0.24);
}
.review-author-circle--ai img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.review-author { font-size: 16px; font-weight: 600; color: var(--text-0); }
.review-date { font-size: 13px; font-weight: 500; color: #b8b8b8; margin-top: 2px; }

.review-stars { display: flex; gap: 2px; margin-left: auto; }

.review-text {
  font-size: 15px;
  color: var(--text-1);
  line-height: 1.75;
}
.ai-summary-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ai-summary-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.65;
}
.ai-summary-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(224,189,106,0.08);
}
.review-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.review-toggle {
  padding: 6px 11px;
  color: var(--accent);
  background: rgba(224,189,106,0.07);
  border: 1px solid rgba(224,189,106,0.24);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.review-toggle:hover,
.review-toggle:focus-visible {
  color: var(--text-0);
  border-color: rgba(224,189,106,0.4);
}

.review-translation {
  margin: 12px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(224,189,106,0.24);
  border-radius: 12px;
  background: rgba(224,189,106,0.07);
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.6;
}

.review-translation__label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.review-translation p { margin: 0; }

.review-photos {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.review-photo {
  width: 80px;
  height: 80px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-2);
  cursor: zoom-in;
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.9);
  transition: filter 0.2s;
}
.review-photo:hover img { filter: none; }
.review-photos .gallery-show-more { flex-basis: 100%; margin-top: 4px; }
.list-item--hidden { display: none !important; }
.reviews-show-more { margin-top: 4px; }

body.lightbox-open { overflow: hidden; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.92);
  padding: 28px 72px;
}
.image-lightbox[hidden] { display: none; }
.lightbox-figure {
  max-width: min(1120px, 100%);
  max-height: 100%;
  margin: 0;
}
.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 56px);
  object-fit: contain;
  border-radius: 6px;
}
.lightbox-close,
.lightbox-nav {
  position: fixed;
  display: grid;
  place-items: center;
  border: 0.5px solid rgba(255,255,255,0.18);
  background: rgba(18,18,18,0.8);
  color: #fff;
  cursor: pointer;
}
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 58px;
  border-radius: 6px;
  transform: translateY(-50%);
}
.lightbox-nav--prev { left: 18px; }
.lightbox-nav--next { right: 18px; }
.lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,0.14); }

.btn-show-more {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.btn-show-more:hover {
  color: var(--text-0);
  border-color: var(--border-hover);
  background: var(--bg-3);
}

/* ── Detail responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .detail-masonry { columns: 3; }
  .portfolio-grid { columns: 3; }
}

@media (max-width: 600px) {
  .detail-page {
    padding: 0 0 36px;
  }
  .detail-page .container {
    padding: 0 12px;
  }
  .detail-page .breadcrumb { display: none; }
  .detail-back-link {
    margin: 10px 0 12px;
    padding: 9px 12px;
    max-width: 100%;
    background: rgba(8,8,8,0.72);
    font-size: 12px;
  }
  .detail-hero {
    gap: 16px;
    margin: 0 0 36px;
  }
  .detail-gallery {
    order: 1;
    position: relative;
    width: 100%;
    margin: 0 auto;
    gap: 0;
    overflow: hidden;
    border-radius: 16px;
  }
  .detail-gallery-show-more {
    display: none;
  }
  .detail-masonry {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: clamp(231px, 42vh, 374px);
    padding: 0 2px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 2px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .detail-masonry::-webkit-scrollbar { display: none; }
  .detail-gallery-row {
    flex: 0 0 calc((100% - 6px) / 2);
    width: max-content;
    min-width: 100%;
    height: calc((100% - 6px) / 2);
    display: flex;
    align-items: flex-start;
    gap: 6px;
  }
  .masonry-item {
    display: block;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    height: 100%;
    margin: 0;
    border-radius: 10px;
    background: transparent;
    aspect-ratio: auto;
    scroll-snap-align: start;
  }
  .masonry-item:first-child {
    aspect-ratio: auto;
    max-height: none;
    border-radius: 10px;
  }
  .masonry-item img {
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.04) brightness(0.78) saturate(0.94);
  }
  .detail-gallery.is-loading-more::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.7;
    transform: translateX(-50%);
  }
  .detail-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--text-1);
    background: rgba(8,8,8,0.66);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.32);
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
  }
  .detail-gallery-nav[hidden] {
    display: none;
  }
  .detail-gallery-nav--prev {
    left: 8px;
  }
  .detail-gallery-nav--next {
    right: 8px;
  }
  .detail-gallery-nav svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .detail-info {
    order: 2;
  }
  .detail-info-inner {
    gap: 14px;
    padding: 0 2px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .detail-title-row {
    gap: 0;
  }
  .detail-logo {
    display: none;
  }
  .detail-name {
    font-family: var(--font-body);
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: 0;
  }
  .detail-meta {
    font-size: 14px;
    color: var(--text-1);
  }
  .detail-rating {
    font-size: 15px;
  }
  .detail-styles,
  .detail-badges {
    gap: 7px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .detail-styles::-webkit-scrollbar,
  .detail-badges::-webkit-scrollbar { display: none; }
  .detail-styles .style-tag,
  .detail-badge {
    flex: 0 0 auto;
    max-width: 82vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
  }
  .detail-badge--feature {
    min-height: 44px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 999px;
  }
  .feature-icon {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .detail-description,
  .detail-facts,
  .detail-contacts {
    border-top-color: rgba(255,255,255,0.08);
  }
  .detail-price-card,
  .review-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    border-color: rgba(255,255,255,0.08);
    border-radius: 16px;
  }
  .contact-row {
    padding: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
  }
  .detail-contacts .contact-row:has(.btn-phone),
  .detail-contacts .contact-row:has(.phone-revealed) {
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .contact-apps {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .card-contact .card-contact-apps {
    display: contents;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .card-contact .card-contact-apps--single {
    display: grid;
    grid-column: span 3;
    grid-template-columns: 1fr;
  }
  .btn-contact-app {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    gap: 9px;
    padding: 9px 14px;
    border: 0;
    border-radius: 14px;
    font-weight: 700;
    line-height: 1.2;
  }
  .btn-phone,
  .phone-revealed {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    gap: 9px;
    padding: 9px 14px;
    border: 0;
    border-radius: 14px;
    font-weight: 700;
    line-height: 1.2;
  }
  .btn-phone,
  .phone-revealed {
    color: #1b1200;
    background: linear-gradient(135deg, #f0d285, #c29848);
    font-size: 14px;
  }
  .phone-revealed {
    letter-spacing: 0;
  }
  .btn-contact-app {
    font-size: 14px;
  }
  .btn-whatsapp {
    color: #ffffff;
    background: linear-gradient(135deg, #45e07f, #1fb75d);
  }
  .btn-zalo {
    color: #ffffff;
    background: linear-gradient(135deg, #1398ff, #0068d8);
  }
  .contact-app-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
  .phone-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
  .detail-section {
    margin-bottom: 42px;
  }
  .detail-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
  }
  .art-block {
    padding: 0 0 22px;
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .art-block + .art-block {
    padding-top: 22px;
  }
  .art-block-header {
    margin-bottom: 12px;
  }
  .art-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .art-photo,
  .art-photo:first-child {
    grid-column: auto;
    aspect-ratio: 0.74 / 1;
    border-radius: 10px;
  }
  .review-card {
    padding: 18px;
  }
  .review-author-circle {
    background: rgba(255,255,255,0.08);
  }
  .review-translation {
    padding: 14px 16px;
  }
  .detail-masonry { columns: 2; }
  .portfolio-grid { columns: 2; }
  .detail-logo { width: 68px; height: 68px; flex-basis: 68px; }
  .detail-title-row { gap: 14px; }
  .detail-name { font-size: 24px; }
  .detail-meta, .contact-row, .review-text { font-size: 14px; }
}

/* Active style tag — highlighted when matching filter */
.style-tag--active {
  color: var(--accent);
  background: rgba(232, 213, 163, 0.08);
  border-color: rgba(232, 213, 163, 0.3);
}

/* Liquid glass accent buttons */
.listing-search-submit,
.home-primary-btn,
.saved-tool-btn,
.saved-copy-link,
.contact-apps .btn-phone,
.contact-apps .phone-revealed {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  color: #1b1200;
  background:
    radial-gradient(circle at 24% 0%, rgba(255,255,255,0.82), transparent 30%),
    linear-gradient(135deg, rgba(252,226,148,0.96), rgba(191,143,60,0.96));
  border: 1px solid rgba(255,232,168,0.36);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.58),
    inset 0 -12px 22px rgba(105,70,20,0.16),
    0 10px 24px rgba(195,151,71,0.18);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}
.listing-search-submit::before,
.home-primary-btn::before,
.saved-tool-btn::before,
.saved-copy-link::before,
.contact-apps .btn-phone::before,
.contact-apps .phone-revealed::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.46), rgba(255,255,255,0.08) 46%, rgba(255,255,255,0.02)),
    radial-gradient(circle at 78% 100%, rgba(255,255,255,0.28), transparent 36%);
  pointer-events: none;
}
.listing-search-submit::after,
.home-primary-btn::after,
.saved-tool-btn::after,
.saved-copy-link::after,
.contact-apps .btn-phone::after,
.contact-apps .phone-revealed::after {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -46%;
  z-index: 0;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  pointer-events: none;
}
.contact-apps .btn-phone > *,
.contact-apps .phone-revealed > * {
  position: relative;
  z-index: 1;
}
.saved-tool-btn,
.saved-copy-link {
  font-weight: 700;
}
.listing-search-submit:hover,
.home-primary-btn:hover,
.saved-tool-btn:hover,
.saved-copy-link:hover,
.contact-apps .btn-phone:hover,
.contact-apps .phone-revealed:hover,
.contact-apps .phone-revealed:focus-visible {
  color: #1b1200;
  background:
    radial-gradient(circle at 24% 0%, rgba(255,255,255,0.9), transparent 32%),
    linear-gradient(135deg, rgba(255,233,163,0.98), rgba(204,159,76,0.98));
  border-color: rgba(255,236,181,0.54);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.68),
    inset 0 -12px 22px rgba(105,70,20,0.13),
    0 12px 28px rgba(195,151,71,0.24);
}

/* ── Art block (portfolio grouped by work) ───────────────────────────────── */
.art-block {
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border);
}
.art-block:last-child { border-bottom: none; }

.art-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.art-styles { display: flex; flex-wrap: wrap; gap: 6px; }

.art-description {
  font-size: 14px;
  color: var(--text-2);
  flex: 1;
  min-width: 0;
}

.art-link {
  font-size: 13px;
  color: var(--text-3);
  margin-left: auto;
  white-space: nowrap;
  transition: color 0.15s;
}
.art-link:hover { color: var(--text-0); }

/* Photos in a row, masonry-like with varying heights */
.art-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 4px;
}

.art-photo {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  aspect-ratio: 3/4;
}
.art-photo:first-child {
  grid-column: span 2;
  aspect-ratio: 4/3;
}
.art-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.9);
  transition: filter 0.3s, transform 0.3s;
}
.art-photo:hover img {
  filter: none;
  transform: scale(1.03);
}
.art-photos .gallery-show-more { grid-column: 1 / -1; }

@media (max-width: 600px) {
  .art-photos { grid-template-columns: repeat(2, 1fr); }
  .art-photo:first-child { grid-column: span 2; }
}

/* ── Art detail page ─────────────────────────────────────────────────────── */
.art-detail-description {
  font-size: 15px;
  color: var(--text-1);
  line-height: 1.7;
  padding: 16px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.art-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.15s;
}
.art-back-link:hover { color: var(--text-0); }

.art-master-card {
  background: var(--bg-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.art-master-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-0);
}
.art-master-meta { font-size: 13px; color: var(--text-3); }

/* ── Load More ───────────────────────────────────────────────────────────── */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn-load-more {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  background: transparent;
  border: 0.5px solid var(--border-hover);
  padding: 12px 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-load-more:hover {
  color: var(--text-0);
  border-color: var(--text-0);
}
.btn-load-more:disabled {
  opacity: 0.5;
  cursor: default;
}
.load-more-count {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 400;
}

@media (max-width: 600px) {
  .detail-masonry {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    grid-template-columns: none;
  }
  .masonry-item:first-child {
    aspect-ratio: auto;
    max-height: none;
    border-radius: 10px;
  }
  .detail-logo { display: none; }
  .detail-title-row { gap: 0; }
  .detail-name { font-size: 30px; }
  .detail-styles .style-tag,
  .detail-badge {
    flex: 0 0 auto;
    max-width: 82vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
  }
  .art-block {
    padding: 0 0 22px;
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .art-block + .art-block { padding-top: 22px; }
  .art-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .art-photo,
  .art-photo:first-child {
    grid-column: auto;
    aspect-ratio: 0.74 / 1;
    border-radius: 10px;
  }
}
