:root {
  --bg: #f6faf8;
  --bg-soft: #edf5f1;
  --bg-tinted: #f1f7ff;
  --fg: #1f2a33;
  --muted: #5a6a73;
  --accent: #2f8f83;
  --accent-soft: rgba(47, 143, 131, 0.08);
  --accent-strong: #1e6c61;
  --border-soft: rgba(35, 55, 70, 0.08);
  --card-bg: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 30, 40, 0.08);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Lora", "Georgia", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--fg);
  background: radial-gradient(circle at top left, #e4f4ee, #fdfdfc 40%, #f0f6ff);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(246, 250, 248, 0.95),
    rgba(246, 250, 248, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(180, 200, 190, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 160deg, #2f8f83, #7ac4b2, #c9f0e5, #2f8f83);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(47, 143, 131, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.logo-tagline {
  font-size: 0.76rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  padding-block: 0.2rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f8f83, #79c3b7);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 2.75rem;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.21em;
  color: var(--accent-strong);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.highlight {
  background: linear-gradient(120deg, #fff6de 0%, #e0f6ec 40%, #fef4ff 100%);
  box-decoration-break: clone;
  padding: 0.1em 0.25em;
  border-radius: 0.4em;
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    border-color 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, #2f8f83, #61b7a6);
  color: white;
  box-shadow: 0 16px 34px rgba(26, 110, 98, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(26, 110, 98, 0.45);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(45, 85, 95, 0.16);
  color: var(--fg);
}

.btn.secondary:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 30, 40, 0.15);
}

.btn.nav-book {
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(26, 110, 98, 0.4);
  margin-left: 0.5rem;
}

.btn.nav-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 26px rgba(26, 110, 98, 0.48);
}

.btn.wide {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta span {
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(140, 180, 170, 0.35);
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.profile-card {
  background: radial-gradient(circle at top, #e5f5ef, #ffffff 45%, #f7fbff);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.7rem 1.7rem;
  border: 1px solid rgba(196, 220, 210, 0.6);
}

.profile-photo {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 10%, #ffffff, #7fcab6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 18px 45px rgba(47, 143, 131, 0.4);
}

.initials {
  font-size: 2rem;
  color: white;
  font-weight: 600;
}

.profile-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.profile-qual {
  margin: 0 0 1.2rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.profile-focus h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.profile-focus ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.profile-focus li::before {
  content: "•";
  color: var(--accent-strong);
  margin-right: 0.4rem;
}

.profile-note {
  font-size: 0.83rem;
  color: var(--muted);
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(155, 185, 175, 0.9);
}

.section {
  padding: 3.2rem 0;
}

.section.tinted {
  background: linear-gradient(180deg, var(--bg-tinted), #f9fcff);
}

h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin: 0 0 1.3rem;
}

h3 {
  font-size: 1.05rem;
  margin-top: 0;
}

p {
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.1rem;
  align-items: flex-start;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: 0 10px 30px rgba(15, 30, 40, 0.03);
}

.card.soft {
  background: rgba(255, 255, 255, 0.9);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.checklist li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.4rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  border: 2px solid #2f8f83;
  box-shadow: inset 0 0 0 2px #f6faf8;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.pill-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid rgba(180, 210, 200, 0.7);
  box-shadow: 0 12px 30px rgba(10, 25, 35, 0.06);
  font-size: 0.88rem;
}

.tag-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tag-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid rgba(180, 210, 200, 0.6);
}

.tags {
  font-size: 0.88rem;
}

.disclaimer {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: #8a6a2b;
  background: #fff7e3;
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  border: 1px solid #f2dfb0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 1.1rem 1.1rem 0.9rem;
  border: 1px solid rgba(180, 210, 200, 0.8);
  box-shadow: 0 12px 32px rgba(10, 25, 35, 0.06);
}

.quote {
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.author {
  font-size: 0.8rem;
  color: var(--muted);
}

.note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0 0;
  border-left: 2px solid rgba(180, 210, 200, 0.9);
}

.timeline li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f8f83;
  box-shadow: 0 0 0 4px rgba(47, 143, 131, 0.18);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 0.15rem;
}

.timeline-title {
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
  color: var(--fg);
}

.timeline-text {
  font-size: 0.9rem;
  margin: 0;
}

.contact-cta {
  margin: 0.5rem 0 1.1rem;
}

.hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-details li {
  margin-bottom: 0.4rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  font-size: 0.8rem;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  border-radius: 10px;
  border: 1px solid rgba(150, 180, 170, 0.7);
  padding: 0.55rem 0.7rem;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  background: rgba(255, 255, 255, 0.96);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2f8f83;
  box-shadow: 0 0 0 1px rgba(47, 143, 131, 0.3);
  background: #ffffff;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.1rem 0 0.4rem;
}

.footer {
  padding: 1.6rem 0 1.8rem;
  border-top: 1px solid rgba(180, 200, 190, 0.6);
  background: rgba(248, 252, 250, 0.96);
  margin-top: 1rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-name {
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 0 0.3rem;
}

.footer-text {
  font-size: 0.8rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  align-items: center;
}

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
    justify-content: flex-start;
  }

  .profile-card {
    max-width: 360px;
    margin-inline: auto;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tag-groups,
  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 2rem, 480px);
  }

  .hero {
    padding-top: 2.6rem;
  }

  .profile-card {
    padding: 1.4rem 1.3rem 1.3rem;
  }

  .section {
    padding: 2.4rem 0;
  }

  .pill-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


