:root {
  --cream: #f7f1e8;
  --ink: #302c29;
  --rose: #a65e5a;
  --rose-dark: #854540;
  --paper: #fffaf3;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

.landing-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 48px 24px;
  background:
    radial-gradient(circle at 50% 10%, rgb(255 255 255 / 75%), transparent 38%),
    linear-gradient(145deg, var(--paper), var(--cream));
}

.landing-page::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(48 44 41 / 14%);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 30px;
  color: var(--rose-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-logo {
  width: 238px;
  margin: -4px auto 18px;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

h1 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 11vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.intro {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgb(48 44 41 / 76%);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.facebook-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: white;
  background: var(--rose);
  box-shadow: 0 10px 26px rgb(133 69 64 / 20%);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.facebook-link:hover {
  background: var(--rose-dark);
  box-shadow: 0 14px 32px rgb(133 69 64 / 28%);
  transform: translateY(-2px);
}

.facebook-link:focus-visible {
  outline: 3px solid rgb(48 44 41 / 70%);
  outline-offset: 4px;
}

.footer-note {
  margin: 38px 0 0;
  color: rgb(48 44 41 / 50%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.decorative-shape {
  position: absolute;
  width: 260px;
  height: 360px;
  border: 1px solid rgb(139 154 131 / 28%);
  border-radius: 50%;
  pointer-events: none;
}

.decorative-shape-left {
  bottom: -190px;
  left: -95px;
  transform: rotate(32deg);
}

.decorative-shape-right {
  top: -210px;
  right: -80px;
  border-color: rgb(166 94 90 / 22%);
  transform: rotate(-26deg);
}

@media (max-width: 560px) {
  .landing-page {
    padding: 56px 28px;
  }

  .landing-page::before {
    inset: 10px;
    border-radius: 22px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 0.68rem;
  }

  .brand-logo {
    width: 210px;
    margin-top: -2px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .intro {
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .facebook-link {
    transition: none;
  }
}
