:root {
  --ink: #181310;
  --charcoal: #27211d;
  --paper: #fffaf3;
  --cream: #f7ead7;
  --cedar: #995a37;
  --ember: #c6231d;
  --brass: #c79648;
  --line: rgba(39, 33, 29, 0.18);
  --shadow: 0 22px 60px rgba(31, 24, 18, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 16% 30%, rgba(198, 35, 29, 0.18), transparent 23%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(247, 234, 215, 0.94)),
    repeating-linear-gradient(90deg, #9b6a49 0 48px, #c29368 48px 96px, #7f553b 96px 144px);
}

.placeholder-page {
  display: grid;
  grid-template-rows: 1fr auto;
}

.placeholder {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.clean-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(39, 33, 29, 0.26);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 30%, rgba(0, 0, 0, 0.08)),
    repeating-linear-gradient(0deg, transparent 0 51px, rgba(79, 53, 38, 0.14) 51px 53px),
    repeating-linear-gradient(90deg, #b9825c 0 62px, #d2a27c 62px 124px, #9f6847 124px 186px, #e1b48e 186px 248px);
}

.clean-logo::before,
.clean-logo::after {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    linear-gradient(45deg, transparent 49.4%, rgba(62, 44, 33, 0.26) 49.8%, transparent 50.4%),
    linear-gradient(-45deg, transparent 49.4%, rgba(255, 255, 255, 0.22) 49.8%, transparent 50.4%);
  pointer-events: none;
}

.clean-logo::after {
  transform: translateX(190px);
  opacity: 0.7;
}

.logo-shadow {
  position: absolute;
  color: rgba(255, 255, 255, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 12vw, 136px);
  font-style: italic;
  font-weight: 700;
}

.logo-text {
  position: relative;
  z-index: 2;
  color: #111;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(82px, 16vw, 178px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.18);
}

.laser-beam {
  position: absolute;
  z-index: 3;
  left: 31%;
  top: 12%;
  width: 2px;
  height: 190px;
  background: linear-gradient(180deg, rgba(255, 73, 69, 0), #ff2a25 14%, #ff2a25 86%, rgba(255, 73, 69, 0));
  box-shadow: 0 0 8px rgba(255, 42, 37, 0.92);
  transform: rotate(39deg);
  transform-origin: bottom center;
}

.laser-spark {
  position: absolute;
  z-index: 4;
  left: calc(31% - 8px);
  top: 64%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff211b;
  box-shadow:
    0 0 7px #ff211b,
    0 0 18px rgba(255, 33, 27, 0.92),
    0 0 34px rgba(255, 33, 27, 0.55);
}

.laser-spark::before,
.laser-spark::after {
  content: "";
  position: absolute;
  inset: -17px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 33, 27, 0.86) 49%, rgba(255, 33, 27, 0.86) 51%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(255, 33, 27, 0.86) 49%, rgba(255, 33, 27, 0.86) 51%, transparent 53%);
}

.laser-spark::after {
  transform: rotate(45deg);
}

.placeholder-panel {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 34px;
  text-align: center;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 8vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.placeholder-panel p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px auto 0;
  color: #4f4037;
  font-size: 20px;
  line-height: 1.55;
}

.placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.placeholder-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: white;
  font-weight: 800;
  text-decoration: none;
  background: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.placeholder-actions a + a {
  color: var(--charcoal);
  background: transparent;
}

.placeholder-actions a:hover {
  color: white;
  background: var(--ember);
  border-color: var(--ember);
}

.placeholder-footer {
  padding: 20px;
  color: white;
  text-align: center;
  background: var(--charcoal);
}

.placeholder-footer p {
  margin: 0;
}

@media (max-width: 560px) {
  .placeholder {
    width: min(100% - 22px, 1080px);
    padding-top: 18px;
  }

  .clean-logo {
    min-height: 124px;
  }

  .laser-beam {
    left: 28%;
    height: 130px;
  }

  .laser-spark {
    left: calc(28% - 8px);
  }

  .placeholder-panel {
    padding: 24px 18px;
  }

  .placeholder-panel p:not(.eyebrow) {
    font-size: 17px;
  }

  .placeholder-actions a {
    width: 100%;
  }
}
