:root {
  color-scheme: light;
  --bg: #f7f2ec;
  --bg-deep: #efe6db;
  --text: #1f1c19;
  --muted: #5a4f45;
  --accent: #c35c3a;
  --accent-2: #0f6b5c;
  --white: #ffffff;
  --card: #fbf8f4;
  --shadow: 0 24px 60px rgba(31, 28, 25, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, #fdf8f3, var(--bg));
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 10;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(247, 242, 236, 0.9);
  border-bottom: 1px solid rgba(31, 28, 25, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", "Georgia", serif;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e4a05f);
  box-shadow: 0 10px 20px rgba(195, 92, 58, 0.35);
}

.brand.small .brand-mark {
  width: 32px;
  height: 32px;
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}

.menu a {
  color: var(--muted);
}

.menu .cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
}

.hero {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% 30% auto -20%;
  height: 420px;
  background: radial-gradient(circle, rgba(15, 107, 92, 0.2), transparent 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.4rem, 2.2rem + 2vw, 3.6rem);
  margin: 12px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 700;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(195, 92, 58, 0.3);
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero-meta {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.portrait {
  display: grid;
  place-items: center;
  position: relative;
  height: 220px;
}

.portrait-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(195, 92, 58, 0.4);
}

.portrait-fill {
  width: 140px;
  height: 180px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #f2d4c2, #e2b49c);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--muted);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-deep);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.6rem);
  margin: 0 0 12px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(31, 28, 25, 0.08);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: start;
}

.stats {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.stats strong {
  display: block;
  font-size: 1.3rem;
}

.timeline {
  display: grid;
  gap: 18px;
  border-left: 2px solid rgba(31, 28, 25, 0.1);
  padding-left: 18px;
}

.timeline span {
  font-weight: 700;
  color: var(--accent);
}

.agenda {
  display: grid;
  gap: 14px;
}

.agenda-item {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--card);
  align-items: center;
}

.agenda-item span {
  font-weight: 700;
  color: var(--accent-2);
  min-width: 70px;
}

.cta-band {
  background: linear-gradient(120deg, rgba(195, 92, 58, 0.08), rgba(15, 107, 92, 0.12));
}

.form {
  display: grid;
  gap: 14px;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input,
textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 28, 25, 0.15);
  padding: 10px 12px;
  font: inherit;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(31, 28, 25, 0.08);
  background: #f9f4ef;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .menu {
    display: none;
  }

  .hero-meta {
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .hero {
    padding-top: 70px;
  }

  .hero-card {
    padding: 18px;
  }

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