:root {
  --ink: #241918;
  --wine: #8f1119;
  --wine-dark: #62090e;
  --gold: #d89117;
  --cream: #fff8ef;
  --site-width: 1024px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  height: 76px;
  background: rgba(255, 255, 255, 0.96);
}

.nav {
  width: min(var(--site-width), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  width: min(230px, 42vw);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #2d2524;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 3px solid transparent;
  text-decoration: none;
}

.nav-links a:not(.donate-button).active {
  color: var(--wine);
  border-color: var(--wine);
}

.nav-links .donate-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  color: #fff;
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(143, 17, 25, 0.24);
  text-transform: uppercase;
}

.donate-button img {
  width: 15px;
  height: auto;
  display: block;
}

.nav-links .donate-button:hover {
  color: #fff;
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}

.page-shell {
  width: min(var(--site-width), 100%);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 48px 24px 58px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.72) 100%),
    url("images/Background-home.png") center -58px / 1024px auto no-repeat;
}

.construction-panel {
  width: min(620px, 100%);
  padding: 36px 42px;
  border: 1px solid rgba(98, 9, 14, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(52, 22, 12, 0.14);
  text-align: center;
}

.panel-logo {
  width: 230px;
  max-width: 80%;
  height: auto;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
}

.message {
  max-width: 440px;
  margin: 14px auto 0;
  color: #5b4a48;
  font-size: 0.95rem;
  line-height: 1.5;
}

.construction-band {
  width: min(420px, 100%);
  height: 18px;
  margin: 24px auto 0;
  border-radius: 3px;
  background: repeating-linear-gradient(
    135deg,
    #111 0 14px,
    #111 14px 24px,
    #f1c232 24px 38px,
    #f1c232 38px 48px
  );
}

.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 10px 18px;
  color: #fff;
  background: var(--wine);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
  }

  .nav {
    min-height: 82px;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .construction-panel {
    padding: 30px 22px;
  }
}
