:root {
  --ink: #173b3a;
  --muted: #60716f;
  --paper: #f5f1e8;
  --cream: #fffdf8;
  --gold: #d49a3a;
  --line: rgba(23, 59, 58, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
}

.page-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(212, 154, 58, 0.14), transparent 28rem),
    linear-gradient(135deg, var(--paper) 0%, #f8f5ee 55%, #e9efeb 100%);
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(23, 59, 58, 0.1);
  border-radius: 50%;
}

.page-shell::before {
  width: 30rem;
  height: 30rem;
  right: -14rem;
  bottom: -12rem;
}

.page-shell::after {
  width: 18rem;
  height: 18rem;
  right: -8rem;
  bottom: -6rem;
}

.site-header,
.maintenance,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.brand-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.brand-copy small,
.location,
.eyebrow,
.site-footer {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-copy small {
  letter-spacing: 0.08em;
}

.location {
  position: absolute;
  right: 0;
  color: var(--gold);
}

.maintenance {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1120px;
  padding: 6rem 8% 7rem;
  text-align: center;
}

.sun-mark {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 2rem;
  place-items: center;
  border: 1px solid rgba(212, 154, 58, 0.5);
  border-radius: 50%;
}

.sun-mark span {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.65rem rgba(212, 154, 58, 0.14);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.message {
  max-width: 34rem;
  margin: 1.7rem 0 2.3rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.3rem;
  color: var(--cream);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.read-more:hover,
.read-more:focus-visible {
  background: #285c59;
  transform: translateY(-2px);
}

.read-more span {
  font-size: 1.2rem;
  line-height: 0.5;
}

.site-footer {
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.6rem;
}

@media (max-width: 600px) {
  .site-header,
  .maintenance,
  .site-footer {
    width: min(100% - 2rem, 1120px);
  }

  .site-header {
    align-items: flex-start;
  }

  .brand-logo {
    width: 4.5rem;
    height: 4.5rem;
  }

  .location {
    padding-top: 0.4rem;
    font-size: 0.58rem;
  }

  .maintenance {
    padding: 4.5rem 0 5rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }
}
