:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --bg-elevated: #121110;
  --card: #151412;
  --gold: #c9a84c;
  --gold-mid: #dfc56e;
  --gold-soft: #f2e6a8;
  --gold-dim: rgba(201, 168, 76, 0.45);
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --line: rgba(201, 168, 76, 0.28);
  --line-strong: rgba(201, 168, 76, 0.55);
  --shadow-deep: 0 32px 64px rgba(0, 0, 0, 0.55);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Montserrat, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 168, 76, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(201, 168, 76, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 80%, rgba(201, 168, 76, 0.05), transparent 45%);
}

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

.site-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.88));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.55), transparent);
  opacity: 0.35;
  animation: navGoldPulse 5.5s ease-in-out infinite;
  pointer-events: none;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.38em;
  font-weight: 600;
  color: var(--gold-soft);
  font-size: clamp(18px, 2.4vw, 24px);
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
}

.links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c8c8c8;
}

.links a {
  position: relative;
  transition: color 0.35s var(--ease-out);
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid));
  transition: right 0.4s var(--ease-out);
}

.links a:hover {
  color: var(--gold-soft);
}

.links a:hover::after {
  right: 0;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding: 100px 0 72px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero--carousel {
  min-height: 100vh;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: visible;
  transition: opacity 1.2s ease-in-out;
  transform: none;
  z-index: 1;
  filter: none;
  mix-blend-mode: normal;
}

.hero--carousel .hero-slide {
  /* Slight zoom-out framing so storefront/building is more visible. */
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 168, 76, 0.6);
  background: rgba(8, 8, 8, 0.52);
  color: var(--gold-soft);
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

.hero-nav:hover {
  background: rgba(201, 168, 76, 0.22);
  border-color: var(--gold-soft);
  transform: translateY(-50%) scale(1.04);
}

.hero-nav--prev {
  left: 20px;
}

.hero-nav--next {
  right: 20px;
}

.hero--carousel .hero-nav {
  display: none !important;
}

.hero-arrow,
.slider-arrow,
.swiper-button-next,
.swiper-button-prev,
.slick-arrow {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.hero-arrow::before,
.hero-arrow::after,
.slider-arrow::before,
.slider-arrow::after,
.swiper-button-next::before,
.swiper-button-next::after,
.swiper-button-prev::before,
.swiper-button-prev::after,
.slick-arrow::before,
.slick-arrow::after {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  content: none !important;
}

#heroBanner,
#verifyHero {
  animation: heroBgPan 48s ease-in-out infinite alternate;
}

#sellHero.hero--carousel {
  animation: none;
  background-image: none !important;
}

#sellHero.hero--carousel .hero__layer {
  display: block;
  z-index: 3;
}

#sellHero.hero--carousel::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.78) 100%
  );
  z-index: 3;
}

#sellHero .hero-slide {
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 1.35s ease-in-out;
  transform: scale(1.06);
  will-change: opacity, transform;
}

#sellHero .hero-slide.is-active {
  animation: sellHeroKenBurns 7s ease-out forwards;
}

@keyframes sellHeroKenBurns {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.04);
  }
}

.hero__layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero--cinema {
  min-height: 88vh;
  align-items: center;
}

.hero--carousel.hero--cinema {
  min-height: 100vh;
}

.hero__layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__vignette {
  background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent 0%, rgba(5, 5, 5, 0.32) 70%, rgba(5, 5, 5, 0.72) 100%);
}

.hero__goldwash {
  background: linear-gradient(125deg, rgba(201, 168, 76, 0.12) 0%, transparent 42%, rgba(201, 168, 76, 0.06) 100%);
  animation: heroGoldDrift 14s ease-in-out infinite alternate;
}

.hero__gridlines {
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
}

