/* Shevlin — Maintenance page styles */

:root {
  --cream:  #F2EDE2;
  --dark:   #181C28;
  --mid:    #444860;
  --muted:  #909298;
  --rouge:  #1A3A6C;
  --f-disp: 'Josefin Sans', system-ui, sans-serif;
  --f-body: 'Josefin Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.maint-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.maint-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(242,237,226,0.08);
}

.maint-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) sepia(0.15) saturate(0.5) hue-rotate(345deg) brightness(0.95);
}

/* Main content */
.maint-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.maint-accent {
  width: 40px;
  height: 4px;
  background: var(--rouge);
  margin-bottom: 1.5rem;
}

.maint-label {
  font-family: var(--f-disp);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1.25rem;
}

.maint-heading {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2rem;
}

.maint-body {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(242,237,226,0.7);
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.maint-contact {
  font-size: 0.95rem;
  color: var(--muted);
}

.maint-contact a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.maint-contact a:hover {
  color: var(--rouge);
}

/* Footer */
.maint-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(242,237,226,0.08);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
