:root {
  --bg: #f5fbfa;
  --surface: #ffffff;
  --surface-soft: #eef8f6;
  --text: #163837;
  --muted: #54706e;
  --line: #cfe4e0;
  --primary: #69b7b4;
  --primary-dark: #3c8f8b;
  --secondary: #d9efeb;
  --highlight: #8fd6c7;
  --shadow: 0 14px 40px rgba(31, 80, 77, 0.10);
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 214, 199, 0.20), transparent 34%),
    linear-gradient(180deg, #f8fcfc 0%, var(--bg) 100%);
  line-height: 1.65;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(245, 251, 250, 0.85);
  border-bottom: 1px solid rgba(207, 228, 224, 0.8);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.hero {
  padding: 4rem 0 2rem;
}

.hero-grid,
.split,
.contact-wrap,
.intro-band {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.split,
.contact-wrap {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.eyebrow,
.section-tag {
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero h1,
.section h2 {
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  max-width: 12ch;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0;
}

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

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.hero-points,
.card ul,
.fact-box ul {
  margin: 0;
  padding-left: 1.15rem;
}

.hero-card,
.card,
.fact-box,
.soft-panel,
.contact-card,
.testimonial,
.intro-band {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
}

.portrait-placeholder {
  min-height: 340px;
  border-radius: calc(var(--radius) - 8px);
  background: linear-gradient(180deg, rgba(105, 183, 180, 0.20), rgba(143, 214, 199, 0.42));
  border: 1px dashed rgba(60, 143, 139, 0.35);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

.info-card {
  padding: 1.25rem 0.4rem 0.2rem;
}

.section {
  padding: 2rem 0;
}

.section-head {
  margin-bottom: 1.4rem;
}

.intro-band {
  grid-template-columns: 0.95fr 1.05fr;
  padding: 1.5rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.three-col,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.fact-box,
.soft-panel,
.testimonial,
.contact-card {
  padding: 1.5rem;
}

.card h3,
.fact-box h3,
.contact-name {
  margin-top: 0;
}

.accent-section {
  background: linear-gradient(180deg, rgba(217, 239, 235, 0.55), rgba(245, 251, 250, 0.2));
}

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

.testimonial {
  margin: 0;
}

.testimonial p {
  font-size: 1.05rem;
  margin-top: 0;
}

.testimonial footer {
  color: var(--muted);
  font-weight: 600;
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-copy p:last-child,
.contact-card p {
  margin-bottom: 0.7rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .contact-wrap,
  .intro-band,
  .three-col,
  .testimonial-grid,
  .reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 0.75rem 1rem;
  }

  .button {
    width: 100%;
  }

  .portrait-placeholder {
    min-height: 260px;
  }
}
