:root {
  --bg: #f5f1e8;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #fffdf7;
  --ink: #1d1d1b;
  --muted: #5f5a52;
  --line: rgba(29, 29, 27, 0.12);
  --accent: #0f766e;
  --accent-strong: #115e59;
  --accent-soft: #d9f0ec;
  --shadow: 0 16px 40px rgba(29, 29, 27, 0.08);
  --radius: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(181, 101, 29, 0.12), transparent 22%),
    linear-gradient(180deg, #f8f3e8 0%, #f2ede3 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(245, 241, 232, 0.8);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__grid,
.hero,
.cta-panel,
.content-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.site-header__inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__mark {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: white;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-end;
}

.site-nav__link {
  text-decoration: none;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
}

.site-nav__link.is-active,
.site-nav__link:hover,
.button:hover {
  background: var(--accent-soft);
  color: var(--ink);
}

main {
  padding: 2rem 0 4rem;
}

.hero {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 3rem 0 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.4rem;
}

p,
li,
summary,
code {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero__lead {
  font-size: 1.18rem;
  max-width: 38rem;
}

.hero__panel,
.card,
.cta-panel,
.release-card,
.legal-shell,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero__panel {
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.95), rgba(255, 253, 247, 0.8)),
    linear-gradient(135deg, rgba(15, 118, 110, 0.15), transparent);
}

.hero__art {
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) - 6px);
  background:
    linear-gradient(160deg, rgba(15, 118, 110, 0.2), rgba(217, 119, 6, 0.18)),
    var(--surface-strong);
  position: relative;
  overflow: hidden;
}

.hero__art::before,
.hero__art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero__art::before {
  width: 58%;
  height: 58%;
  inset: 12% auto auto 10%;
}

.hero__art::after {
  width: 42%;
  height: 42%;
  inset: auto 10% 12% auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
}

.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #d97706);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.section {
  padding: 2rem 0;
}

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.release-card,
.contact-card {
  padding: 1.4rem;
}

.cta-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.page-header {
  padding: 2rem 0 1rem;
}

.page-header p {
  max-width: 48rem;
}

.release-list {
  display: grid;
  gap: 1.2rem;
}

.release-card__header {
  margin-bottom: 1rem;
}

.release-card ul,
.legal-shell ul {
  padding-left: 1.2rem;
}

.release-card__issues {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 1rem;
}

.legal-shell {
  padding: 1.6rem;
}

.legal-shell section + section {
  margin-top: 1.6rem;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.88);
}

.site-footer__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 2rem 0 1rem;
}

.site-footer__title {
  color: var(--ink);
  font-weight: 700;
}

.site-footer__bottom {
  padding: 0 0 2rem;
}

@media (max-width: 900px) {
  .hero,
  .content-grid,
  .contact-grid,
  .site-footer__grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy,
  .hero__panel,
  .card,
  .release-card,
  .contact-card {
    animation: fade-up 600ms ease both;
  }

  .card:nth-child(2),
  .release-card:nth-child(2) {
    animation-delay: 120ms;
  }

  .card:nth-child(3),
  .release-card:nth-child(3) {
    animation-delay: 220ms;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
