﻿:root {
  --bg: #f6f3ee;
  --surface: #fffdf9;
  --text: #1f2429;
  --muted: #5a646e;
  --accent: #005f73;
  --accent-2: #e29524;
  --line: #d8cec0;
  --radius: 18px;
  --shadow: 0 12px 28px rgba(31, 36, 41, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(226, 149, 36, 0.14), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(0, 95, 115, 0.18), transparent 36%),
    var(--bg);
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246, 243, 238, 0.88);
  border-bottom: 1px solid rgba(216, 206, 192, 0.7);
}

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

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  background: rgba(0, 95, 115, 0.12);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
}

.hero {
  padding: 96px 0 62px;
}

.hero-card {
  background: linear-gradient(130deg, rgba(255, 253, 249, 0.95), rgba(255, 248, 237, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  color: var(--muted);
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.2;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

p {
  margin: 0 0 15px;
  color: var(--text);
}

.lead {
  font-size: 1.08rem;
  color: #2b323a;
  max-width: 72ch;
}

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

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

.btn.primary {
  background: var(--accent);
  color: #fff;
}

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

.section {
  padding: 26px 0 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 6px 18px rgba(31, 36, 41, 0.07);
}

.card ul,
.content ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.card li,
.content li {
  margin-bottom: 8px;
}

.content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.content + .content {
  margin-top: 18px;
}

.content h3 {
  margin-top: 22px;
}

.highlight {
  border-left: 4px solid var(--accent-2);
  background: rgba(226, 149, 36, 0.09);
  padding: 14px 16px;
  border-radius: 12px;
  margin: 18px 0;
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  background: #efe8dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  padding: 28px 0;
}

.footer-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.footer-note {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 62px;
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-card,
  .content {
    padding: 24px;
  }
}
