:root {
  --black: #050505;
  --night: #120f09;
  --panel: rgba(8, 6, 3, .82);
  --gold: #ffd21a;
  --gold-2: #ffae00;
  --amber: #ff7600;
  --line: rgba(255, 210, 26, .42);
  --text: #ffffff;
  --muted: #e7d7a1;
  --green: #24cf64;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  padding-bottom: 56px;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 88px;
  padding: 14px 24px;
  background: #000;
  border-bottom: 1px solid var(--gold-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .5px;
  color: var(--gold);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #000;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 0 26px rgba(255, 210, 26, .45);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}

.nav a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-icon {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 210, 26, .48);
}

.nav-toggle {
  display: none;
  border: 0;
  color: #000;
  background: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 24px;
  font-weight: 900;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 8vw;
  color: var(--muted);
  background: #080808;
  border-bottom: 1px solid rgba(255, 210, 26, .16);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 48px 8vw 0;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, .34), rgba(0, 0, 0, .4)),
    radial-gradient(circle at 50% 20%, rgba(255, 210, 26, .16), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 210, 26, .05) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, #261700 0%, #080604 100%);
  border-bottom: 1px solid var(--gold-2);
}

.seo-hero {
  min-height: 0;
  padding-bottom: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-centered {
  grid-template-columns: 1fr;
  max-width: 1426px;
  gap: 28px;
  text-align: center;
}

.hero-centered .city-search {
  max-width: 952px;
  margin-inline: auto;
}

.hero-centered .hero-copy {
  text-align: center;
}

.hero-centered .hero-tag {
  margin: 28px 0 0;
}

.hero-inner .city-search {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 8px;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.intro-copy {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.city-banner {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .72)),
    var(--banner-url),
    linear-gradient(135deg, #4f3600, #0a0a0a 62%, #2a1b00);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
  overflow: hidden;
}

.banner-fallback {
  display: grid;
  align-content: end;
  height: 100%;
  min-height: 330px;
  padding: 26px;
  text-align: left;
}

.banner-fallback span {
  color: var(--gold);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
}

.banner-fallback strong {
  color: #fff;
  font-size: 22px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 26, .09), transparent);
  transform: translateX(-100%);
  animation: sweep 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 210, 26, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 210, 26, .08) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 88%);
  pointer-events: none;
}

.city-search,
.dream-panel,
.hero h1,
.hero-actions,
.hero-tag {
  position: relative;
  z-index: 1;
}

.city-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  max-width: 952px;
  margin: 2px auto 42px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.city-search select,
.city-search button {
  height: 58px;
  border: 0;
  color: #fff;
  background: #f7b500;
  font: inherit;
  font-weight: 700;
}

.city-search select {
  padding: 0 20px;
  outline: none;
  appearance: auto;
}

.city-search button {
  cursor: pointer;
  font-size: 18px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.hero h1 {
  margin: 0 auto;
  max-width: 1180px;
  font-size: clamp(42px, 6.3vw, 78px);
  line-height: 1.1;
  font-weight: 900;
}

.hero h1 span,
.dream-panel h2,
.content-band h2 {
  color: var(--gold);
  text-shadow: 0 0 26px rgba(255, 210, 26, .32);
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 38px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-actions a,
.contact-row a {
  min-width: 236px;
  padding: 12px 20px;
  border-radius: 7px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(255, 174, 0, .23);
  text-align: center;
}

.hero-actions a:nth-child(2),
.contact-row a:nth-child(2) {
  color: #fff;
  background: var(--green);
}

.hero-tag {
  margin: 36px 0;
  font-size: 30px;
  font-weight: 800;
}

.hero-tag strong {
  color: var(--gold);
}

.dream-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 18px;
  max-width: 1426px;
  margin: 0 auto;
  padding: 44px 50px 52px;
  border-radius: 8px 8px 0 0;
  background: rgba(0, 0, 0, .72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.dream-panel h2 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}

.dream-panel select,
.dream-panel button,
.dream-panel input {
  width: 100%;
  min-height: 62px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 0 24px;
  font: inherit;
  font-size: 18px;
}

.filter-panel {
  margin-top: 50px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1426px;
}

.filter-panel h2,
.filter-panel button {
  grid-column: 1 / -1;
}

.section-shell {
  width: min(1420px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.sidebar-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .68);
}

.sidebar-nav h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 20px;
}

.sidebar-nav a,
.mini-profile-row a {
  padding: 11px 13px;
  border: 1px solid rgba(255, 210, 26, .2);
  border-radius: 7px;
  background: rgba(255, 210, 26, .07);
  font-weight: 700;
}

.main-column {
  min-width: 0;
}

.content-panel {
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .58);
}

.content-panel h2,
.section-shell h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(28px, 3.5vw, 42px);
}

.intro-section {
  text-align: center;
}

