:root {
  --bg: #f3efe7;
  --bg-accent: #e2ddd1;
  --surface: rgba(255, 252, 246, 0.78);
  --surface-strong: #fffaf1;
  --text: #1d2430;
  --muted: #5f6773;
  --line: rgba(29, 36, 48, 0.12);
  --line-strong: rgba(29, 36, 48, 0.2);
  --accent: #0d6c74;
  --accent-deep: #0b4953;
  --warm: #c76737;
  --shadow: 0 20px 70px rgba(39, 35, 28, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(13, 108, 116, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(199, 103, 55, 0.14), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, #f7f4ec 44%, #f3efe7 100%);
}

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

a:hover {
  color: var(--accent-deep);
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.panel,
.site-footer {
  backdrop-filter: blur(10px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent) 0%, #69aab0 55%, var(--warm) 100%);
  box-shadow: 0 0 0 9px rgba(13, 108, 116, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 0.9rem;
}

.brand-text strong {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.site-nav a {
  font-size: 0.95rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 28px;
  padding: 48px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 103, 55, 0.18), transparent 65%);
  pointer-events: none;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

p {
  margin: 0;
}

.lede,
.narrative-copy,
.section-card p,
.info-card p,
.cta p,
.hero-card,
.site-footer {
  color: var(--muted);
}

.lede {
  max-width: 58ch;
  margin-top: 20px;
  font-size: 1.1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--accent-deep);
  color: #f7fbfb;
}

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

.hero-card,
.info-card {
  position: relative;
}

.hero-card {
  align-self: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 250, 241, 0.9)),
    var(--surface-strong);
}

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.feature-list li + li {
  margin-top: 10px;
}

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

.section-card {
  grid-column: 1 / -1;
  padding: 36px;
}

.section-card h2,
.cta h2 {
  margin-bottom: 16px;
}

.info-card,
.narrative,
.cta {
  padding: 32px;
}

.narrative,
.cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.narrative-copy,
.cta p {
  font-size: 1.02rem;
}

.narrative-copy p + p {
  margin-top: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px 0;
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .hero,
  .narrative,
  .cta,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 34px 24px;
  }

  .section-card,
  .info-card,
  .narrative,
  .cta {
    padding: 26px;
  }

  h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .site-header,
  .site-footer {
    border-radius: 28px;
  }

  .site-header,
  .site-footer,
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    padding: 18px;
  }

  .site-nav {
    gap: 12px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }
}
