@font-face {
  font-family: "CinzelVar";
  src: url("./assets/fonts/cinzel/Cinzel-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-weight: 400 900;
}

:root {
  --bg: #080605;
  --surface: #130d0c;
  --surface-alt: #1a1211;
  --gold: #d5b269;
  --gold-soft: #f3dfaa;
  --gold-deep: #b78c3f;
  --gold-rgb: 213, 178, 105;
  --wine: #5d2430;
  --text: #f5efe8;
  --text-dim: rgba(245, 239, 232, 0.74);
  --line: rgba(var(--gold-rgb), 0.2);
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(5, 4, 4, 0.6), rgba(5, 4, 4, 0.88)),
    radial-gradient(circle at top, rgba(var(--gold-rgb), 0.2), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(122, 51, 66, 0.18), transparent 28%),
    linear-gradient(180deg, #050404 0%, #0a0605 42%, #050404 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background:
    linear-gradient(90deg, rgba(5, 4, 4, 0.88) 0%, rgba(5, 4, 4, 0.3) 44%, rgba(5, 4, 4, 0.88) 100%),
    url("./assets/brand/blooms-247-cover-image.png") center 7rem / min(1500px, 145vw) auto no-repeat;
  filter: blur(8px) saturate(1.12);
  transform: scale(1.04);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 235, 186, 0.42) 1px, transparent 0);
  background-size: 16px 16px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 80%);
  z-index: 0;
}

.bg-orb {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.bg-orb-gold {
  right: -12rem;
  top: -10rem;
  background: radial-gradient(circle, var(--gold), transparent 65%);
}

.bg-orb-wine {
  left: -12rem;
  bottom: 0;
  background: radial-gradient(circle, var(--wine), transparent 65%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 2.4rem;
}

.panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%),
    linear-gradient(150deg, rgba(var(--gold-rgb), 0.07), rgba(93, 36, 48, 0.08)),
    rgba(20, 12, 11, 0.74);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.topbar {
  position: sticky;
  top: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: blur(10px);
  z-index: 9;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1060px);
  min-height: 72px;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 58%, var(--gold-deep) 100%);
  border: 1px solid rgba(255, 238, 190, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 22px 54px rgba(0, 0, 0, 0.34);
  text-decoration: none;
}

.brand-logo {
  width: min(360px, 64vw);
  height: auto;
  filter: none;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.38rem;
  width: min(100%, 1010px);
  overflow-x: auto;
  padding: 0.32rem;
  border-radius: 999px;
  background: rgba(9, 6, 5, 0.78);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  scrollbar-width: none;
}

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

.nav-list a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  white-space: nowrap;
  text-transform: uppercase;
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  background: rgba(255, 255, 255, 0.045);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active {
  background: rgba(var(--gold-rgb), 0.2);
  color: var(--gold-soft);
  border-color: rgba(var(--gold-rgb), 0.46);
  outline: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.7rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  color: #281807;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  box-shadow: 0 18px 30px rgba(var(--gold-rgb), 0.26);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(var(--gold-rgb), 0.26);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  margin-top: 1rem;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: center;
}

.hero--cover {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  padding: 0;
  grid-template-columns: 1fr;
  background-color: #080605;
}

.hero--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/brand/blooms-247-cover-image.png") 68% center / auto 100% no-repeat;
  filter: blur(1px) saturate(1.14);
  transform: scale(1.015);
  opacity: 1;
  z-index: 0;
}

.hero--cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 5, 5, 0.62) 0%, rgba(7, 5, 5, 0.22) 50%, rgba(7, 5, 5, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 5, 5, 0.04) 0%, rgba(7, 5, 5, 0.62) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 78vh;
  width: min(700px, 100%);
  padding: 48px;
  background: linear-gradient(180deg, rgba(8, 6, 5, 0.02) 0%, rgba(8, 6, 5, 0.48) 100%);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--gold-soft);
}