.intro-section p:not(.eyebrow) {
  max-width: 980px;
  margin: 0 auto 16px;
}

.mini-profile-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mini-profile-row a span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.dream-panel button {
  grid-column: 1 / -1;
  color: #050505;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.profiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 6px;
  padding: 24px 20px 30px;
  background:
    linear-gradient(rgba(0, 0, 0, .26), rgba(0, 0, 0, .6)),
    linear-gradient(135deg, #2a1b00, #050505 52%, #221500);
}

.seo-profiles {
  padding: 0;
  background: transparent;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.profile-card {
  border: 2px solid var(--gold-2);
  background: #130d00;
  animation: liftIn .55s ease both;
}

.profile-card:nth-child(2n) {
  animation-delay: .08s;
}

.profile-card:nth-child(3n) {
  animation-delay: .16s;
}

.profile-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  min-height: 310px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image.placeholder {
  background:
    linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .35)),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .2), transparent 12%),
    linear-gradient(135deg, #604000, #151006 45%, #3d2900);
}

.initials {
  display: grid;
  place-items: center;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(66px, 7vw, 112px);
  font-weight: 900;
  background: linear-gradient(135deg, rgba(255, 210, 26, .3), rgba(255, 118, 0, .12));
  border: 2px solid rgba(255, 210, 26, .45);
}

.watermark {
  position: absolute;
  inset-inline: 0;
  top: 48%;
  color: rgba(255, 255, 255, .18);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
}

.verified {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 128px;
  padding: 13px 20px 13px 8px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  font-size: 15px;
  font-weight: 900;
}

.profile-info {
  position: relative;
  min-height: 128px;
  padding: 18px 12px 34px;
  text-align: center;
  border-top: 1px solid rgba(255, 210, 26, .42);
  background: #0c0800;
}

.profile-info h3 {
  margin: 0 0 6px;
  font-size: 27px;
  line-height: 1.15;
}

.profile-info p {
  margin: 0;
  font-size: 21px;
}

.profile-meta {
  color: var(--muted);
  font-size: 14px !important;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.pagination a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.pagination a.active {
  color: #050505;
  background: var(--gold);
}

.profile-info a {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  min-width: 158px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-size: 18px;
  font-weight: 700;
}

.content-band {
  padding: 70px 8vw;
  background: #070707;
}

.content-band.compact {
  padding-block: 48px;
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
}

.seo-content p,
.article-grid p,
.service-grid p,
.section-shell p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.service-grid,
.article-grid,
.trust-grid {
  display: grid;
  gap: 14px;
}

.service-grid section,
.article-grid article,
.trust-grid blockquote,
.faq details {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .58);
}

.service-grid section a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 900;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid h3,
.article-grid h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 21px;
}

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

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

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.trust-signals span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #050505;
  background: var(--gold);
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq h2 {
  margin-bottom: 4px;
}

.faq summary {
  cursor: pointer;
  color: var(--gold);
  font-weight: 900;
}

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

.gallery-title {
  display: grid;
  place-items: center;
  min-height: 60px;
  margin-bottom: 38px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  text-align: center;
}

.hot-gallery {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 6px;
}

.gallery-card {
  border: 2px solid var(--gold-2);
  background: #130d00;
  overflow: visible;
  animation: liftIn .55s ease both;
}

.gallery-card:hover {
  box-shadow: 0 0 34px rgba(255, 174, 0, .36);
}

.gallery-photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  min-height: 330px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .34) 45%, transparent 70%);
  transform: translateX(-130%);
  animation: galleryShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-card:hover .gallery-photo img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.05);
}

.gallery-photo.placeholder {
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .3)),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .18), transparent 12%),
    linear-gradient(135deg, #604000, #151006 45%, #3d2900);
}

.gallery-verified {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-width: 122px;
  padding: 12px 20px 12px 8px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
}

.gallery-verified::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: translateX(-120%);
  animation: badgeShine 2.6s ease-in-out infinite;
}

.gallery-initial {
  display: grid;
  place-items: center;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(70px, 7vw, 116px);
  font-weight: 900;
  border: 2px solid rgba(255, 210, 26, .45);
  background: linear-gradient(135deg, rgba(255, 210, 26, .3), rgba(255, 118, 0, .12));
}

.gallery-watermark {
  position: absolute;
  inset-inline: 0;
  top: 48%;
  z-index: 1;
  color: rgba(255, 255, 255, .18);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.gallery-info {
  position: relative;
  min-height: 116px;
  padding: 18px 12px 34px;
  text-align: center;
  border-top: 1px solid rgba(255, 210, 26, .42);
  background: #0c0800;
}

.gallery-info h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 26px;
  line-height: 1.15;
}

.gallery-info p {
  margin: 0;
  color: #fff;
  font-size: 20px;
}

