*{box-sizing:border-box}
:root{
  --bg:#090c0b;
  --panel:#111614;
  --text:#f4f6f5;
  --muted:#aab5b0;
  --line:#26312d;
  --accent:#83d8bf;
  --max:1180px;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
}
img{display:block;width:100%}
a{color:inherit}
.wrap{width:min(calc(100% - 36px),var(--max));margin-inline:auto}
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(circle at 72% 28%,rgba(61,123,102,.22),transparent 28%),
    linear-gradient(180deg,#0b0f0d 0%,#090c0b 100%);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.brand{
  text-decoration:none;
  font-size:.82rem;
  letter-spacing:.18em;
  font-weight:600;
}
.nav-contact{
  text-decoration:none;
  color:var(--muted);
  font-size:.92rem;
}
.hero-grid{
  flex:1;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:64px;
  align-items:center;
  padding:44px 0 72px;
}
.eyebrow{
  color:var(--accent);
  font-size:.76rem;
  letter-spacing:.18em;
  font-weight:600;
  margin:0 0 18px;
}
h1,h2{
  font-family:"Cormorant Garamond",Georgia,serif;
  line-height:.98;
  margin:0;
}
h1{
  font-size:clamp(3.8rem,8vw,7.8rem);
  font-weight:600;
  letter-spacing:-.04em;
}
h2{
  font-size:clamp(2.5rem,5vw,4.8rem);
  font-weight:600;
}
.tagline{
  color:var(--muted);
  max-width:610px;
  margin:28px 0 34px;
  font-size:1.05rem;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:132px;
  padding:13px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  font-size:.92rem;
  transition:.2s ease;
}
.button:hover{transform:translateY(-2px);border-color:var(--accent)}
.button.primary{
  background:var(--accent);
  color:#082018;
  border-color:var(--accent);
}
.hero-image{
  margin:0;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-image img{
  max-height:78vh;
  object-fit:contain;
  filter:drop-shadow(0 28px 60px rgba(0,0,0,.45));
}
.statement{
  padding:74px 0;
  border-bottom:1px solid var(--line);
}
.statement p{
  margin:0;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(2rem,4.2vw,4rem);
  text-align:center;
}
.featured{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:70px;
  padding:110px 0;
}
.featured-image{
  background:#fff;
  border-radius:8px;
  overflow:hidden;
}
.featured-copy p:not(.eyebrow){
  color:var(--muted);
  margin:24px 0;
  max-width:560px;
}
.text-link{
  color:var(--accent);
  font-weight:600;
  text-decoration:none;
}
.coming{
  padding:90px 0 110px;
  border-top:1px solid var(--line);
}
.coming-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.coming article{
  background:var(--panel);
  padding:28px;
  border:1px solid var(--line);
  border-radius:8px;
}
.coming h3{margin:0 0 10px;font-size:1.08rem}
.coming article p{margin:0;color:var(--muted)}
footer{
  border-top:1px solid var(--line);
  padding:34px 0 44px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:28px;
}
footer strong{font-size:.9rem;letter-spacing:.12em}
footer p{margin:6px 0 0;color:var(--muted);font-size:.9rem}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:flex-start;
}
.footer-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:.9rem;
}

@media (max-width:860px){
  .hero-grid,.featured{grid-template-columns:1fr}
  .hero-grid{gap:24px;padding-top:64px}
  .hero-image{min-height:0}
  .hero-image img{max-height:none}
  .featured{gap:42px;padding:80px 0}
  .coming-grid{grid-template-columns:1fr}
}
@media (max-width:560px){
  .wrap{width:min(calc(100% - 24px),var(--max))}
  .nav{padding:18px 0}
  .brand{font-size:.72rem}
  h1{font-size:3.45rem}
  .actions{display:grid;grid-template-columns:1fr 1fr}
  .button{min-width:0}
  .hero-grid{padding:48px 0 56px}
  .statement{padding:56px 0}
  .featured{padding:66px 0}
  .footer-inner{flex-direction:column}
}
