:root { --gold: #d4af37; --ink: #11100d; --cream: #fffdf7; }
* { box-sizing: border-box; }
html { min-height: 100%; background: var(--ink); }
body { min-height: 100%; margin: 0; color: var(--cream); font-family: Poppins, Arial, sans-serif; }
.hero { min-height: calc(100svh - 44px); display: grid; place-items: center; isolation: isolate; overflow: hidden; padding: 30px 18px; position: relative; }
.hero__image, .hero__overlay { position: absolute; inset: 0; z-index: -3; }
.hero__image { background: #1d1d18 url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?auto=format&fit=crop&w=2200&q=85') center / cover no-repeat; transform: scale(1.035); animation: slow-zoom 18s ease-in-out infinite alternate; }
.hero__overlay { z-index: -2; background: linear-gradient(120deg, rgba(4, 4, 3, .83), rgba(8, 8, 6, .67)); }
.ambient { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; filter: blur(3px); background: rgba(212, 175, 55, .14); animation: drift 11s ease-in-out infinite alternate; }
.ambient--one { width: 19rem; height: 19rem; top: -10rem; left: -6rem; }
.ambient--two { width: 13rem; height: 13rem; bottom: -5rem; right: -3rem; animation-delay: -4s; }
.ambient--three { width: 5rem; height: 5rem; top: 18%; right: 12%; opacity: .7; animation-delay: -7s; }
.coming-soon-card { width: min(100%, 760px); text-align: center; padding: clamp(30px, 6vw, 58px) clamp(20px, 6vw, 68px); background: rgba(21, 20, 16, .52); border: 1px solid rgba(255, 255, 255, .2); border-radius: 24px; box-shadow: 0 18px 65px rgba(0, 0, 0, .42); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); animation: fade-up .9s both; }
.monogram { display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; margin: 0 auto 18px; color: var(--gold); font: 600 18px/1 'Playfair Display', serif; position: relative; }
.monogram i { position: absolute; width: 25px; bottom: 9px; border-bottom: 1px solid var(--gold); }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; margin: 0 0 10px; }
h1 { font: 600 clamp(2.5rem, 7vw, 4.7rem)/1.05 'Playfair Display', Georgia, serif; letter-spacing: -.035em; margin: 0; }
.subtitle { margin: 12px 0 31px; font-size: clamp(.86rem, 2.5vw, 1.05rem); color: rgba(255,255,255,.82); }
.timer { display: flex; align-items: flex-start; justify-content: center; gap: clamp(5px, 1.8vw, 16px); margin: 0 auto 28px; }
.timer__unit { min-width: 45px; display: grid; gap: 5px; }
.timer strong { color: var(--gold); font: 600 clamp(1.7rem, 6.7vw, 3.2rem)/1 'Playfair Display', Georgia, serif; font-variant-numeric: tabular-nums; }
.timer span { color: rgba(255,255,255,.64); font-size: clamp(.57rem, 1.6vw, .68rem); letter-spacing: .08em; text-transform: uppercase; }
.timer__separator { color: rgba(212,175,55,.52); font: 500 clamp(1.65rem, 6vw, 3rem)/.9 'Playfair Display', serif; }
.open-message { margin: -6px 0 27px; color: var(--gold); font: 600 1.55rem 'Playfair Display', serif; }
.address { max-width: 510px; margin: 0 auto 25px; color: rgba(255,255,255,.77); font-size: clamp(.73rem, 2.1vw, .9rem); line-height: 1.75; }
.cta { display: inline-flex; gap: 10px; align-items: center; border: 1px solid var(--gold); border-radius: 999px; padding: 12px 23px; color: var(--ink); background: var(--gold); text-decoration: none; font-weight: 600; font-size: .82rem; transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease; }
.cta:hover, .cta:focus-visible { color: var(--cream); background: transparent; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.25); outline: none; }
.cta span { font-size: 1.05rem; transition: transform .22s ease; }.cta:hover span { transform: translateX(3px); }
footer { min-height: 44px; display: grid; place-items: center; background: #0d0c0a; color: rgba(255,255,255,.48); text-align: center; padding: 10px 18px; font-size: .68rem; }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes drift { from { transform: translate3d(0,0,0) scale(.95); } to { transform: translate3d(25px,18px,0) scale(1.08); } }
@keyframes slow-zoom { from { transform: scale(1.035); } to { transform: scale(1.1); } }
@media (max-width: 420px) { .coming-soon-card { border-radius: 18px; } .timer { gap: 4px; } .timer__unit { min-width: 39px; } .timer__separator { padding-top: 0; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