.hero__shine {
  background: linear-gradient(105deg, transparent 40%, rgba(255, 250, 220, 0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: heroShine 7s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.hero--carousel::before {
  background: rgba(0, 0, 0, 0.3);
}

.hero--carousel .hero__layer {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  animation: fadeInUp 1s var(--ease-out) both;
}

.hero--cinema .hero-content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero .eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
  opacity: 0.95;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 10vw, 140px);
  margin: 0 0 20px;
  font-weight: 600;
  color: #eadca3;
  line-height: 0.95;
  letter-spacing: 4px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero--cinema h1 {
  letter-spacing: 0.02em;
}

.hero p {
  color: #dedede;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 17px);
}

.hero-subtitle {
  font-family: Montserrat, system-ui, sans-serif !important;
  font-size: clamp(17px, 2.1vw, 24px) !important;
  color: rgba(250, 250, 250, 0.96) !important;
  margin-bottom: 18px !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

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

.btn {
  border: 1px solid var(--line-strong);
  color: var(--gold-soft);
  background: rgba(10, 10, 10, 0.5);
  padding: 14px 22px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 600;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s, background 0.35s, color 0.35s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.18);
}

.btn.primary {
  background: linear-gradient(135deg, #f0dc8a, var(--gold) 55%, #a88b2e);
  color: #0a0a0a;
  border: none;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
}

.btn.primary:hover {
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.38);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: linear-gradient(165deg, rgba(22, 21, 18, 0.98), rgba(12, 12, 11, 0.99));
  border: 1px solid var(--line);
  padding: 26px;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: opacity 0.45s;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.section {
  padding: 72px 0;
  position: relative;
  z-index: 1;
}

.section--tight {
  padding: 56px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.04), transparent 40%);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.section h2,
.section-head {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-soft);
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-sub {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 300;
}

.muted {
  color: var(--muted);
  line-height: 1.85;
}

.gallery-photo {
  height: 280px;
  border: 1px solid var(--line);
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s var(--ease-out), filter 0.5s, box-shadow 0.5s;
  filter: saturate(1.04) contrast(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.gallery-photo:hover {
  transform: scale(1.025) translateY(-2px);
  filter: saturate(1.1) contrast(1.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 40px rgba(201, 168, 76, 0.08);
}

.about-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.about-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-deep);
}

.brand-auth {
  padding: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.02) 60%, transparent);
  position: relative;
  overflow: hidden;
}

.brand-auth::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 65%);
  pointer-events: none;
}

.brand-auth h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--gold-soft);
  position: relative;
  z-index: 1;
}

.wa-list {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 211, 102, 0.65);
  color: #5ef29a;
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: 0.3s var(--ease-out);
  background: rgba(37, 211, 102, 0.04);
}

.wa-btn:hover {
  background: #25d366;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.25);
}

#sellForm {
  scroll-margin-top: 96px;
}

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

.input,
.select,
.textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0a0a0a;
  color: var(--text);
  border: 1px solid #2a2a2a;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hidden {
  display: none !important;
}

.cert {
  background: linear-gradient(155deg, #131313, #0b0b0b);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(201, 168, 76, 0.13);
}

.cert h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-soft);
  font-size: 38px;
}

.badge-ok,
.badge-ng {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 2px;
}

.badge-ok {
  color: #7ef0a8;
  background: rgba(103, 216, 145, 0.12);
  border: 1px solid rgba(103, 216, 145, 0.35);
  animation: badgePulseOk 2.4s ease-in-out infinite;
}

.badge-ng {
  color: #ff9a9a;
  background: rgba(255, 124, 124, 0.1);
  border: 1px solid rgba(255, 124, 124, 0.35);
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  position: relative;
}

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

.stat-card {
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 17, 15, 0.95), rgba(8, 8, 8, 0.98));
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.stat-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.testimonial {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 11, 0.85);
  position: relative;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(201, 168, 76, 0.15);
}

.testimonial:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.testimonial p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: #d5d5d5;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.testimonial .who {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.authority-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.seal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.seal {
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: rgba(201, 168, 76, 0.05);
}

.cta-panel {
  padding: 48px 32px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(10, 10, 10, 0.95));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
  opacity: 0.35;
  animation: ctaGlow 5s ease-in-out infinite;
}

.cta-panel .inner {
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sell-form-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.sell-form-card {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

/* Sell page — buyout process steps */
.buyout-steps {
  padding-top: clamp(56px, 8vw, 80px);
  padding-bottom: clamp(56px, 8vw, 80px);
}

.buyout-steps__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.buyout-steps__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.buyout-steps__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.8vw, 52px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  margin: 0 0 14px;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(201, 168, 76, 0.12);
}

.buyout-steps__subtitle {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin: 0 auto;
  max-width: 28em;
  line-height: 1.65;
  opacity: 0.92;
}

.buyout-steps__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 28px);
}

