/* Minimal, mobile-first */
:root{
  --bg:#0f1010;
  --ink:#E8DCC3;
  --muted:#CFC3A9;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding: clamp(20px, 4vw, 48px);
}

.hero{
  margin-top: clamp(24px, 12vh, 120px);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: clamp(10px, 2vh, 18px);
}

.logo{
  width: clamp(120px, 22vw, 176px);
  height: auto;
}

.motto{
  margin:0;
  font-weight:600;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: .3px;
}
.motto .br{ display:block; }

.foot{
  margin-top: auto;
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: clamp(12px, 1.5vw, 16px);
  padding-top: clamp(20px, 4vh, 40px);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; }
}
