:root {
  --bg: #f5f0e4;
  --ink: #10243b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  overflow: hidden;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(16, 36, 59, 0.06), transparent 24rem),
    radial-gradient(circle at 82% 28%, rgba(14, 123, 115, 0.08), transparent 18rem),
    linear-gradient(180deg, #f8f4ea 0%, var(--bg) 100%);
}

.page-noise,
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-noise {
  opacity: 0.12;
  background-image:
    radial-gradient(rgba(16, 36, 59, 0.18) 0.6px, transparent 0.6px);
  background-size: 14px 14px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
}

.page-grid {
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(16, 36, 59, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 59, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 16%, transparent 84%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  width: min(calc(100% - 56px), 1120px);
  margin: 0 auto;
  padding: 48px 0;
}

.brand,
.cta-row,
h1 {
  margin: 0;
}

.brand {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

h1 {
  max-width: 10ch;
  margin-top: 18px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(4.4rem, 10.5vw, 8.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.times-mark {
  display: inline-block;
  margin: 0 0.02em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  transform: translateY(-0.01em);
}

.compare-body {
  overflow: auto;
}

.compare-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 56px), 1240px);
  margin: 0 auto;
  padding: 40px 0 80px;
}

.compare-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.compare-note,
.compare-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.62;
}

.compare-list {
  display: grid;
  gap: 16px;
}

.compare-card {
  padding: 26px 28px;
  border: 1px solid rgba(16, 36, 59, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(10px);
}

.compare-card h2 {
  max-width: 11ch;
  margin: 12px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.times-cormorant {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  transform: translateY(-0.01em);
}

.times-playfair {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  transform: translateY(-0.005em);
}

.times-libre-bodoni {
  font-family: "Libre Bodoni", Georgia, serif;
  font-weight: 600;
  transform: translateY(-0.015em);
}

.times-bodoni-moda {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 600;
  transform: translateY(-0.015em) scale(0.98);
}

.times-stix {
  font-family: "STIX Two Text", Georgia, serif;
  font-weight: 600;
  transform: translateY(0.01em);
}

.cta-row {
  display: flex;
  align-items: center;
  margin-top: 28px;
}

.button {
  color: inherit;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #f8f4ea;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }

  .hero-shell {
    width: min(calc(100% - 32px), 1120px);
    padding: 32px 0 48px;
  }

  .brand {
    font-size: 0.92rem;
  }

  h1 {
    max-width: 8ch;
    margin-top: 14px;
    font-size: clamp(3.3rem, 16vw, 5.8rem);
  }

  .compare-shell {
    width: min(calc(100% - 32px), 1240px);
    padding: 28px 0 48px;
  }

  .compare-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
  }

  .compare-card {
    padding: 20px;
  }

  .compare-card h2 {
    max-width: 8ch;
    font-size: clamp(2.4rem, 11vw, 4.2rem);
  }

  .cta-row {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
  }

  .button {
    min-height: 44px;
    padding: 0 18px;
  }
}
