:root {
  --bg: #050505;
  --bg-soft: #0d0b09;
  --panel: rgba(26, 18, 12, 0.72);
  --panel-strong: rgba(18, 12, 8, 0.92);
  --line: rgba(255, 205, 137, 0.18);
  --gold-1: #ffe2b1;
  --gold-2: #ffbf69;
  --gold-3: #a4662d;
  --text: #f9eee0;
  --muted: #ccb79d;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 184, 90, 0.09), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(255, 130, 40, 0.08), transparent 28%),
    linear-gradient(180deg, #060606 0%, #0b0908 48%, #050505 100%);
  overflow-x: hidden;
}

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

.noise,
.orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.orb {
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: drift 16s ease-in-out infinite;
}
.orb-1 { top: -10rem; left: -10rem; background: #ffb257; }
.orb-2 { top: 18rem; right: -12rem; background: #7c471f; animation-delay: -5s; }
.orb-3 { bottom: -14rem; left: 30%; background: #c98d48; animation-delay: -9s; }

.topbar,
.hero,
.showcase,
.location,
.footer {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.topbar {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold-1);
}

.brand-mini-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-1), var(--gold-2) 58%, #7a491d 100%);
  box-shadow: 0 0 18px rgba(255, 184, 90, 0.8);
}

.top-link {
  color: var(--muted);
  font-size: 14px;
  transition: color .25s ease, transform .25s ease;
}
.top-link:hover { color: var(--gold-1); transform: translateY(-1px); }

.hero {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 42px;
  align-items: center;
  padding: 44px 0 26px;
}

.hero-copy,
.hero-visual,
.showcase-card,
.location-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(31, 21, 14, 0.65), rgba(10, 8, 7, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 46px;
  border-radius: var(--radius-lg);
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.eyebrow-line {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), var(--gold-2));
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .92;
  letter-spacing: -0.03em;
}

.hero-copy h1 span {
  display: block;
  color: var(--gold-1);
  text-shadow: 0 0 22px rgba(255, 184, 90, 0.14);
}

.hero-copy p,
.showcase-copy p,
.location-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #120b06;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 16px 38px rgba(255, 184, 90, 0.22);
}

.btn-secondary {
  color: var(--gold-1);
  border-color: var(--line);
  background: rgba(255,255,255,0.02);
}
.btn-secondary:hover { border-color: rgba(255, 205, 137, 0.32); }

.meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meta-list li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 205, 137, 0.08);
}

.meta-list strong,
.meta-list span {
  display: block;
}

.meta-list strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-2);
  margin-bottom: 8px;
}

.meta-list span {
  font-size: 14px;
  color: var(--text);
}

.hero-visual {
  min-height: 720px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 187, 101, 0.18), transparent 28%),
    radial-gradient(circle at 50% 65%, rgba(255, 142, 42, 0.08), transparent 34%);
}

.logo-stage {
  position: relative;
  width: min(90%, 560px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.halo {
  position: absolute;
  width: 58%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 198, 125, 0.45), rgba(255, 162, 64, 0.08) 48%, transparent 70%);
  filter: blur(18px);
  animation: pulse 4.2s ease-in-out infinite;
}

.logo-main {
  position: relative;
  z-index: 2;
  width: 78%;
  object-fit: cover;
  filter: drop-shadow(0 0 20px rgba(255, 183, 92, 0.22)) drop-shadow(0 0 80px rgba(255, 183, 92, 0.12));
  mix-blend-mode: screen;
  animation: floaty 5.5s ease-in-out infinite;
  border-radius: 28px;
}

.energy-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.energy-rings circle {
  fill: none;
  stroke: url(#goldStroke);
  stroke-width: 1.5;
  opacity: .35;
  stroke-dasharray: 18 16;
  transform-origin: center;
  animation: spin 24s linear infinite;
}

.energy-rings circle:nth-child(3) { animation-duration: 30s; animation-direction: reverse; opacity: .18; }
.energy-rings circle:nth-child(4) { animation-duration: 18s; opacity: .26; }

.spark {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-1);
  box-shadow: 0 0 18px rgba(255, 208, 137, 0.95), 0 0 44px rgba(255, 166, 69, 0.4);
}
.spark::before,
.spark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0), var(--gold-1), rgba(255,255,255,0));
  transform: translate(-50%, -50%);
}
.spark::after { transform: translate(-50%, -50%) rotate(90deg); }
.spark-a { top: 22%; left: 16%; animation: twinkle 2.6s ease-in-out infinite; }
.spark-b { top: 18%; right: 17%; animation: twinkle 3.4s ease-in-out infinite .8s; }
.spark-c { bottom: 24%; left: 14%; animation: twinkle 2.9s ease-in-out infinite 1s; }
.spark-d { bottom: 18%; right: 20%; animation: twinkle 3.3s ease-in-out infinite .3s; }

.showcase {
  padding: 14px 0 18px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 205, 137, 0.08);
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.42));
}

.showcase-copy {
  padding: 26px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-copy h2,
.location-card h3 {
  margin: 14px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: .98;
}

.location {
  padding: 14px 0 44px;
}

.location-card {
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pin {
  color: var(--muted);
  font-size: 15px;
}

.footer {
  padding: 14px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #a79179;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes pulse {
  0%,100% { transform: scale(.94); opacity: .75; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes floaty {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes twinkle {
  0%,100% { transform: scale(.8); opacity: .5; }
  50% { transform: scale(1.35); opacity: 1; }
}
@keyframes drift {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(20px,-25px,0); }
}

@media (max-width: 1080px) {
  .hero,
  .showcase-card {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 600px; }
  .meta-list { grid-template-columns: 1fr; }
  .location-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar { padding-top: 18px; }
  .brand-mini { letter-spacing: .12em; font-size: 10px; }
  .hero { gap: 20px; padding-top: 18px; }
  .hero-copy,
  .showcase-card,
  .location-card { padding: 22px; }
  .hero-visual { min-height: 440px; }
  .logo-main { width: 86%; }
  .footer,
  .topbar { flex-direction: column; align-items: flex-start; }
}