.buyout-step {
  position: relative;
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 32px) clamp(24px, 3.2vw, 32px);
  background: linear-gradient(155deg, rgba(22, 21, 18, 0.98) 0%, rgba(10, 10, 9, 0.99) 100%);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 4px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(201, 168, 76, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.55s var(--ease-out),
    border-color 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out);
  overflow: hidden;
}

.buyout-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 38%,
    rgba(201, 168, 76, 0.05) 100%
  );
  opacity: 0.85;
}

.buyout-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.55),
    transparent
  );
  opacity: 0.7;
}

.buyout-step:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.52);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(201, 168, 76, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.buyout-step__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.buyout-step__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.buyout-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--gold-mid);
  opacity: 0.92;
}

.buyout-step__icon svg {
  width: 18px;
  height: 18px;
  display: block;
  filter: drop-shadow(0 0 5px rgba(201, 168, 76, 0.22));
}

.buyout-step__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  text-shadow: 0 0 28px rgba(201, 168, 76, 0.35);
}

.buyout-step__num::after {
  content: "—";
  display: inline-block;
  margin-left: 0.35em;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.55);
  text-shadow: none;
}

.buyout-step__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.35), transparent);
  opacity: 0.6;
}

.buyout-step__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 300;
  line-height: 1.82;
  letter-spacing: 0.02em;
  color: rgba(228, 220, 200, 0.92);
}

.buyout-steps__grid .buyout-step.reveal:nth-child(1) { transition-delay: 0s; }
.buyout-steps__grid .buyout-step.reveal:nth-child(2) { transition-delay: 0.08s; }
.buyout-steps__grid .buyout-step.reveal:nth-child(3) { transition-delay: 0.16s; }
.buyout-steps__grid .buyout-step.reveal:nth-child(4) { transition-delay: 0.24s; }

/* Sell page — showroom locations */
.showroom-locations {
  padding-top: clamp(56px, 8vw, 80px);
  padding-bottom: clamp(56px, 8vw, 80px);
}

.showroom-locations__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.showroom-locations__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.showroom-locations__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.8vw, 52px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  margin: 0;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(201, 168, 76, 0.12);
}

.showroom-locations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}

.showroom-location {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(22px, 3vw, 28px) clamp(20px, 2.8vw, 26px) clamp(24px, 3vw, 30px);
  text-decoration: none;
  color: inherit;
  background: linear-gradient(155deg, rgba(22, 21, 18, 0.98) 0%, rgba(10, 10, 9, 0.99) 100%);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 4px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(201, 168, 76, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.55s var(--ease-out),
    border-color 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out);
  overflow: hidden;
  cursor: pointer;
}

.showroom-location::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 42%,
    rgba(201, 168, 76, 0.06) 100%
  );
  opacity: 0.85;
}

.showroom-location::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.55), transparent);
  opacity: 0.7;
}

.showroom-location:hover,
.showroom-location:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(201, 168, 76, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  outline: none;
}

.showroom-location__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 14px;
}

.showroom-location__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.12);
}

.showroom-location__badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 10px;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-mid);
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.06);
}

.showroom-location__num {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  margin-bottom: 10px;
  text-shadow: 0 0 24px rgba(201, 168, 76, 0.3);
}

.showroom-location__num::after {
  content: "—";
  display: inline-block;
  margin-left: 0.35em;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.5);
  text-shadow: none;
}

.showroom-location__name {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold-soft);
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 0 18px rgba(201, 168, 76, 0.15);
}

.showroom-location__address {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 0 18px;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(12px, 1.4vw, 13px);
  font-weight: 300;
  line-height: 1.78;
  letter-spacing: 0.02em;
  color: rgba(228, 220, 200, 0.9);
  font-style: normal;
}

.showroom-location__cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  opacity: 0.9;
  transition: color 0.35s, opacity 0.35s;
}

.showroom-location:hover .showroom-location__cta,
.showroom-location:focus-visible .showroom-location__cta {
  color: var(--gold-soft);
  opacity: 1;
}

.showroom-locations__grid .showroom-location.reveal:nth-child(1) { transition-delay: 0s; }
.showroom-locations__grid .showroom-location.reveal:nth-child(2) { transition-delay: 0.08s; }
.showroom-locations__grid .showroom-location.reveal:nth-child(3) { transition-delay: 0.16s; }

