:root {
  --bg: #0a0a0c;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.68);
  --gold: #c9a86a;
  --gold-strong: #e1bf7f;
  --gold-soft: rgba(201, 168, 106, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 168, 106, 0.14), transparent 28%),
    linear-gradient(180deg, #111214 0%, #09090b 100%);
  color: var(--text);
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(201, 168, 106, 0.18), transparent 28%),
    rgba(7, 7, 9, 0.94);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.page-loader.is-active {
  opacity: 1;
  visibility: visible;
}

.page-loader__panel {
  width: min(100%, 440px);
  padding: 30px 24px 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  text-align: center;
}

.page-loader__eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-loader__count {
  display: block;
  margin-bottom: 10px;
  color: #f7ddb0;
  font-size: clamp(3.4rem, 9vw, 4.8rem);
  line-height: 1;
}

.page-loader__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
}

.page-loader__hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark__main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.22), rgba(255, 255, 255, 0.03));
  color: #f7ddb0;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark__text {
  display: flex;
  flex-direction: column;
}

.brand-mark__text strong {
  font-size: 0.98rem;
}

.brand-mark__text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark__thumbs {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.brand-mark__thumbs img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.lang-button {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.lang-button.is-active {
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.28), rgba(201, 168, 106, 0.12));
  color: var(--text);
}

main {
  display: grid;
  gap: 18px;
}

.hero-card,
.insight-section,
.brands-section,
.service-section,
.final-cta {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)),
    rgba(8, 8, 10, 0.9);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 24px;
  padding: 30px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #f2cd8d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -0.028em;
}

.hero-description {
  max-width: 52ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-point,
.showcase-badge,
.watch-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.city-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.city-form input {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
}

.city-form input::placeholder {
  color: rgba(245, 241, 232, 0.42);
}

.city-form input:focus {
  border-color: rgba(201, 168, 106, 0.54);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.12);
}

.city-form button {
  height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #d8b778 0%, #b48a4d 100%);
  color: #17130d;
  font-weight: 800;
  white-space: nowrap;
}

.city-form button:hover,
.city-form button:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible,
.watch-cta:hover,
.watch-cta:focus-visible,
.lang-button:hover,
.lang-button:focus-visible,
.brand-tile:hover,
.brand-tile:focus-visible,
.chip:hover,
.chip:focus-visible {
  transform: translateY(-1px);
}

.city-feedback {
  min-height: 24px;
  margin-top: 12px;
  color: #f0d4a0;
  font-size: 0.9rem;
}

.supported-cities {
  margin-top: 10px;
}

.supported-cities__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.83rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ghost-button {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.ghost-button:hover,
.ghost-button:focus-visible {
  border-color: rgba(201, 168, 106, 0.45);
  background: rgba(201, 168, 106, 0.12);
  outline: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.metric-card {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-card strong {
  display: block;
  color: #f7ddb0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.metric-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  grid-template-areas:
    "stat cards"
    "gallery gallery";
  align-content: start;
  gap: 16px;
  min-height: 560px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 106, 0.26), transparent 34%),
    linear-gradient(180deg, #15161a 0%, #101114 100%);
  overflow: hidden;
}

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

.hero-stat {
  grid-area: stat;
  align-self: start;
  max-width: 280px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(14px);
}

.hero-stat strong {
  display: block;
  color: #f8d392;
  font-size: 2rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hero-card-stack {
  grid-area: cards;
  align-self: start;
  display: grid;
  gap: 10px;
  width: 100%;
}

.hero-floating-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(10, 10, 12, 0.54);
  backdrop-filter: blur(14px);
  min-height: 108px;
}

.hero-floating-card span {
  display: block;
  color: #f7ddb0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
}

.hero-floating-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.hero-gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 14px;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #f3f3f3, #e8e8e8);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.22);
}

.hero-gallery__main {
  grid-row: 1 / span 2;
  min-height: 434px;
}

.hero-gallery__side {
  min-height: 0;
}

.insight-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  padding: 20px;
}

.insight-card {
  min-height: 180px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.insight-card h2,
.insight-card h3 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.insight-card h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.insight-card h3 {
  font-size: 1.12rem;
}

.insight-card p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.brands-section,
.service-section,
.final-cta {
  padding: 24px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 24px;
  align-items: end;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
}

.section-lead,
.final-cta__copy p:last-child,
.brand-showcase__intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.collection-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.overview-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.overview-card strong {
  font-size: 0.96rem;
}

.overview-card span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.brand-tile {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.brand-tile--featured {
  border-color: rgba(201, 168, 106, 0.28);
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.12), rgba(255, 255, 255, 0.03));
  color: #f7ddb0;
}

