:root{
  --bg: #000;
  --text: #fff;
  --muted: #9a9a9a;
  --accent: #fff;
  --radius: 8px;
  --container: 28rem;
  font-family: 'Noto Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  line-height:1.45;
  font-size:16px;
}

/* Layout */
.container{
  max-width:1100px;
  padding:1rem;
  margin:0 auto;
}

.site-header{
  border-bottom:0;
  background:rgba(0,0,0,0.6);
  box-shadow:none;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:0.75rem 0;
}
.brand{display:flex;align-items:center;gap:.6rem}
.logo{width:36px;height:36px;object-fit:contain}
.brand-name{display:none}

/* Nav */
.nav{display:flex;gap:1rem;align-items:center}
.nav-link{color:var(--muted);text-decoration:none;font-weight:600}
.nav-link.cta{background:transparent;color:var(--text);border:1px solid rgba(255,255,255,0.08);padding:.4rem .6rem}

/* Menu button (mobile) */
.menu-btn{display:none;background:none;border:0;font-size:1.25rem}

/* Hero */
.hero{padding:6rem 0;display:flex;align-items:center;justify-content:center;min-height:56vh}
.hero-center{display:flex;flex-direction:column;align-items:center;gap:.8rem;text-align:center}
.hero-logo{width:140px;height:140px;object-fit:contain;filter:brightness(1);margin-bottom:.2rem}
.hero-note{font-size:0.88rem;letter-spacing:1.8px;text-transform:none;margin:0;color:var(--muted);font-weight:600;opacity:.95}
.hero-tag{display:none}
.hero-sub{max-width:44ch;color:var(--muted);margin:0;font-size:0.98rem}

/* hide secondary sections for extreme minimalism */
.quick-info, .gallery, .site-footer{display:none}

/* Media blocks (placeholder visuals) */
.media-card, .media-block{display:none}

/* buttons: subtle white outline */
.btn{
  background:transparent;color:var(--text);border:1px solid rgba(255,255,255,0.12);padding:.6rem .9rem;border-radius:6px;
}
.btn.full{background:transparent;border-color:rgba(255,255,255,0.08)}

/* Info & Gallery */
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.info h3{margin:0 0 .4rem}
.section-title{margin:0 0 1rem;font-size:1.25rem;font-weight:700}

/* Subscribe */
.subscribe{padding:1.6rem 0;background:transparent}
.subscribe-card{display:grid;gap:.8rem;align-items:center}
.subscribe-form{display:flex;gap:.6rem}
.subscribe-form input[type="email"]{
  padding:.65rem .75rem;border-radius:8px;border:1px solid #e8e8e8;flex:1;font-size:1rem
}
.form-msg{color:var(--muted);font-size:.95rem;margin:0}

/* Footer */
.site-footer{border-top:1px solid #eee;padding:.9rem 0;margin-top:2rem}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:1rem;font-size:.95rem}
.social a{margin-left:.6rem;color:var(--muted);text-decoration:none;font-weight:600}

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

/* Responsive */
@media(max-width:900px){
  .hero{padding:3rem 0}
  .media-block{height:120px}
  .menu-btn{display:block}
  .nav{display:none}
}
@media(max-width:480px){
  .grid-cards{grid-template-columns:1fr}
  .brand-name{display:none}
  .media-block{height:90px}
}