:root {
  --bg: #f5efe3;
  --bg-soft: #faf6ec;
  --card-cream: #faf4e6;
  --card-blush: #f6e7dc;
  --card-amber: #f4e6c5;
  --card-sage: #eaecd6;
  --card-clay: #f1ddc8;

  --ink: #1f1a14;
  --ink-soft: #3d3528;
  --body: #5a4f3e;
  --muted: #8a7d68;
  --faint: #b9ad96;
  --line: rgba(31, 26, 20, 0.10);
  --line-soft: rgba(31, 26, 20, 0.06);

  --red: #e60023;
  --red-pressed: #cc001f;

  --section-space-top: clamp(4.5rem, 6vw, 6rem);
  --section-space-bottom: clamp(4rem, 7vw, 5.5rem);
  --section-space-compact-top: clamp(3.5rem, 6vw, 4.5rem);
  --section-space-compact-bottom: clamp(2rem, 4vw, 2.5rem);
  --stack-tight: clamp(0.35rem, 1vw, 0.6rem);
  --stack-base: clamp(0.75rem, 1.4vw, 1rem);
  --stack-loose: clamp(1.25rem, 2vw, 1.75rem);
  --container-pad: clamp(1.5rem, 4vw, 2.25rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
}

::selection {
  background: var(--red);
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  z-index: 1;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.36  0 0 0 0 0.28  0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

main {
  position: relative;
  z-index: 2;
}

.wrap {
  max-width: 760px;
}

.wrap-wide {
  max-width: 1180px;
}

.wrap,
.wrap-wide {
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.label {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--red);
}

footer {
  padding: 2.25rem 0 3rem;
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ig-link:hover {
  color: var(--red);
}

.ig-link img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.made {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.made .heart {
  color: var(--red);
  font-size: 14px;
  margin: 0 1px;
  display: inline-block;
  transform: translateY(1px);
}