/* Sell page — luxury showroom videos */
.showroom-videos {
  text-align: center;
}

.showroom-videos__eyebrow {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin: 0 0 12px;
}

.showroom-videos__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 14px;
  line-height: 1.15;
}

.showroom-videos__sub {
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(210, 198, 175, 0.92);
  max-width: 36em;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.showroom-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
}

.showroom-videos__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.38);
  background: #0a0a09;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(201, 168, 76, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out),
    border-color 0.55s var(--ease-out);
}

.showroom-videos__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.12);
  background: linear-gradient(
    180deg,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 35%,
    transparent 65%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.showroom-videos__frame:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 179, 106, 0.55);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.6),
    0 0 64px rgba(201, 168, 76, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.showroom-videos__player {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: #0c0c0b;
  pointer-events: none;
}

.showroom-videos__player::-webkit-media-controls {
  display: none !important;
}

.showroom-videos__player::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Sell page — cinematic lifestyle carousel (homepage hero style) */
.lifestyle-carousel-section {
  padding-bottom: 0;
  overflow: hidden;
}

.lifestyle-carousel-section__header {
  padding-bottom: 28px;
}

.lifestyle-carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(340px, 56vw, 640px);
  min-height: 320px;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.28);
  border-bottom: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(201, 168, 76, 0.12);
}

.lifestyle-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lifestyle-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  visibility: visible;
  transition: opacity 1.35s ease-in-out;
  transform: scale(1.08);
  will-change: opacity, transform;
}

.lifestyle-slide.is-active {
  opacity: 1;
  animation: lifestyleKenBurns 8s ease-out forwards;
}

@keyframes lifestyleKenBurns {
  from {
    transform: scale(1.14);
  }
  to {
    transform: scale(1.04);
  }
}

.lifestyle-carousel__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 65% at 50% 45%, transparent 0%, rgba(5, 5, 5, 0.35) 68%, rgba(5, 5, 5, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.65) 100%);
}

.lifestyle-carousel__goldwash {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(201, 168, 76, 0.14) 0%,
    transparent 42%,
    rgba(201, 168, 76, 0.08) 100%
  );
  animation: heroGoldDrift 14s ease-in-out infinite alternate;
}

.lifestyle-carousel__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 250, 220, 0.07) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: heroShine 7s ease-in-out infinite;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: rgba(201, 168, 76, 0.04);
  margin-top: 28px;
}

.trust-bar div {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.verify-shell {
  max-width: 960px;
  margin: 0 auto;
}

.verify-card {
  position: relative;
  border-radius: 4px;
  padding: 36px 32px 40px;
  background: linear-gradient(168deg, #141311 0%, #0a0a09 55%, #080807 100%);
  border: 1px solid rgba(201, 168, 76, 0.42);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 80px rgba(201, 168, 76, 0.06);
  overflow: hidden;
}

.verify-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-mid), transparent);
  opacity: 0.85;
}

.verify-card .a4-top h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-soft);
  font-size: clamp(26px, 3.5vw, 34px);
}

.qr-panel {
  padding: 20px;
  background: linear-gradient(180deg, #fff, #f4f4f4);
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.verify-lookup-card {
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(20, 19, 17, 0.98), #0a0a09);
  padding: 28px;
  box-shadow: var(--shadow-deep);
}

body.admin-page {
  min-height: 100vh;
}

.admin-page .admin-shell {
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.08), transparent 50%);
}

.admin-login-card {
  max-width: 480px;
  width: 100%;
  border: 1px solid var(--line-strong);
  background: linear-gradient(165deg, #161513, #0c0c0b);
  padding: 36px;
  box-shadow: var(--shadow-deep);
}

.admin-login-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-soft);
  margin-top: 0;
}

.admin-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  border: 1px solid var(--line);
  padding: 6px 10px;
  margin-bottom: 14px;
}

.admin-dash-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.admin-dash-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-soft);
  font-size: 28px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #0a0a09;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 720px;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.admin-table th {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: rgba(201, 168, 76, 0.06);
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.admin-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn--sm {
  padding: 8px 12px;
  font-size: 9px;
}

.btn--danger {
  border-color: rgba(255, 120, 120, 0.45);
  color: #ff9a9a;
}

.btn--danger:hover {
  background: rgba(255, 100, 100, 0.15);
  color: #ffcfcf;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
}