h1,
h2 {
  margin: 0.5rem 0 0;
  font-family: "CinzelVar", "Cinzel", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  color: var(--gold-soft);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.02;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

h2 {
  color: var(--gold);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
}

.lede {
  margin: 1rem 0 0;
  color: var(--text-dim);
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-chips {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art img {
  width: min(230px, 44vw);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.4));
  opacity: 0.96;
}

.section-block {
  margin-top: 1.15rem;
  padding: 1.6rem;
}

.section-head p {
  margin: 0.6rem 0 0;
  color: var(--text-dim);
  line-height: 1.7;
}

p,
li,
label,
input,
textarea,
button,
a,
small,
span {
  font-family: "Segoe UI", Inter, Arial, sans-serif;
}

.page-hero {
  margin-top: 1rem;
  padding: 1.8rem;
}

.page-hero p {
  margin: 0.8rem 0 0;
  color: var(--text-dim);
  max-width: 68ch;
  line-height: 1.65;
}

.legal-page .page-hero,
.legal-page .section-block {
  min-width: 0;
  overflow: hidden;
}

.legal-page .page-hero h1,
.legal-page .section-block h2,
.legal-page .section-block p,
.legal-page .section-block li {
  max-width: 100%;
  overflow-wrap: break-word;
}

.feature-grid,
.services-grid,
.contact-grid,
.partner-grid,
.footer-grid,
.stats-grid,
.policy-links {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.feature-grid,
.services-grid,
.partner-grid,
.policy-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

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

.footer-grid {
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  align-items: start;
}

.info-card,
.footer-card {
  border-radius: 22px;
  border: 1px solid rgba(207, 171, 98, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%),
    rgba(18, 12, 11, 0.82);
  padding: 1.15rem;
}

.info-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card h3 {
  min-height: 2.6em;
}

.info-card h3,
.footer-card h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: 1rem;
}

.info-card p,
.footer-card p,
.footer-card li,
.policy-links li,
.meta {
  margin: 0.7rem 0 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.info-card ul,
.footer-card ul,
.policy-links ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-dim);
}

.info-card li + li,
.footer-card li + li,
.policy-links li + li {
  margin-top: 0.45rem;
}

.info-card a,
.footer-card a,
.policy-links a,
.text-link {
  color: var(--gold-soft);
  text-decoration: none;
}

.info-card a:hover,
.footer-card a:hover,
.policy-links a:hover,
.text-link:hover {
  text-decoration: underline;
}

.info-card a.card-cta,
.footer-card a.card-cta,
.policy-links a.card-cta,
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: auto;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 171, 98, 0.42);
  background: linear-gradient(180deg, rgba(240, 220, 167, 0.18), rgba(207, 171, 98, 0.08));
  color: var(--gold-soft) !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.info-card a.card-cta::after,
.footer-card a.card-cta::after,
.policy-links a.card-cta::after,
.card-cta::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.info-card a.card-cta:hover,
.info-card a.card-cta:focus-visible,
.footer-card a.card-cta:hover,
.footer-card a.card-cta:focus-visible,
.policy-links a.card-cta:hover,
.policy-links a.card-cta:focus-visible,
.card-cta:hover,
.card-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 220, 167, 0.62);
  background: linear-gradient(180deg, rgba(240, 220, 167, 0.26), rgba(207, 171, 98, 0.14));
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.22);
  text-decoration: none !important;
}

