
:root{
  --ink:#060b12;
  --navy:#0c1826;
  --slate:#26384d;
  --silver:#eef1f3;
  --muted:#b7c0ca;
  --line:rgba(238,241,243,.28);
  --panel:rgba(8,16,26,.72);
  --white:#fff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#050a10;
  color:var(--silver);
  font-family:"Montserrat",Arial,sans-serif;
  min-height:100vh;
}

.site-shell{
  min-height:100vh;
  background:
    radial-gradient(circle at 76% 10%,rgba(162,191,221,.18),transparent 30%),
    linear-gradient(135deg,#02070c 0%,#0a1521 48%,#14263a 100%);
}

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  padding:clamp(20px,2.2vw,34px) clamp(22px,4vw,68px) 18px;
}

.hero-overlay{
  pointer-events:none;
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(2,7,12,.98) 0%,rgba(3,10,17,.93) 38%,rgba(7,16,25,.28) 68%,rgba(7,16,25,.35) 100%),
    radial-gradient(circle at 68% 30%,rgba(212,227,241,.17),transparent 24%);
  z-index:0;
}

.site-header,.hero-grid,.notify-card,.site-footer,.rule{
  position:relative;
  z-index:2;
}

.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{
  width:min(265px,44vw);
  height:auto;
  display:block;
  filter:drop-shadow(0 1px 8px rgba(255,255,255,.08));
}

.tagline-top{
  text-transform:uppercase;
  letter-spacing:.34em;
  font-size:11px;
  font-weight:500;
  color:#d9dfe5;
  white-space:nowrap;
}

.rule{
  height:1px;
  background:var(--line);
  margin:16px 0 clamp(24px,3vw,44px);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(350px,.85fr) minmax(0,1.3fr);
  gap:clamp(30px,4vw,72px);
  min-height:0;
  align-items:center;
}

.copy{
  padding:clamp(4px,1vw,16px) 0 clamp(4px,1vw,16px) clamp(0px,2.5vw,42px);
  max-width:680px;
}

.eyebrow{
  display:none;
}

h1,h2{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:500;
}

h1{
  margin:0;
  font-size:clamp(70px,7vw,118px);
  line-height:.9;
  letter-spacing:-.035em;
  color:#f5f3ef;
  text-shadow:0 2px 18px rgba(255,255,255,.08);
}

.opening-date{
  display:flex;
  align-items:center;
  gap:12px;
  margin:18px 0 0 4px;
  color:#f2f4f6;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(21px,1.8vw,29px);
  line-height:1.1;
  letter-spacing:.035em;
}

.opening-date span{
  color:#aeb8c2;
  font-family:"Montserrat",Arial,sans-serif;
  font-size:10px;
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.ornament{
  display:flex;
  align-items:center;
  gap:12px;
  width:min(360px,70%);
  margin:18px 0 14px 8px;
}

.ornament span{
  height:1px;
  flex:1;
  background:var(--line);
}

.ornament b{
  font-size:11px;
  color:#f7f7f7;
  font-weight:400;
}

.selling-points{
  margin-top:2px;
  border-top:1px solid rgba(255,255,255,.08);
}

.point{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:20px;
  align-items:center;
  padding:clamp(13px,1.25vw,18px) 0;
  border-bottom:1px solid rgba(255,255,255,.10);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(22px,2vw,31px);
  line-height:1.12;
}

.icon{
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,.72);
  transform:rotate(45deg);
  display:grid;
  place-items:center;
  font-family:Georgia,serif;
  font-size:18px;
  color:#fff;
}

.icon > *{transform:rotate(-45deg)}

.ring-icon{
  border-radius:50%;
  transform:none;
}

.point:nth-child(3) .icon{
  transform:none;
  border-radius:9px;
  font-family:"Montserrat",Arial,sans-serif;
  font-size:14px;
}

.supporting{
  margin:18px 0 0;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:22px;
  color:#d7dce1;
  letter-spacing:.015em;
}