.admin-preview-card {
  border: 1px solid var(--line);
  padding: 20px;
  background: linear-gradient(165deg, #141311, #0a0a09);
  position: sticky;
  top: 88px;
}

.admin-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.72);
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}

.admin-loading__box {
  padding: 24px 32px;
  border: 1px solid var(--line);
  background: #10100f;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.admin-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin: 0 auto 14px;
}

#toastHost {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  padding: 14px 18px;
  font-size: 12px;
  border: 1px solid var(--line);
  background: rgba(18, 17, 15, 0.96);
  color: #e8e8e8;
  box-shadow: var(--shadow-deep);
  animation: toastIn 0.45s var(--ease-out) both;
}

.toast--ok {
  border-color: rgba(103, 216, 145, 0.45);
  color: #b8f5cf;
}

.toast--err {
  border-color: rgba(255, 140, 140, 0.45);
  color: #ffc9c9;
}

.mono {
  font-family: "Courier New", monospace;
  letter-spacing: 0.08em;
}

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

@keyframes heroGoldDrift {
  from {
    transform: translateX(-4%) scale(1.02);
  }
  to {
    transform: translateX(4%) scale(1.05);
  }
}

@keyframes heroShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes badgePulseOk {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(103, 216, 145, 0.25);
  }
  50% {
    box-shadow: 0 0 24px 2px rgba(103, 216, 145, 0.12);
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-20%);
  }
  50% {
    opacity: 0.45;
    transform: translateX(20%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes heroBgPan {
  from {
    background-position: 46% 48%;
  }
  to {
    background-position: 54% 52%;
  }
}

@keyframes navGoldPulse {
  0%,
  100% {
    opacity: 0.22;
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.15));
  }
  50% {
    opacity: 0.55;
    filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.35));
  }
}