.stat-card {
  border-radius: 22px;
  border: 1px solid rgba(207, 171, 98, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%),
    rgba(18, 12, 11, 0.82);
  padding: 1rem;
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-family: "CinzelVar", "Cinzel", Georgia, serif;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.section-stack {
  display: grid;
  gap: 1rem;
}

.form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.partner-logo-card {
  display: grid;
  place-items: center;
  width: 100%;
  height: 168px;
  min-height: 168px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(207, 171, 98, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(8, 8, 8, 0.58);
  padding: 1.2rem;
  text-align: center;
}

.partner-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-logo-card--vicinity img {
  width: min(62%, 150px);
  height: auto;
  max-height: 136px;
}

.partner-logo-card--paytech img {
  width: min(96%, 270px);
  height: auto;
  max-height: 126px;
  padding: 0;
  object-position: center;
}

.partner-logo-card--nayax img {
  width: min(98%, 300px);
  height: auto;
  max-height: 96px;
  padding: 0;
}

.partner-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.partner-card {
  display: grid;
  gap: 1rem;
}

.partner-highlights {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.partner-highlights span {
  border: 1px solid rgba(207, 171, 98, 0.18);
  border-radius: 999px;
  padding: 0.5rem 0.82rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
}

.partner-logo-card span {
  display: block;
  color: var(--text);
  font-family: "CinzelVar", "Cinzel", Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-logo-card strong {
  display: block;
  margin-top: 0.18rem;
  color: var(--gold-soft);
  font-family: "CinzelVar", "Cinzel", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-logo-card small {
  display: block;
  margin-top: 0.4rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-logo-card--vicinity {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.partner-logo-card--vicinity div,
.partner-logo-card--paytech div,
.partner-logo-card--nayax div {
  width: 100%;
}

.partner-logo-card--vicinity span {
  color: #f5f5f0;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: 0.04em;
  text-transform: none;
}

.partner-logo-card--vicinity strong {
  color: var(--gold-soft);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.partner-logo-card--paytech {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.partner-logo-card--paytech span {
  color: var(--gold-soft);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.partner-logo-card--paytech strong {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.18em;
}

.partner-logo-card--nayax {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.partner-logo-card--nayax span {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
  text-transform: none;
}

.partner-logo-card--nayax strong {
  color: var(--gold-soft);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  letter-spacing: 0.24em;
}

.partner-card .info-card {
  padding-top: 1.2rem;
}

.partner-role {
  margin-top: 0.45rem;
  color: var(--gold-soft) !important;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer {
  margin-top: 1.1rem;
}

.footer-card ul {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0.95rem 0 0;
}

.footer-card li {
  margin: 0;
  list-style: none;
  padding: 0;
}

.footer-card li::marker,
.footer-card li::before {
  content: none;
}

.footer-meta {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(207, 171, 98, 0.16);
  color: rgba(243, 243, 241, 0.6);
  font-size: 0.9rem;
  text-align: center;
}

.footer-meta a {
  color: var(--gold-soft);
  text-decoration: none;
  margin: 0 0.4rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.footer-socials--center {
  justify-content: center;
  width: 100%;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 171, 98, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.footer-whatsapp {
  min-width: 9rem;
  justify-content: center;
  margin-inline: auto;
}

.whatsapp-chat {
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.6rem);
  bottom: clamp(1rem, 2.2vw, 1.6rem);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #25d366;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.whatsapp-chat::before,
.whatsapp-chat::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.38);
  animation: whatsapp-pulse 2s ease-out infinite;
}

.whatsapp-chat::after {
  animation-delay: 1s;
}

.whatsapp-chat:hover,
.whatsapp-chat:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.44);
  outline: none;
}

.whatsapp-chat i {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 2rem;
}

.whatsapp-chat span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.82);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

.footer-card {
  min-height: 100%;
  text-align: center;
}

.footer-card ul {
  justify-items: center;
}

.eyebrow-link {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--gold-soft);
}

.gallery-video {
  margin-top: 1rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(207, 171, 98, 0.2);
  background: rgba(0, 0, 0, 0.4);
}

.gallery-video video {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
}

.video-watch-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(207, 171, 98, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.location-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(207, 171, 98, 0.18);
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.location-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(207, 171, 98, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%),
    rgba(18, 12, 11, 0.82);
}

.location-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--gold-soft);
}

.location-live {
  margin: 0.45rem 0 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.location-copy h3 {
  margin: 0.45rem 0 0;
  font-family: "CinzelVar", "Cinzel", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  color: var(--gold);
}

.location-address {
  margin: 0.8rem 0 0;
  color: var(--text);
  line-height: 1.6;
}

.location-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.84rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
}

.location-actions {
  margin-top: 1rem;
}

.map-embed-wrap {
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(207, 171, 98, 0.2);
  background: rgba(0, 0, 0, 0.4);
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

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

.signup-slogan {
  margin-top: 0.45rem;
  color: var(--gold-soft);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.emotional-line {
  margin: 0.9rem auto 0;
  text-align: center;
  max-width: 48ch;
  color: var(--text-dim);
  font-size: 1rem;
}

.waitlist-form {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(207, 171, 98, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%),
    rgba(18, 12, 11, 0.82);
}

.waitlist-form--narrow {
  max-width: 620px;
  margin: 1rem auto 0;
}

.waitlist-form label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.waitlist-form .field-control {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(207, 171, 98, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.72rem 0.75rem;
  font: inherit;
  line-height: 1.35;
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.waitlist-form textarea.field-control {
  resize: vertical;
  min-height: 110px;
}

.waitlist-form .field-control::placeholder {
  color: rgba(243, 243, 241, 0.44);
}

.waitlist-form .field-control:focus {
  border-color: rgba(240, 220, 167, 0.52);
  box-shadow: 0 0 0 2px rgba(240, 220, 167, 0.22);
  outline: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.consent input {
  margin-top: 0.2rem;
}

.form-help {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(243, 243, 241, 0.6);
}

.form-help a {
  color: var(--gold-soft);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.social-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.social-grid a {
  text-decoration: none;
  text-align: center;
  padding: 0.7rem;
  border-radius: 18px;
  border: 1px solid rgba(207, 171, 98, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.social-grid a:hover {
  border-color: rgba(240, 220, 167, 0.5);
  transform: translateY(-1px);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-grid;
  place-items: center;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

code {
  color: var(--gold-soft);
}

.landing-page {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.3rem;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(132, 26, 39, 0.28), transparent 32%),
    linear-gradient(130deg, rgba(5, 4, 4, 0.86) 0%, rgba(5, 4, 4, 0.66) 58%, rgba(5, 4, 4, 0.28) 100%);
  pointer-events: none;
  z-index: 0;
}

.landing-hero-copy,
.landing-hero-visual {
  position: relative;
  z-index: 1;
}

.landing-hero-copy {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
}

.landing-hero h1 {
  margin: 0;
  max-width: 740px;
  font-family: "CinzelVar", Georgia, serif;
  font-size: clamp(3rem, 11vw, 7.5rem);
  line-height: 0.9;
  color: var(--gold-soft);
  text-transform: uppercase;
}

.landing-hero-kicker {
  margin: 0.25rem 0 1rem;
  font-family: "CinzelVar", Georgia, serif;
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: 0.9;
  color: var(--gold);
  text-transform: uppercase;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.landing-hero-visual {
  border-radius: 20px;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.landing-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.conversion-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem;
}

.conversion-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: var(--gold-soft);
  border: 1px solid rgba(var(--gold-rgb), 0.24);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 700;
}

.landing-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.landing-location-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  background:
    linear-gradient(145deg, rgba(var(--gold-rgb), 0.08), rgba(93, 36, 48, 0.12)),
    rgba(255, 255, 255, 0.03);
}

.location-card--live {
  border-color: rgba(var(--gold-rgb), 0.44);
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb), 0.12);
}

.location-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-status--live {
  color: #2a1707;
  background: var(--gold);
}

.location-status--soon {
  color: var(--text);
  background: rgba(151, 36, 45, 0.86);
}

.landing-location-card h3,
.value-card h3 {
  margin-top: 0;
}

.landing-map {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.landing-map iframe {
  display: block;
  width: 100%;
  min-height: min(74vh, 520px);
  border: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.value-card {
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.value-card i {
  color: var(--gold);
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.landing-contact-cta {
  text-align: center;
}

.catalogue-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  align-items: stretch;
  gap: 1.2rem;
  overflow: hidden;
  padding: clamp(1.1rem, 2.5vw, 2rem);
}

.catalogue-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(68vh, 620px);
  padding: clamp(1.2rem, 4vw, 3.3rem);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(var(--gold-rgb), 0.16), transparent 34%),
    linear-gradient(140deg, rgba(151, 36, 45, 0.2), rgba(255, 255, 255, 0.025) 46%),
    rgba(0, 0, 0, 0.2);
}

.catalogue-hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: "CinzelVar", Georgia, serif;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.9;
  color: var(--gold);
  text-transform: uppercase;
}

.catalogue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.catalogue-hero-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(var(--gold-rgb), 0.26);
  background:
    radial-gradient(circle at center, rgba(var(--gold-rgb), 0.18), transparent 48%),
    #120d0c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.catalogue-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

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

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  background:
    linear-gradient(155deg, rgba(var(--gold-rgb), 0.08), rgba(151, 36, 45, 0.12) 48%, rgba(0, 0, 0, 0.18)),
    rgba(255, 255, 255, 0.032);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 0.88;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(var(--gold-rgb), 0.18), transparent 56%),
    #0f0b0a;
}

.product-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(18, 13, 12, 0.78));
  pointer-events: none;
}

.product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.035);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.1rem;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.36rem 0.62rem;
  color: #1e120c;
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: 1.35rem;
  line-height: 1.15;
}

.product-category {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-body p:not(.product-category) {
  margin: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.product-price {
  color: var(--text);
  font-size: 1.18rem;
}

.catalogue-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.catalogue-links h2 {
  margin-top: 0;
}

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

  .hero-content {
    width: 100%;
    padding: 28px 24px;
  }

  .hero-art {
    justify-content: flex-start;
  }

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

  .feature-grid,
  .partner-grid,
  .partner-showcase,
  .policy-links,
  .stats-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .landing-location-grid,
  .value-grid,
  .catalogue-hero,
  .catalogue-grid,
  .catalogue-links {
    grid-template-columns: 1fr;
  }

  .catalogue-links {
    display: grid;
  }
}

@media (max-width: 640px) {
  body::before {
    opacity: 0.24;
    filter: none;
    transform: none;
    background:
      linear-gradient(90deg, rgba(5, 4, 4, 0.7) 0%, rgba(5, 4, 4, 0.2) 48%, rgba(5, 4, 4, 0.7) 100%);
  }

  .bg-orb {
    display: none;
  }

  .shell {
    width: calc(100% - 1rem);
  }

  .topbar {
    justify-content: center;
    padding: 0;
    backdrop-filter: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .panel {
    backdrop-filter: none;
  }

  .brand-link {
    min-height: 62px;
    padding: 0.7rem 1.2rem;
  }

  .brand-logo {
    width: min(250px, 72vw);
  }

  .nav-list {
    justify-content: flex-start;
    border-radius: 999px;
    padding: 0.35rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .nav-list a {
    min-width: auto;
    padding: 0.6rem 0.74rem;
    font-size: 0.68rem;
    letter-spacing: 0.035em;
  }

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

  .hero--cover,
  .hero-content {
    min-height: 620px;
  }

  .landing-hero {
    padding: 0.8rem;
  }

  .landing-hero-copy {
    min-height: 430px;
    padding: 1.2rem;
  }

  .landing-actions .btn {
    width: 100%;
  }

  .video-watch-actions .btn {
    width: 100%;
  }

  .legal-page .page-hero,
  .legal-page .section-block {
    padding: 1.25rem;
  }

  .legal-page .page-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  .legal-page .section-block h2 {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
    line-height: 1.16;
  }

  .catalogue-hero {
    padding: 0.8rem;
  }

  .catalogue-hero-copy {
    min-height: 430px;
    padding: 1.2rem;
  }

  .catalogue-hero-visual,
  .catalogue-hero-visual img {
    min-height: 330px;
  }

  .catalogue-actions .btn {
    width: 100%;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (min-width: 921px) {
  .landing-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .landing-hero-visual {
    min-height: 520px;
  }

  .landing-hero-visual img {
    min-height: 520px;
  }
}