.product-art{
  width:100%;
  aspect-ratio:16/9;
  min-height:0;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.product-art::after{
  content:"";
  position:absolute;
  inset:8% 0 3% 7%;
  background:radial-gradient(circle at 55% 42%,rgba(255,255,255,.15),transparent 40%);
  filter:blur(30px);
  z-index:-1;
}

.product-art img{
  width:100%;
  height:100%;
  max-width:none;
  max-height:none;
  object-fit:cover;
  object-position:center;
  border-radius:2px;
  box-shadow:0 35px 80px rgba(0,0,0,.38);
}

.notify-card{
  width:min(1160px,94%);
  margin:clamp(30px,4vw,58px) auto 20px;
  border:1px solid rgba(230,235,240,.42);
  background:linear-gradient(135deg,rgba(6,14,23,.88),rgba(25,43,62,.78));
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:34px;
  align-items:center;
  padding:24px 30px;
  box-shadow:0 18px 55px rgba(0,0,0,.25);
  backdrop-filter:blur(8px);
}

.notify-copy{
  display:flex;
  align-items:center;
  gap:20px;
}

.mail-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.7);
  border-radius:50%;
  font-size:24px;
  box-shadow:0 0 22px rgba(255,255,255,.10);
}

.notify-card h2{
  margin:0 0 5px;
  font-size:34px;
  line-height:1;
}

.notify-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.field-row{
  display:grid;
  grid-template-columns:1fr 190px;
  gap:14px;
}

input,button{
  font:inherit;
}

input{
  width:100%;
  min-height:54px;
  background:rgba(5,12,19,.52);
  border:1px solid rgba(255,255,255,.32);
  color:#fff;
  padding:0 18px;
  outline:none;
  border-radius:0;
}

input:focus{
  border-color:rgba(255,255,255,.75);
  box-shadow:0 0 0 3px rgba(255,255,255,.06);
}

input::placeholder{color:#aeb7c1}

button{
  min-height:54px;
  border:1px solid #d6d8da;
  background:linear-gradient(#f5f5f4,#c9c8c5);
  color:#0a0e13;
  letter-spacing:.19em;
  text-transform:uppercase;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
  transition:.2s ease;
}

button:hover{
  filter:brightness(1.08);
  transform:translateY(-1px);
}

.privacy{
  margin-top:8px!important;
  font-size:11px!important;
}

.site-footer{
  text-align:center;
  padding:10px 0 12px;
  color:#929ba4;
}

.instagram{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#e7ebef;
  text-decoration:none;
  margin-bottom:12px;
  font-size:13px;
  letter-spacing:.04em;
}

.instagram:hover{color:#fff}

.ig-mark{
  width:29px;
  height:29px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:17px;
}

.site-footer p{
  margin:0;
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.hidden{display:none}
.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

@media (max-width:980px){
  .hero{padding:22px 22px 16px}
  .tagline-top{display:none}
  .hero-grid{
    grid-template-columns:1fr;
    gap:26px;
  }
  .copy{
    padding:6px 0 0;
    max-width:none;
  }
  h1{font-size:clamp(62px,14vw,96px)}
  .product-art{
    min-height:0;
    order:-1;
  }
  .product-art img{
    max-height:none;
  }
  .notify-card{
    width:100%;
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .hero{padding:18px 16px 12px}
  .brand img{width:205px}
  .opening-date{font-size:21px;gap:9px;margin-top:14px}
  .opening-date span{font-size:9px;letter-spacing:.22em}
  .rule{margin:14px 0 18px}
  .product-art{min-height:0;aspect-ratio:4/3}
  .product-art img{max-height:none}
  .point{
    grid-template-columns:38px 1fr;
    gap:14px;
    font-size:22px;
  }
  .icon{width:29px;height:29px;font-size:14px}
  .supporting{font-size:19px}
  .notify-card{padding:20px 18px}
  .field-row{grid-template-columns:1fr}
  .notify-copy{align-items:flex-start}
  .mail-icon{width:48px;height:48px;font-size:20px}
  .notify-card h2{font-size:30px}
  .site-footer p{line-height:1.6}
}

.handle{
  color:#aeb7c1;
  font-weight:400;
  margin-left:4px;
}
