:root {
  --bg: #f6efe5;
  --bg-accent: #efe0cf;
  --panel: rgba(255, 250, 244, 0.78);
  --panel-strong: #fff9f2;
  --text: #1f1d1a;
  --muted: #675f56;
  --line: rgba(31, 29, 26, 0.1);
  --accent: #b5532f;
  --accent-dark: #7b341c;
  --shadow: 0 24px 70px rgba(65, 44, 23, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(181, 83, 47, 0.16), transparent 24rem),
    radial-gradient(circle at 85% 15%, rgba(123, 52, 28, 0.12), transparent 18rem),
    linear-gradient(180deg, var(--bg) 0%, #f8f2ea 52%, #f3e7d8 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 252, 247, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  padding: 1.5rem 1.5rem 4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(181, 83, 47, 0.08), rgba(123, 52, 28, 0.02));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.hero-content {
  padding: 4rem 0 0;
  max-width: 760px;
  animation: rise 0.8s ease-out both;
}

.eyebrow,
.card-label {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.social-links a:hover,
.nav-links a:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff9f2;
}

.button-secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(123, 52, 28, 0.24);
}

main {
  padding: 0 1.5rem 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2rem;
}

.info-card,
.content-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(6px);
}

.info-card {
  padding: 1.5rem;
  animation: rise 1s ease-out both;
}

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

.info-card:nth-child(3) {
  animation-delay: 240ms;
}

.info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.info-card p:last-child,
.content-section p {
  color: var(--muted);
  line-height: 1.75;
}

.content-section {
  padding: 2rem;
  margin-top: 1rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.focus-list article {
  padding: 1.25rem;
  border-radius: 22px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
}

.focus-list h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.social-links a {
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  background: #fff9f2;
  border: 1px solid rgba(123, 52, 28, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-links a:hover {
  color: var(--accent-dark);
  border-color: rgba(123, 52, 28, 0.4);
}

.footer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 860px) {
  .card-grid,
  .focus-list {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 1120px);
    border-radius: 24px;
  }

  .hero,
  main,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .content-section,
  .info-card {
    padding: 1.25rem;
  }

  .button,
  .social-links a {
    width: 100%;
  }
}
