:root {
  color-scheme: light;
  --bg: #fff;
  --ink: #1f1a15;
  --muted: #6b5948;
  --line: #bca98f;
  --brown: #3b2a1d;
  --brown-strong: #6b4528;
  --gold: #c7a052;
  --gold-soft: #d8b566;
  --paper: rgba(255, 255, 255, 0.96);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  line-height: 1.35;
  overflow-x: hidden;
}

.splash {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
}

.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 40%, rgba(255, 255, 255, 0.52) 68%, rgba(255, 255, 255, 0.34) 100%),
    repeating-linear-gradient(135deg, rgba(59, 42, 29, 0.035) 0 2px, transparent 2px 9px);
  pointer-events: none;
}

.splash-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0.72;
  filter: contrast(1.12);
  overflow: hidden;
}

.splash-cover::before {
  content: none;
}

.splash-cover img {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.splash-panel {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 64px));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 8vh, 90px) 0 clamp(38px, 7vh, 74px);
  margin-left: clamp(28px, 7vw, 112px);
}

.splash h1 {
  margin: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.4vw, 112px);
  line-height: 0.92;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 #fff,
    1px 0 0 #fff,
    -1px 0 0 #fff;
}

.splash-slogan {
  position: fixed;
  left: 50%;
  bottom: clamp(18px, 4vh, 42px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: calc(100vw - 32px);
  min-height: 54px;
  margin: 0;
  padding: 12px 22px 13px;
  color: #fff;
  background: #111;
  border: 2px solid #111;
  border-radius: 999px;
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: -6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 14px 30px rgba(55, 38, 24, 0.22);
}

@media (max-width: 980px) {
  .splash {
    background: #fff;
  }

  .splash::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(255, 255, 255, 0.38) 100%),
      repeating-linear-gradient(135deg, rgba(59, 42, 29, 0.035) 0 2px, transparent 2px 9px);
  }

  .splash-panel {
    width: min(720px, calc(100vw - 48px));
    margin: 0 auto;
    text-align: center;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 56vh;
  }

  .splash-cover {
    opacity: 0.64;
  }

  .splash-cover img {
    height: 100%;
    object-position: center center;
  }
}

@media (max-width: 560px) {
  .splash-panel {
    width: calc(100vw - 28px);
    min-height: 100svh;
    padding-top: 24px;
    padding-bottom: 58vh;
  }

  .splash h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .splash-slogan {
    bottom: 18px;
    min-height: 46px;
    padding: 11px 18px 12px;
    font-size: clamp(18px, 5vw, 28px);
    line-height: 1.08;
  }

  .splash-cover {
    opacity: 0.58;
  }

  .splash-cover img {
    height: 100%;
    object-position: center center;
  }
}
