:root {
  --ink: #18181b;
  --muted: #686872;
  --line: #e8e5e1;
  --paper: #fffdf9;
  --surface: #f6f1ea;
  --brand: #9f1824;
  --brand-dark: #741019;
  --accent: #e7b77c;
  --shadow: 0 24px 70px rgba(50, 33, 23, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 229, 225, 0.82);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(18px);
}

.nav,
.hero,
.section,
.footer-inner,
.policy-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #404047;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brand);
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding: 92px 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 13px 30px rgba(159, 24, 36, 0.2);
}

.button-secondary {
  background: transparent;
}

.hero-art {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 180px 180px 28px 28px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.55) 28%, transparent 52%),
    linear-gradient(165deg, #f7ebe0 0%, #e8c4b0 42%, #b84a3a 100%);
  box-shadow: var(--shadow);
}

.hero-brand {
  width: min(72%, 280px);
  height: auto;
  margin-top: -8%;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(50, 33, 23, 0.12);
}

.art-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: white;
  background: rgba(42, 14, 17, 0.22);
  backdrop-filter: blur(12px);
}

.art-label strong,
.art-label span {
  display: block;
}

.art-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.art-label span {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.84;
}

.section {
  padding: 96px 0;
}

.section-soft {
  width: 100%;
  background: var(--surface);
}

.section-soft > .section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 44px;
}

.section-heading h2,
.support-card h2,
.policy-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.section-heading h2,
.support-card h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.section-heading p {
  color: var(--muted);
  margin: 18px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.feature-number {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.feature h3 {
  margin: 58px 0 9px;
  font-size: 20px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.support-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 52px;
  border-radius: 28px;
  color: white;
  background: #1e1b1c;
}

.support-card p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #c7c1c3;
}

.support-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.support-card .button {
  color: white;
  border-color: rgba(255, 255, 255, 0.62);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 52px 0;
}

.footer-company {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand);
}

.policy-hero {
  padding: 84px 0 52px;
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  font-size: clamp(46px, 7vw, 76px);
}

.policy-meta {
  margin: 18px 0 0;
  color: var(--muted);
}

.policy-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 730px);
  justify-content: space-between;
  gap: 70px;
  padding-top: 64px;
  padding-bottom: 100px;
}

.policy-nav {
  position: sticky;
  top: 104px;
  align-self: start;
}

.policy-nav strong {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.policy-nav a:hover {
  color: var(--brand);
}

.policy-content h2 {
  margin: 58px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  margin: 30px 0 10px;
  font-size: 18px;
}

.policy-content p,
.policy-content li {
  color: #4f4f57;
  font-size: 15px;
}

.policy-content ul {
  padding-left: 21px;
}

.contact-panel {
  margin-top: 34px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.contact-panel p {
  margin: 5px 0;
}

@media (max-width: 820px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 0;
  }

  .hero-art {
    width: min(520px, 100%);
    justify-self: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 34px 28px;
  }

  .footer-inner,
  .policy-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .policy-nav {
    display: none;
  }
}

@media (max-width: 520px) {
  .nav,
  .hero,
  .section,
  .footer-inner,
  .policy-shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 66px;
  }

  .hero {
    padding-top: 52px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
