:root {
  --bg: #f5f1ea;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffdf9;
  --ink: #242424;
  --muted: #5f615c;
  --line: rgba(40, 52, 46, 0.12);
  --teal: #456c67;
  --teal-soft: #dce7e4;
  --sage: #99a798;
  --sand: #ebe3d6;
  --warm: #c9b79f;
  --danger: #7c5449;
  --shadow: 0 22px 70px rgba(52, 53, 48, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(145deg, #f8f4ee 0%, #ede5d8 50%, #f6f1e9 100%);
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(69, 108, 103, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 108, 103, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22));
}

.frame {
  width: 1600px;
  min-height: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), transparent 20%),
    radial-gradient(circle at 80% 10%, rgba(201, 183, 159, 0.4), transparent 18%),
    radial-gradient(circle at 78% 72%, rgba(69, 108, 103, 0.11), transparent 21%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(69, 108, 103, 0.14);
  color: var(--teal);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6f938e, #456c67);
}

.card {
  background: var(--surface);
  border: 1px solid rgba(64, 74, 68, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.footer-note {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 34px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(36, 36, 36, 0.64);
  font-size: 18px;
  line-height: 1.45;
  border: 1px solid rgba(69, 108, 103, 0.12);
}