.brand-tile.is-selected {
  border-color: rgba(201, 168, 106, 0.78);
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.3), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 0 0 1px rgba(201, 168, 106, 0.2);
}

.brand-feedback,
.watch-feedback {
  min-height: 26px;
  margin-top: 12px;
  color: #f0d4a0;
  font-size: 0.9rem;
}

.brand-showcase {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}

.brand-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 10px;
}

.brand-showcase__head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.brand-showcase__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.showcase-badge {
  color: var(--text);
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.watch-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.watch-card:hover {
  border-color: rgba(201, 168, 106, 0.24);
  transform: translateY(-2px);
}

.watch-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #f3f3f3, #e8e8e8);
}

.watch-card__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
}

.watch-card__body strong {
  font-size: 0.96rem;
}

.watch-card__body span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.watch-series {
  color: var(--text) !important;
  font-size: 0.92rem !important;
  font-weight: 600;
}

.watch-spec {
  min-height: 40px;
}

.watch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.watch-cta {
  width: 100%;
  min-height: 42px;
  margin-top: 4px;
  border: 1px solid rgba(201, 168, 106, 0.34);
  border-radius: 14px;
  background: rgba(201, 168, 106, 0.12);
  color: #f7ddb0;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.watch-cta:hover,
.watch-cta:focus-visible {
  border-color: rgba(201, 168, 106, 0.64);
  background: rgba(201, 168, 106, 0.2);
  outline: none;
}

.watch-card.is-hidden {
  display: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.service-overview__intro {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.service-overview__intro h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.timeline-card {
  min-height: 154px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.timeline-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(201, 168, 106, 0.16);
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.timeline-card strong {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
}

.timeline-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.service-card {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: #f5d398;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 16px 0 10px;
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.buyer-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.support-card {
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.support-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.support-card p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.final-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1200px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-metrics,
  .brand-grid,
  .watch-grid,
  .service-grid,
  .collection-overview,
  .buyer-support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-section {
    grid-template-columns: 1fr;
  }

  .service-overview,
  .service-timeline {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "stat"
      "cards"
      "gallery";
    min-height: 0;
  }

  .hero-stat {
    max-width: none;
  }

  .hero-card-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 12px;
    padding-bottom: 24px;
  }

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

  .brand-mark {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .brand-mark__main {
    min-width: 0;
  }

  .brand-mark__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex-shrink: 0;
    width: 204px;
    gap: 10px;
  }

  .brand-mark__thumbs img {
    width: 100%;
    height: 68px;
    border-radius: 16px;
    object-position: center 44%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }

  .lang-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .lang-button {
    flex: 1;
  }

  .hero-card,
  .insight-section,
  .brands-section,
  .service-section,
  .final-cta {
    padding: 16px;
    border-radius: 24px;
  }

  .hero-card {
    gap: 14px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.72rem, 7.6vw, 2.36rem);
    line-height: 1.18;
  }

  .page-loader {
    padding: 18px;
  }

  .page-loader__panel {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .page-loader__title {
    font-size: 0.96rem;
  }

  .page-loader__hint {
    font-size: 0.86rem;
  }

  .city-form,
  .hero-actions,
  .final-cta__actions {
    flex-direction: column;
  }

  .hero-metrics,
  .service-grid,
  .collection-overview,
  .buyer-support,
  .service-timeline {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stat"
      "cards"
      "gallery";
    gap: 12px;
    min-height: 0;
    padding: 16px;
  }

  .hero-stat {
    max-width: none;
    padding: 14px;
  }

  .hero-gallery {
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .hero-gallery__main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 260px;
  }

  .hero-gallery__side {
    min-height: 140px;
  }

  .hero-card-stack {
    width: 100%;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-floating-card {
    min-height: 0;
    padding: 12px 14px;
  }

  .hero-description {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .metric-card {
    min-height: 88px;
    padding: 12px;
  }

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

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

  .brand-showcase {
    padding: 14px;
    border-radius: 18px;
  }

  .brand-showcase__head {
    grid-template-columns: 1fr;
  }

  .brand-showcase__meta {
    justify-content: flex-start;
  }

  .watch-spec {
    min-height: 0;
  }

  .brand-tile,
  .service-card,
  .metric-card,
  .insight-card {
    min-height: 0;
  }
}
