﻿:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-2: #eef3ff;
  --text: #152136;
  --muted: #5d6a80;
  --primary: #135d66;
  --primary-2: #0f766e;
  --accent: #ef8354;
  --line: #d8deea;
  --shadow: 0 20px 50px rgba(21, 33, 54, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: min(1100px, 92vw);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #fefefe 0%, #f3f6fb 35%, #eef3fa 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { margin: 0; line-height: 1.2; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 76px 0; }

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}
.orb-a { top: -120px; right: -120px; background: #4f9da6; }
.orb-b { left: -120px; bottom: -120px; background: #eab676; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.topbar.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-color: var(--line);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { font-size: .94rem; font-weight: 600; color: var(--muted); }
.nav a:hover { color: var(--primary); }

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero { padding: 56px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #ffffff, #eef5ff);
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 12px;
}
.eyebrow {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-2);
  font-weight: 700;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}
.lead { color: var(--muted); }

.quick-facts {
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 4px;
}

.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  padding: 11px 18px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 24px rgba(15, 118, 110, .3);
}
.btn-ghost { border: 1px solid var(--line); background: #fff; }
.btn-soft { background: var(--surface-2); color: var(--primary); }

.section-head { margin-bottom: 16px; }
.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}
.section-head p { color: var(--muted); }

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

.panel {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
}
.panel p { color: var(--muted); }
.panel h3 { margin-bottom: 10px; }

.bullet-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: var(--muted);
}

.highlight-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mini-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}
.mini-card h4 { margin-bottom: 7px; }
.mini-card p { color: var(--muted); font-size: .95rem; }

.note {
  border-left: 4px solid var(--accent);
  background: #fff8f2;
  border-radius: 10px;
  padding: 14px;
  color: #684f3f;
}

.social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  background: #fff;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}
.footer i { color: #c0392b; }

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

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .highlight-cards,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .menu-btn { display: inline-block; }
  .nav {
    position: absolute;
    right: 4vw;
    top: 64px;
    width: min(320px, 92vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .footer-wrap { display: grid; }
}
