:root {
  --ink: #1a1f24;
  --muted: #5c6770;
  --paper: #f3f1ec;
  --panel: #ffffff;
  --accent: #c45c26;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-serif: "IBM Plex Serif", Georgia, serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 10% -5%, rgba(196, 92, 38, 0.12), transparent 55%),
    radial-gradient(600px 320px at 100% 0%, rgba(30, 60, 80, 0.07), transparent 50%);
}

.sheet {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.entity {
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

h2 {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.product {
  margin-bottom: 2.5rem;
  padding: 1.35rem 1.25rem;
  background: var(--panel);
  border: 1px solid rgba(26, 31, 36, 0.1);
}

.product-name {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.product-copy,
.product-price,
.contact p {
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.product-price {
  font-weight: 500;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
}

.cta:hover,
.cta:focus-visible {
  filter: brightness(1.05);
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.contact {
  margin-bottom: 2.5rem;
}

.contact a {
  color: var(--ink);
}

.foot {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 31, 36, 0.12);
  font-size: 0.8rem;
  color: var(--muted);
}

.foot-entity {
  margin: 0 0 0.65rem;
  font-weight: 500;
  color: var(--ink);
}

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.foot-legal a,
.legal-sheet a {
  color: var(--ink);
}

.legal-sheet h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.body-copy {
  margin: 0 0 0.85rem;
  max-width: 38rem;
}

.block { margin-bottom: 1.75rem; }

.brand-link {
  color: inherit;
  text-decoration: none;
}

.brand-link:hover { text-decoration: underline; }
