@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --bg: #f6f3ef;
  --surface: #ffffff;
  --ink: #1d2a2b;
  --muted: #4f5c5d;
  --accent: #2a7f78;
  --accent-2: #b0603b;
  --ring: rgba(42, 127, 120, 0.18);
  --shadow: 0 24px 60px rgba(29, 42, 43, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #f5f0ea 0%, #eef2f1 45%, #f6f3ef 100%);
  line-height: 1.6;
}

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(246, 243, 239, 0.85);
  border-bottom: 1px solid rgba(29, 42, 43, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6ac1a8);
  box-shadow: var(--shadow);
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.96rem;
}

nav a {
  color: var(--muted);
}

nav a.active,
nav a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(42, 127, 120, 0.25);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(29, 42, 43, 0.14);
  box-shadow: none;
}

.hero {
  padding: 76px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  grid-column: span 7;
}

.hero-copy h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 3vw + 1.8rem, 4.1rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-panel {
  grid-column: span 5;
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(29, 42, 43, 0.08);
}

.hero-panel h3 {
  margin-top: 0;
  font-family: 'Fraunces', serif;
}

.hero-panel ul {
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 1.6vw + 1.2rem, 3rem);
  margin-bottom: 12px;
}

.section p.lead {
  color: var(--muted);
  max-width: 720px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(29, 42, 43, 0.08);
}

.card h3 {
  margin-top: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(42, 127, 120, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

.panel {
  background: linear-gradient(135deg, #fff, #f7f7f6);
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 42, 43, 0.08);
}

.highlight {
  padding: 18px 20px;
  border-left: 4px solid var(--accent-2);
  background: rgba(176, 96, 59, 0.1);
  border-radius: var(--radius-sm);
  margin-top: 18px;
}

.list {
  display: grid;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-bullet {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.callout {
  background: linear-gradient(135deg, #1d2a2b, #2f5f5b);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(29, 42, 43, 0.28);
}

.callout h3 {
  font-family: 'Fraunces', serif;
  margin-top: 0;
}

footer {
  padding: 48px 0 60px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}

.footer-grid h4 {
  margin-top: 0;
  color: var(--ink);
}

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

input,
textarea,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(29, 42, 43, 0.18);
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42, 127, 120, 0.08);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.notice {
  background: #fff4ec;
  border: 1px solid rgba(176, 96, 59, 0.25);
  padding: 18px 20px;
  border-radius: var(--radius-md);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: center;
  }
}
