* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
min-height: 100vh;
background: #100e0d;
color: #fff;
font-family: "Montserrat", sans-serif;
overflow-x: hidden;
}

.site {
position: relative;
min-height: 100vh;
overflow: hidden;
}

.background {
position: fixed;
inset: 0;
z-index: -2;
}

.background img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
filter: brightness(0.62) saturate(0.78);
animation: zoom 18s ease-in-out infinite alternate;
}

.shade {
position: absolute;
inset: 0;
background:
linear-gradient(
180deg,
rgba(8, 7, 7, 0.72) 0%,
rgba(8, 7, 7, 0.28) 45%,
rgba(8, 7, 7, 0.72) 100%
);
}

.header {
position: relative;
z-index: 5;

min-height: 88px;
padding: 22px 5vw;

display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;

border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
color: #fff;
text-decoration: none;

font-family: "Cormorant Garamond", serif;
font-size: 27px;
font-weight: 400;

letter-spacing: 0.2em;

transition: 0.3s ease;
}

.logo:hover {
letter-spacing: 0.28em;
}

.tagline {
color: rgba(255,255,255,0.65);
font-size: 7px;
letter-spacing: 0.5em;
}

.status {
justify-self: end;

display: flex;
align-items: center;
gap: 8px;

color: rgba(255,255,255,0.7);
font-size: 7px;
letter-spacing: 0.3em;
}

.status i {
width: 5px;
height: 5px;

display: block;

border-radius: 50%;
background: #c8a66a;

box-shadow: 0 0 12px rgba(200,166,106,0.9);

animation: pulse 2s infinite;
}

.content {
position: relative;
z-index: 3;

min-height: calc(100vh - 88px);

padding: 55px 20px 150px;

display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

text-align: center;
}

.eyebrow {
display: flex;
align-items: center;
gap: 14px;

color: #c8a66a;

font-size: 7px;
letter-spacing: 0.42em;

animation: fadeUp 0.8s ease both;
}

.eyebrow span {
width: 28px;
height: 1px;
background: rgba(200,166,106,0.7);
}

.monogram {
position: relative;

width: 112px;
height: 112px;

margin: 25px 0 27px;

animation: monogramIn 1s 0.2s ease both;
}

.oval {
position: absolute;
inset: 0;

border: 1px solid rgba(200,166,106,0.9);
border-radius: 50%;
}

.oval-one {
transform: scaleX(0.86) rotate(24deg);
}

.oval-two {
inset: 5px -3px;
transform: scaleX(0.9) rotate(-24deg);
opacity: 0.3;
}

.monogram-text {
position: absolute;
inset: 0;
}

.monogram-text span {
position: absolute;

font-family: "Cormorant Garamond", serif;
font-size: 83px;
font-weight: 300;
line-height: 1;

color: #fff;
}

.monogram-text span:first-child {
left: 11px;
top: 7px;
}

.monogram-text span:last-child {
right: 8px;
bottom: 2px;
}

h1 {
max-width: 850px;

font-family: "Cormorant Garamond", serif;
font-size: clamp(64px, 8vw, 108px);
font-weight: 300;

line-height: 0.8;
letter-spacing: -0.02em;

text-shadow: 0 8px 35px rgba(0,0,0,0.4);

animation: fadeUp 0.9s 0.35s ease both;
}

h1 em {
display: block;

color: #c8a66a;

font-style: italic;
font-weight: 300;
}

.description {
margin-top: 28px;

color: rgba(255,255,255,0.75);

font-size: 10px;
line-height: 1.9;
font-weight: 300;

animation: fadeUp 0.9s 0.55s ease both;
}

.coming {
margin-top: 28px;

display: flex;
align-items: center;
gap: 17px;

animation: fadeUp 0.9s 0.7s ease both;
}

.coming span {
width: 52px;
height: 1px;
background: rgba(255,255,255,0.4);
}

.coming strong {
font-size: 7px;
font-weight: 400;
letter-spacing: 0.5em;
}

.notify-button {
margin-top: 25px;

padding: 13px 17px;

display: flex;
align-items: center;
gap: 24px;

border: 1px solid rgba(255,255,255,0.4);

background: rgba(255,255,255,0.08);

color: #fff;

font-family: "Montserrat", sans-serif;
font-size: 7px;
letter-spacing: 0.2em;

backdrop-filter: blur(10px);

cursor: pointer;

transition: 0.35s ease;

animation: fadeUp 0.9s 0.85s ease both;
}

.notify-button b {
font-size: 16px;
font-weight: 300;
transition: 0.3s ease;
}

.notify-button:hover {
background: #fff;
color: #111;
border-color: #fff;
transform: translateY(-3px);
}

.notify-button:hover b {
transform: translateX(5px);
}

.footer {
position: absolute;
z-index: 5;

left: 5vw;
right: 5vw;
bottom: 22px;

display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;

color: rgba(255,255,255,0.5);

font-size: 6px;
letter-spacing: 0.2em;
}

.footer span:nth-child(2) {
text-align: center;
}

.footer span:last-child {
justify-self: end;
}

