@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --bg: #f5f4f1;
  --bg-alt: #ffffff;
  --ink: #0f1c1e;
  --muted: #4d5b5f;
  --accent: #0e5c5e;
  --accent-soft: #d7e7e3;
  --accent-2: #c7942b;
  --shadow: 0 24px 60px rgba(7, 20, 26, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6f3ee 0%, #f5f4f1 60%, #f1f0ec 100%);
  line-height: 1.6;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 244, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 28, 30, 0.06);
}

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

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

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

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

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

.nav-cta:visited,
.nav-cta:hover,
.nav-cta:focus {
  color: #ffffff;
}

.hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at top right, rgba(14, 92, 94, 0.12), transparent 48%);
}

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

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

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

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

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

.hero-text {
  color: var(--muted);
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
}

.button-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button-light {
  background: #fff;
  color: var(--accent);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.metric {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.metric-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-card {
  background: var(--bg-alt);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.hero-badge {
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

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

.section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 28, 30, 0.05);
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 600;
  color: var(--accent);
}

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

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag-list li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.panel {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.steps {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

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

.feature {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

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

.logo-card {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  border: 1px dashed rgba(15, 28, 30, 0.1);
}

.cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #0e5c5e 0%, #114b4d 100%);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.page {
  padding: 70px 0;
}

.narrow {
  width: min(820px, 92%);
}

.page-content {
  margin-top: 24px;
  color: var(--muted);
}

.site-footer {
  background: #0b1416;
  color: #d6dde0;
  padding-top: 60px;
}

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

.footer-grid h3 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #c4ccd0;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 0.85rem;
  color: #9aa4a9;
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .logo-text {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
  }
}
