:root {
  --paper: #fbfaf6;
  --paper-deep: #f5f0e7;
  --ink: #202020;
  --green: #173f28;
  --green-deep: #12351f;
  --gold: #b19050;
  --gold-soft: #ccb783;
  --rule: rgba(177, 144, 80, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.92), transparent 28rem),
    var(--paper);
}

.splash {
  min-height: 100vh;
  overflow: hidden;
}

.poster {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px) clamp(28px, 5.75vw, 72px) clamp(36px, 4vw, 50px);
  background: var(--paper);
}

.hero {
  text-align: center;
}

.logo {
  display: block;
  width: min(670px, 78vw);
  margin: 0 auto 28px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(458px, 55vw);
  margin: 0 auto;
  color: var(--gold);
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: var(--rule);
}

.divider-mark {
  display: block;
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  font-size: 22px;
  line-height: 13px;
  color: currentColor;
  text-align: center;
  user-select: none;
}

h1 {
  margin: 24px 0 35px;
  font-size: clamp(2.55rem, 5.8vw, 4.72rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.plot-frame {
  position: relative;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  corner-shape: scoop;
}

.plot-frame img {
  display: block;
  width: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  corner-shape: scoop;
  filter: contrast(0.97) brightness(1.03);
}

.intro {
  max-width: 860px;
  margin: clamp(31px, 4.2vw, 50px) auto 24px;
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.divider-small {
  width: min(280px, 42vw);
  margin-bottom: 18px;
}

.info-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.85fr);
  align-items: center;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: clamp(25px, 3.3vw, 38px) clamp(26px, 4.1vw, 44px);
  border: 1.5px solid var(--gold);
  border-radius: 9px;
  background: rgba(253, 250, 244, 0.78);
}

.feature {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 33px;
  align-items: center;
  padding-right: clamp(22px, 4vw, 42px);
  border-right: 2px solid var(--gold);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.feature-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon .stem {
  stroke-width: 2.2;
}

h2 {
  margin: 0 0 9px;
  font-size: clamp(1.25rem, 2.55vw, 2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.feature p,
.contact p {
  margin: 0;
  font-size: clamp(1.1rem, 2.25vw, 1.72rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.contact {
  text-align: center;
  padding-left: clamp(22px, 4.4vw, 48px);
}

.contact a {
  display: inline-block;
  margin-top: 22px;
  min-width: 220px;
  padding: 7px 22px 10px;
  border-radius: 9px;
  color: #fff7e9;
  font-size: clamp(1.55rem, 3.1vw, 2.18rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.015em;
  text-decoration: none;
  background: linear-gradient(180deg, #245c39, var(--green-deep));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.footer-band {
  width: 100%;
  min-height: clamp(82px, 9vw, 100px);
  border-top: 8px solid var(--gold);
  background:
    radial-gradient(circle at 44% 0%, rgba(47, 91, 55, 0.5), transparent 22rem),
    var(--green-deep);
  padding-top: 20px;
}

.divider-footer {
  width: 94px;
}

.divider-footer::before,
.divider-footer::after {
  background: var(--gold);
}

@media (max-width: 720px) {
  .poster {
    padding-inline: 18px;
  }

  .logo {
    width: min(560px, 86vw);
    margin-bottom: 22px;
  }

  h1 {
    margin-bottom: 25px;
  }

  .info-card {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(480px, 100%);
    padding: 28px 24px;
  }

  .feature {
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1.5px solid var(--gold);
  }

  .feature-icon {
    width: 72px;
    height: 72px;
  }

  .feature-icon svg {
    width: 50px;
    height: 50px;
  }

  .contact {
    padding-left: 0;
  }

  .contact a {
    min-width: 0;
    width: min(240px, 100%);
  }
}

@media (max-width: 430px) {
  .poster {
    padding-top: 38px;
  }

  .divider {
    width: min(270px, 70vw);
  }

  .feature {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