.footer a {
color: #fff;
text-decoration: none;

border-bottom: 1px solid rgba(255,255,255,0.4);

padding-bottom: 2px;

transition: 0.3s ease;
}

.footer a:hover {
color: #c8a66a;
border-color: #c8a66a;
}

/* MODAL */

.modal {
position: fixed;
inset: 0;

z-index: 100;

display: flex;
align-items: center;
justify-content: center;

padding: 20px;

background: rgba(5,5,5,0.78);
backdrop-filter: blur(14px);

opacity: 0;
visibility: hidden;

transition: 0.3s ease;
}

.modal.active {
opacity: 1;
visibility: visible;
}

.modal-box {
position: relative;

width: min(430px, 100%);

padding: 45px 35px;

background: #f5eee5;
color: #16130f;

text-align: center;

transform: translateY(20px);
transition: 0.35s ease;
}

.modal.active .modal-box {
transform: translateY(0);
}

.close {
position: absolute;
top: 10px;
right: 16px;

border: 0;
background: none;

font-size: 27px;
font-weight: 300;

cursor: pointer;
}

.modal-box small {
color: #b08c55;

font-size: 7px;
letter-spacing: 0.4em;
}

.modal-box h2 {
margin-top: 14px;

font-family: "Cormorant Garamond", serif;

font-size: 46px;
font-weight: 400;

line-height: 0.86;
}

.modal-box h2 em {
display: block;

color: #94764b;
font-style: italic;
}

.modal-box p {
max-width: 290px;

margin: 18px auto 25px;

color: #777;

font-size: 9px;
line-height: 1.8;
}

#notifyForm {
display: flex;

border: 1px solid rgba(0,0,0,0.2);
}

#notifyForm input {
flex: 1;
min-width: 0;

padding: 14px;

border: 0;
outline: none;

background: transparent;

font-family: "Montserrat", sans-serif;
font-size: 9px;
}

#notifyForm button {
padding: 0 17px;

border: 0;

background: #15120f;
color: #fff;

font-family: "Montserrat", sans-serif;
font-size: 7px;
letter-spacing: 0.1em;

cursor: pointer;
}

.success {
display: none;

margin-top: 14px;

color: #a4814e;

font-size: 9px;
}

/* ANIMATIONS */

@keyframes zoom {
from {
transform: scale(1.03);
}

to {
transform: scale(1.08);
}
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(18px);
}

to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes monogramIn {
from {
opacity: 0;
transform: scale(0.75) rotate(-8deg);
}

to {
opacity: 1;
transform: scale(1) rotate(0);
}
}

@keyframes pulse {
0%, 100% {
opacity: 0.35;
transform: scale(0.8);
}

50% {
opacity: 1;
transform: scale(1.15);
}
}

/* MOBILE */

@media (max-width: 600px) {

.site {
min-height: 100svh;
}

.header {
min-height: 72px;

padding: 18px 20px;

display: flex;
justify-content: space-between;

}

.logo {
font-size: 20px;
letter-spacing: 0.16em;
}

.tagline {
display: none;
}

.status {
font-size: 5px;
letter-spacing: 0.22em;
}

.content {
min-height: auto;

padding: 50px 18px 155px;

}

.eyebrow {
gap: 8px;

font-size: 5px;
letter-spacing: 0.25em;

}

.eyebrow span {
width: 17px;
}

.monogram {
width: 94px;
height: 94px;

margin-top: 22px;
margin-bottom: 28px;

}

.monogram-text span {
font-size: 70px;
}

.monogram-text span:first-child {
left: 10px;
}

.monogram-text span:last-child {
right: 7px;
}

h1 {
font-size: clamp(57px, 17vw, 78px);
line-height: 0.82;
}

.description {
max-width: 300px;

margin-top: 25px;

font-size: 8.5px;

}

.description br {
display: none;
}

.coming {
gap: 10px;
margin-top: 25px;
}

.coming span {
width: 25px;
}

.coming strong {
font-size: 5.5px;
letter-spacing: 0.35em;
}

.footer {
left: 20px;
right: 20px;
bottom: 18px;

display: flex;
flex-direction: column;

gap: 8px;

text-align: center;

font-size: 5px;

}

.footer span:last-child {
display: none;
}

.modal-box {
padding: 40px 22px;
}

.modal-box h2 {
font-size: 39px;
}

#notifyForm {
display: block;
border: 0;
}

#notifyForm input {
width: 100%;
margin-bottom: 8px;
border: 1px solid rgba(0,0,0,0.2);

}

#notifyForm button {
width: 100%;
padding: 14px;
}
}

/* SHORT DESKTOP SCREENS */

@media (min-width: 601px) and (max-height: 760px) {

.content {
padding-top: 30px;
padding-bottom: 125px;
}

.monogram {
width: 85px;
height: 85px;

margin: 15px 0 18px;

}

.monogram-text span {
font-size: 63px;
}

h1 {
font-size: 78px;
}

.description {
margin-top: 20px;
}

.coming {
margin-top: 18px;
}

.notify-button {
margin-top: 17px;
}
}