@media (prefers-reduced-motion: reduce) {
  #heroBanner,
  #sellHero,
  #verifyHero {
    animation: none !important;
  }

  #sellHero .hero-slide.is-active {
    animation: none !important;
    transform: none !important;
  }

  .nav::after,
  .hero__goldwash,
  .hero__shine,
  .cta-panel::before {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2,
  .about-block,
  .authority-split,
  .showroom-videos__grid,
  .buyout-steps__grid,
  .showroom-locations__grid,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .showroom-locations__header {
    margin-bottom: 28px;
  }

  .showroom-location {
    padding: 22px 20px 24px;
  }

  .showroom-location__top {
    gap: 10px;
    margin-bottom: 12px;
  }

  .showroom-location__icon {
    width: 32px;
    height: 32px;
  }

  .showroom-location__name {
    font-size: 15px;
    letter-spacing: 0.03em;
  }

  .buyout-steps__header {
    margin-bottom: 28px;
  }

  .buyout-step {
    padding: 22px 20px 24px;
  }

  .buyout-step__head {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .buyout-step__label {
    gap: 8px;
  }

  .buyout-step__icon {
    width: 24px;
    height: 24px;
  }

  .buyout-step__icon svg {
    width: 16px;
    height: 16px;
  }

  .showroom-videos__frame {
    aspect-ratio: 16 / 10;
  }

  .lifestyle-carousel-wrap {
    height: clamp(300px, 72svh, 520px);
    min-height: 280px;
    max-height: 72svh;
  }

  .lifestyle-slide {
    background-size: cover;
    background-position: center 42% !important;
  }

  .lifestyle-slide.is-active {
    animation-duration: 9s;
  }

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

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

  .gallery-photo {
    height: 220px;
  }

  .hero,
  .hero--cinema {
    min-height: 70vh;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(54px, 14vw, 86px);
    line-height: 1.02;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
  }

  .hero .hero-content > p:last-of-type {
    line-height: 1.85;
    margin-top: 0;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .hero-nav--prev {
    left: 10px;
  }

  .hero-nav--next {
    right: 10px;
  }

  .admin-preview-card {
    position: static;
  }

  #toastHost {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

/* =============================================================================
   MOBILE HOMEPAGE HERO — forced layout (max-width: 768px)
   Source HTML: index.html
   <section id="heroBanner" class="hero hero--cinema hero--carousel"> …
     <div class="hero-carousel" id="heroCarousel"> .hero-slide …
     <div class="site-wrap hero-content">
       <p class="eyebrow">, <h1>, <p class="hero-subtitle">, <p>, <div class="hero-actions"><a class="btn">…
   Linked CSS: index.html → href="styles.css"
   ============================================================================= */
@media (max-width: 768px) {
  #heroBanner.hero.hero--cinema.hero--carousel {
    display: grid !important;
    min-height: 72svh !important;
    min-height: 72dvh !important;
    padding-top: max(7.25rem, calc(4.75rem + env(safe-area-inset-top, 0px))) !important;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px)) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    align-items: center !important;
    justify-items: stretch !important;
    box-sizing: border-box !important;
  }

  #heroBanner.hero--carousel::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.88) 100%
    ) !important;
    z-index: 3 !important;
  }

  #heroBanner .hero-carousel {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
  }

  #heroBanner.hero--cinema .hero-content.site-wrap,
  #heroBanner.hero--cinema .hero-content {
    position: relative !important;
    z-index: 4 !important;
    max-width: min(22.5rem, calc(100vw - 2rem)) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: max(1rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1rem, env(safe-area-inset-right, 0px)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  #heroBanner .hero-content .eyebrow {
    margin: 0 0 1.125rem !important;
    font-size: 9px !important;
    letter-spacing: 0.3em !important;
    line-height: 1.6 !important;
    text-transform: uppercase !important;
    color: var(--gold-mid) !important;
    opacity: 0.95 !important;
  }

  #heroBanner.hero h1,
  #heroBanner .hero-content > h1 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(1.625rem, 6.5vw, 2.25rem) !important;
    line-height: 1.12 !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
    color: #eadca3 !important;
    margin: 0 0 0.875rem !important;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.55) !important;
  }

  #heroBanner .hero-content > .hero-subtitle {
    font-family: Montserrat, system-ui, sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.025em !important;
    line-height: 1.65 !important;
    color: rgba(245, 245, 245, 0.95) !important;
    margin: 0 0 0.75rem !important;
    max-width: 20.5rem !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5) !important;
  }

  #heroBanner .hero-content > p:not(.eyebrow):not(.hero-subtitle) {
    font-family: Montserrat, system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 300 !important;
    line-height: 1.72 !important;
    color: #d4d4d4 !important;
    margin: 0 !important;
    max-width: 20.5rem !important;
  }

  #heroBanner .hero-content > .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 17.25rem !important;
    margin: 1.5rem auto 0 !important;
    padding: 0 !important;
  }

  #heroBanner .hero-content > .hero-actions .btn {
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 18px !important;
    box-sizing: border-box !important;
    flex: none !important;
    max-width: none !important;
  }

  #sellHero.hero.hero--cinema.hero--carousel {
    display: grid !important;
    min-height: 72svh !important;
    min-height: 72dvh !important;
    padding-top: max(7.25rem, calc(4.75rem + env(safe-area-inset-top, 0px))) !important;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px)) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    align-items: center !important;
    justify-items: stretch !important;
    box-sizing: border-box !important;
  }

  #sellHero.hero--carousel::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.88) 100%
    ) !important;
    z-index: 3 !important;
  }

  #sellHero .hero-carousel {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
  }

  #sellHero .hero-slide {
    background-size: cover !important;
    background-position: center 42% !important;
  }

  #sellHero .hero-slide.is-active {
    animation-duration: 9s;
  }

  #sellHero.hero--cinema .hero-content.site-wrap,
  #sellHero.hero--cinema .hero-content {
    position: relative !important;
    z-index: 4 !important;
    max-width: min(22.5rem, calc(100vw - 2rem)) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: max(1rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1rem, env(safe-area-inset-right, 0px)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  #sellHero .hero-content .eyebrow {
    margin: 0 0 1.125rem !important;
    font-size: 9px !important;
    letter-spacing: 0.3em !important;
    line-height: 1.6 !important;
    text-transform: uppercase !important;
    color: var(--gold-mid) !important;
    opacity: 0.95 !important;
  }

  #sellHero.hero h1,
  #sellHero .hero-content > h1 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(1.625rem, 6.5vw, 2.25rem) !important;
    line-height: 1.12 !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
    color: #eadca3 !important;
    margin: 0 0 0.875rem !important;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.55) !important;
  }

  #sellHero .hero-content > p:not(.eyebrow) {
    font-family: Montserrat, system-ui, sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 300 !important;
    line-height: 1.72 !important;
    color: #d4d4d4 !important;
    margin: 0 !important;
    max-width: 20.5rem !important;
  }

  #sellHero .hero-content > .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 17.25rem !important;
    margin: 1.5rem auto 0 !important;
    padding: 0 !important;
  }

  #sellHero .hero-content > .hero-actions .btn {
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 18px !important;
    box-sizing: border-box !important;
    flex: none !important;
    max-width: none !important;
  }
}

