:root{
  --red: #D8121E;
  --red-dark: #8F0B14;
  --ink: #1C1512;
  --ink-soft: #4A4540;
  --line: rgba(28, 21, 18, 0.10);
}

*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
}

body{
  background: #FFFFFF;
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* single column, everything centered, footer pinned to the bottom of the page */
.page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content{
  flex: 1;
  width: 100%;
  max-width: 640px;
  padding: 64px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo{
  width: 350px;
  height: auto;
  margin-bottom: 28px;
}

.lang-switch{
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
}

.lang-switch button{
  appearance: none;
  background: none;
  border: none;
  padding: 4px 10px;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  transition: color 150ms ease, background 150ms ease;
}

.lang-switch button:hover{
  color: var(--ink);
  background: rgba(28, 21, 18, 0.06);
}

.lang-switch button.active{
  color: var(--red);
  font-weight: 600;
}

h1{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--ink);
}

.rule{
  width: 72px;
  height: 4px;
  background: var(--red);
  border: none;
  margin: 0 auto 26px;
  border-radius: 2px;
}

.lede{
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 40px;
}

.status-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse{
  0%   { box-shadow: 0 0 0 0 rgba(216, 18, 30, 0.35); }
  70%  { box-shadow: 0 0 0 8px rgba(216, 18, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 18, 30, 0); }
}

@media (prefers-reduced-motion: reduce){
  .dot{ animation: none; }
}

.contact{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.contact-email{
  margin-top: 10px;
  display: block;
}

.contact a{
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 160ms ease;
  text-transform: none;
}

.contact a:hover{
  border-color: var(--red);
}

footer{
  width: 100%;
  padding: 24px 32px 32px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: 0.65;
}

@media (max-width: 480px){
  .content{ padding: 48px 24px 24px; }
  .logo{ width: 190px; }
}
