:root {
  --bg: #f5efe7;
  --surface: #fcf8f2;
  --surface-2: #f7f0e6;
  --text: #2e2a26;
  --muted: #6f655b;
  --line: rgba(98, 82, 68, 0.16);
  --accent: #5f4c3d;
  --accent-soft: #ece1d2;
  --quote: #7b604d;
  --shadow: 0 18px 40px rgba(41, 30, 21, 0.10);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: linear-gradient(to bottom, #f8f3ec 0%, var(--bg) 100%);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

p, li, a, .button, .nav-links a, .brand-sub, .hero-note, .muted {
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 243, 236, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(72, 58, 46, 0.08);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: inherit;
}

.brand-name {
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 0.71rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.98rem;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: rgba(95, 76, 61, 0.35);
  border-radius: 999px;
}

@keyframes cloudDrift1 {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@keyframes cloudDrift2 {
  from { transform: translateX(-65%); }
  to   { transform: translateX(-15%); }
}

.cloud-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cloud-overlay::before,
.cloud-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 58%;
  background-repeat: repeat-x;
  background-size: 50% 100%;
}

.cloud-overlay::before {
  background-image: url('assets/clouds_overlay.png');
  animation: cloudDrift1 70s linear infinite;
}

.cloud-overlay::after {
  background-image: url('assets/clouds_overlay.png');
  opacity: 0.48;
  animation: cloudDrift2 110s linear infinite;
}

.home-banner .cloud-overlay::before,
.home-banner .cloud-overlay::after {
  background-image: url('assets/clouds_overlay.png');
}

.page-banner .cloud-overlay::before,
.page-banner .cloud-overlay::after {
  background-image: url('assets/clouds_overlay_2.png');
}

.home-banner {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(72, 58, 46, 0.08);
}

.home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/Maaike_Bright.png') no-repeat center 42%/cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.03);
  animation: bannerDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0.10)),
    linear-gradient(to top, rgba(40,30,20,0.05), rgba(40,30,20,0.00) 40%);
}

@keyframes bannerDrift {
  0% { transform: scale(1.03) translateY(0); }
  100% { transform: scale(1.07) translateY(-10px); }
}

.home-banner-inner,
.page-banner-inner,
.section,
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.home-banner-inner {
  padding: 18px 6px 280px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-copy {
  width: min(560px, calc(100vw - 24px));
  max-width: 560px;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30);
  padding: 14px 24px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.eyebrow,
.kicker {
  display: inline-block;
  font-size: 0.80rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2d241d;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 0 0 16px;
}

.hero-copy p {
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  margin: 0 0 14px;
  color: #3c342d;
  max-width: 28rem;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1;
  margin-bottom: 12px;
}


.hero-note {
  font-size: 0.98rem;
  color: rgba(60, 52, 45, 0.76);
}

.page-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid rgba(72, 58, 46, 0.08);
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.04), rgba(255,255,255,0.10)),
    url('assets/Maaike_Bright.png') no-repeat center 36%/cover;
  filter: saturate(1.04) contrast(1.03);
}

.page-banner-inner {
  padding: 28px 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.page-banner-card {
  max-width: 600px;
  margin-left: auto;
  background: rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 24px;
  padding: 22px 26px;
  box-shadow: var(--shadow);
}

.page-banner-card h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 0;
}

.page-banner-card p {
  margin: 8px 0 0;
  color: #514840;
  font-size: 1rem;
}

.section {
  padding: 84px 24px;
}

.section-tight {
  padding-top: 54px;
  padding-bottom: 54px;
}

.section h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 16ch;
}

.lead {
  font-size: 1.13rem;
  max-width: 760px;
  color: #3d352e;
}

.muted {
  color: var(--muted);
}

.intro-grid,
.split,
.speaking-lead {
  display: grid;
  gap: 34px;
  align-items: start;
}

.intro-grid,
.split {
  grid-template-columns: 1.15fr 0.85fr;
}

.speaking-lead {
  grid-template-columns: 1.2fr 0.8fr;
}

.intro-grid > *,
.split > *,
.speaking-lead > * {
  min-width: 0;
}

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

.card,
.panel,
.quote-block,
.note-panel {
  background: rgba(255, 251, 246, 0.80);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 14px 30px rgba(48, 34, 20, 0.05);
}

.card,
.panel,
.note-panel {
  padding: 28px;
}

.card h3,
.panel h3,
.note-panel h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.card p,
.panel p,
.note-panel p,
.list li {
  color: #443c35;
}

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

.list li + li {
  margin-top: 10px;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(45, 34, 26, 0.10);
}

.button-primary {
  background: var(--accent);
  color: #fffaf6;
}

.button-secondary {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(95, 76, 61, 0.12);
}

.quote-block {
  padding: 34px 30px;
  position: relative;
  background: linear-gradient(180deg, rgba(255,252,247,0.95) 0%, rgba(250,243,233,0.92) 100%);
}

.quote-block::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 22px;
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(123, 96, 77, 0.18);
}

.quote-text {
  position: relative;
  margin: 8px 0 16px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #3e342d;
}

.quote-attribution {
  font-size: 0.95rem;
  color: var(--quote);
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(95, 76, 61, 0.20), transparent);
  margin: 0 auto;
  max-width: calc(var(--max) - 48px);
}

.footer {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  padding: 28px 24px 48px;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 980px) {
  .cards,
  .intro-grid,
  .split,
  .speaking-lead {
    grid-template-columns: 1fr;
  }

  .home-banner {
    min-height: 54vh;
  }

  .home-banner-inner {
    padding-bottom: 170px;
  }

  .section h2 {
    max-width: none;
  }
}

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

  .home-banner-inner {
    justify-content: flex-end;
    padding-top: 12px;
    padding-bottom: 126px;
    padding-right: 4px;
    padding-left: 12px;
  }

  .hero-copy {
    width: min(420px, calc(100vw - 20px));
    padding: 12px 14px 16px;
  }

  .hero-copy,
  .page-banner-card,
  .card,
  .panel,
  .quote-block,
  .note-panel {
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-banner {
    height: 220px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy h1 {
    font-size: clamp(1.6rem, 7vw, 2.3rem);
    max-width: 14ch;
  }

  .section h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .footer-inner {
    padding-bottom: 32px;
  }
}