/* --- Verify page (screen only): Android-safe layout + readable certificate fields --- */
@media screen {
  body.lwl-verify-page {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  #verifyCertSection,
  #verifyCertSection .verify-shell {
    min-width: 0;
    max-width: 100%;
  }

  #printCert.a4-cert {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-left: max(6px, env(safe-area-inset-left, 0px));
    padding-right: max(6px, env(safe-area-inset-right, 0px));
  }

  #printCert .verify-card {
    overflow: visible;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  #printCert .cert-body,
  #printCert .cert-image-col,
  #printCert .cert-details,
  #printCert .cert-print-strip {
    min-width: 0;
    max-width: 100%;
  }

  #printCert .cert-print-strip {
    flex-wrap: wrap;
    gap: clamp(12px, 3vw, 20px);
  }

  #printCert .cert-qr-cluster {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 0;
    max-width: 100%;
    flex-shrink: 0;
  }

  #printCert .cert-qr-wrap {
    box-sizing: border-box;
    width: fit-content;
    max-width: min(300px, 100%);
    min-width: 0;
  }

  #printCert .verify-card #cImage.gallery-photo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 360px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
  }

  #printCert #qrBox.qr-panel,
  #printCert #qrBox {
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: clamp(104px, 34vw, 148px);
    padding: clamp(8px, 2.5vw, 18px);
    margin: 0;
    overflow: hidden;
  }

  #printCert #qrBox img,
  #printCert #qrBox canvas {
    display: block !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    flex-shrink: 0;
  }

  #printCert .verify-card .a4-top .muted {
    color: rgba(200, 190, 172, 0.92);
  }

  #printCert .verify-card .cert-seal-line {
    color: #e0c178;
  }

  #printCert .verify-card .cert-archive-micro {
    color: rgba(198, 188, 168, 0.9);
  }

  #printCert .verify-card .cert-terms__eyebrow {
    color: #dfc56e;
    opacity: 1;
  }

  #printCert .verify-card .a4-top .k,
  #printCert .verify-card .cert-qr-wrap .k,
  #printCert .verify-card .line .k {
    color: #d6b36a;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  }

  #printCert .verify-card .cert-details .line .v,
  #printCert .verify-card .notes-compact .v {
    color: #d6b36a !important;
    opacity: 1 !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.58;
    max-height: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow:
      0 0 1px rgba(214, 179, 106, 0.95),
      0 0 22px rgba(214, 179, 106, 0.28),
      0 1px 0 rgba(0, 0, 0, 0.9),
      0 2px 8px rgba(0, 0, 0, 0.75);
  }

  #printCert #cId {
    color: #d6b36a !important;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.06em;
    opacity: 1 !important;
    text-shadow:
      0 0 1px rgba(214, 179, 106, 0.95),
      0 0 20px rgba(214, 179, 106, 0.3),
      0 1px 0 rgba(0, 0, 0, 0.9),
      0 2px 8px rgba(0, 0, 0, 0.75);
  }

  #printCert .verify-card .cert-terms__list li {
    color: rgba(248, 242, 228, 0.94);
  }

  #printCert .verify-card .cert-terms__sub {
    color: rgba(210, 198, 175, 0.92);
  }

  @media (max-width: 900px) {
    #printCert .cert-qr-cluster {
      align-items: flex-start;
      width: 100%;
    }

    #printCert .cert-qr-wrap {
      width: 100%;
      max-width: 280px;
      margin-inline: 0;
    }
  }

  @media (max-width: 520px) {
    #printCert .verify-card #cImage.gallery-photo {
      min-height: 180px;
      max-height: 320px;
      aspect-ratio: 3 / 2;
    }

    #printCert .verify-card .cert-details .line .v,
    #printCert .verify-card .notes-compact .v {
      font-size: 13.5px;
    }
  }
}

@media print {
  .no-print {
    display: none !important;
  }
}
