:root {
  --bg: #f2ebe0;
  --bg-alt: #fffaf2;
  --surface: rgba(255, 250, 242, 0.82);
  --surface-strong: #fffefb;
  --text: #1d1a17;
  --muted: #5f584f;
  --accent: #0f5b52;
  --accent-soft: #c4ebe0;
  --line: rgba(29, 26, 23, 0.08);
  --shadow: 0 24px 80px rgba(29, 26, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 91, 82, 0.18), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(214, 162, 91, 0.22), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 242, 0.94)),
    #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 91, 82, 0.15), rgba(15, 91, 82, 0));
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
}

.brand,
.nav-link,
.button {
  text-decoration: none;
}

.brand {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.nav-link {
  color: var(--muted);
  font-weight: 600;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 58ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(15, 91, 82, 0.2);
}

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

.quick-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.quick-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #d6a25b);
  box-shadow: 0 0 0 6px rgba(15, 91, 82, 0.08);
}

.hero-card,
.panel,
.contact-band {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 24px;
  border-radius: 22px;
}

.status-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 16px 0 10px;
  font-size: 1.8rem;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.7;
}

.status-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.status-list div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.status-list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-list dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.panel {
  min-height: 220px;
  padding: 22px;
  border-radius: 22px;
}

.panel-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.panel h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.panel p,
.contact-copy {
  color: var(--muted);
  line-height: 1.75;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15, 91, 82, 0.08), rgba(255, 255, 255, 0.7)),
    var(--surface-strong);
}

.contact-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

@media (max-width: 900px) {
  .hero-grid,
  .highlights,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .topbar {
    margin-bottom: 40px;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, 1180px);
    padding: 10px;
    margin: 8px auto;
    border-radius: 20px;
  }

  .hero,
  .hero-card,
  .panel,
  .contact-band {
    border-radius: 18px;
  }

  .hero {
    padding: 16px;
  }

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

  .button {
    width: 100%;
  }
}