.gallery-info a {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  min-width: 156px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 17px;
  font-weight: 700;
}

.gallery-grid figure {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--gold-2);
  border-radius: 8px;
  background: linear-gradient(135deg, #604000, #151006 45%, #3d2900);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid span {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 900;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
  color: var(--gold);
  font-weight: 900;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 34px 8vw 90px;
  border-top: 1px solid var(--line);
  background: #030303;
}

.site-footer strong {
  color: var(--gold);
  font-size: 24px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.legal-page {
  max-width: 900px;
}

.legal-page h1 {
  color: var(--gold);
  font-size: clamp(34px, 5vw, 56px);
}

.legal-page a {
  color: var(--gold);
  font-weight: 900;
}

.content-band.alt {
  padding-bottom: 100px;
  text-align: center;
  background: linear-gradient(135deg, #050505, #281a00);
}

.content-band h2 {
  margin: 0 0 26px;
  font-size: clamp(30px, 4vw, 48px);
  text-align: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pill-list a,
.pill-list span {
  display: inline-flex;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 210, 26, .08);
  font-weight: 700;
}

.contact-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.rent-tab {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 19;
  transform: translateY(-50%);
  padding: 14px 25px;
  color: #050505;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-size: 26px;
  font-weight: 900;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 56px;
}

.sticky-cta a {
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 800;
}

.sticky-cta a:first-child {
  color: #050505;
  background: var(--gold-2);
}

.sticky-cta a:last-child {
  background: var(--green);
}

.admin-body {
  background: linear-gradient(135deg, #050505, #211600);
  padding: 0;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto;
  padding-bottom: 44px;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-head p {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.admin-head h1 {
  margin: 4px 0 0;
  font-size: clamp(30px, 5vw, 54px);
}

.admin-head a,
.save-btn {
  border: 0;
  border-radius: 7px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.login-card {
  max-width: 520px;
}

.login-card .save-btn {
  margin-top: 18px;
}

.notice,
.admin-form section {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .72);
}

.notice {
  color: #050505;
  background: var(--gold);
  font-weight: 800;
}

.admin-form h2 {
  margin: 0 0 16px;
  color: var(--gold);
}

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

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  color: #fff;
  background: #111;
  padding: 12px;
  font: inherit;
}

.admin-form textarea {
  min-height: 150px;
  resize: vertical;
}

.profile-editor {
  display: grid;
  gap: 12px;
}

.profile-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr)) 110px;
  gap: 8px;
  align-items: center;
}

.profile-row .check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-row .check input {
  width: auto;
}

.save-btn {
  width: 100%;
  min-height: 58px;
  font-size: 20px;
}

@keyframes sweep {
  0%, 55% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes galleryShine {
  0%, 50% {
    transform: translateX(-130%);
  }
  78%, 100% {
    transform: translateX(130%);
  }
}

@keyframes badgeShine {
  0%, 45% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1280px) {
  .nav {
    gap: 15px;
    font-size: 16px;
  }

  .profiles,
  .seo-profiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mini-profile-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar {
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    width: auto;
    padding: 0 12px;
    font-size: 15px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px;
    background: #000;
  }

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

  .nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 210, 26, .18);
  }

  .hero {
    min-height: 0;
    padding: 32px 16px 0;
  }

  .breadcrumb {
    padding-inline: 16px;
  }

  .hero-inner,
  .split-layout,
  .seo-content,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .city-banner,
  .banner-fallback {
    min-height: 260px;
  }

  .section-shell {
    width: min(100% - 24px, 720px);
    padding-block: 42px;
  }

  .sidebar-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-nav h2 {
    grid-column: 1 / -1;
  }

  .city-search {
    grid-template-columns: minmax(0, 1fr) 60px;
    margin-bottom: 32px;
  }

  .hero-actions {
    gap: 12px;
  }

  .dream-panel,
  .filter-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 18px 34px;
  }

  .dream-panel h2,
  .dream-panel button {
    grid-column: auto;
  }

  .profiles,
  .seo-profiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 10px;
  }

  .article-grid,
  .trust-grid,
  .three-col {
    grid-template-columns: 1fr;
  }

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

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

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

  .admin-grid,
  .profile-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 72px;
    padding-inline: 14px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .intro-copy {
    font-size: 16px;
  }

  .hero-tag {
    font-size: 24px;
  }

  .profiles,
  .seo-profiles {
    grid-template-columns: 1fr;
  }

  .profile-image {
    min-height: 360px;
  }

  .hero-actions a,
  .contact-row a {
    width: 100%;
    min-width: 0;
  }

  .sidebar-nav,
  .mini-profile-row,
  .gallery-grid,
  .hot-gallery {
    grid-template-columns: 1fr;
  }

  .content-band {
    padding-inline: 18px;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .sticky-cta a {
    font-size: 18px;
  }
}
