@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #f7f4ef;
  --bg-soft: #f1ebe3;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --text: #1f2328;
  --muted: #66707a;
  --primary: #2f6b5d;
  --primary-dark: #214d43;
  --primary-soft: #d8ebe5;
  --accent: #ead7c2;
  --border: rgba(83, 63, 42, 0.11);
  --shadow: 0 18px 50px rgba(23, 29, 28, 0.08);
  --shadow-hover: 0 28px 70px rgba(23, 29, 28, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(234, 215, 194, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(216, 235, 229, 0.26), transparent 24%),
    var(--bg);
  line-height: 1.75;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(247, 244, 239, 0.78);
  border-bottom: 1px solid rgba(83, 63, 42, 0.08);
}

.minimal-header {
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand.center {
  align-items: center;
  text-align: center;
}

.brand strong {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand span {
  margin-top: 4px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 25, 24, 0.58) 0%, rgba(18, 25, 24, 0.34) 42%, rgba(18, 25, 24, 0.18) 100%),
    url("beach.jpg") center center / cover no-repeat;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}

.hero-home::before {
  width: 340px;
  height: 340px;
  left: -110px;
  top: 80px;
  background: rgba(255, 255, 255, 0.10);
}

.hero-home::after {
  width: 240px;
  height: 240px;
  right: 10%;
  bottom: 60px;
  background: rgba(216, 235, 229, 0.14);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 110px 0 110px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.section-kicker {
  color: var(--primary);
}

.hero h1 {
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 900px;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}

.hero-text {
  max-width: 680px;
  margin: 0 0 34px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.btn {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #3b7f70);
  box-shadow: 0 14px 30px rgba(47, 107, 93, 0.28);
}

.btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 20px 34px rgba(33, 77, 67, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.20)),
    var(--bg-soft);
}

.section-title {
  margin: 0 0 34px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

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

.card {
  position: relative;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(216, 235, 229, 0.55), transparent 68%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(47, 107, 93, 0.16);
}

.card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.card p,
.card li {
  position: relative;
  font-size: 1rem;
  color: #253038;
}

.card p:last-child {
  margin-bottom: 0;
}

.highlight-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.88)),
    var(--surface);
}

.feature-list {
  padding-left: 20px;
  margin: 18px 0 0;
}

.feature-list li {
  margin-bottom: 14px;
}

.role {
  display: inline-block;
  margin: -2px 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-section {
  padding-bottom: 120px;
}

.contact-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 42px;
}

.contact-card p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  border-top: 1px solid rgba(83, 63, 42, 0.08);
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
  .about-layout,
  .grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-content {
    padding: 92px 0 84px;
  }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 640px) {
  .minimal-header {
    padding: 16px 0;
  }

  .brand strong {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .card,
  .contact-card {
    padding: 26px;
    border-radius: 24px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }
}