
:root {
  --bg: #f7f4ef;
  --text: #1f2430;
  --muted: #5f6875;
  --line: #ddd7cf;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.68;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,244,239,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  color: inherit;
}
.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

@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 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 58%;
  background-image: url('assets/clouds_overlay.png');
  background-repeat: repeat-x;
  background-size: 50% 100%;
  animation: cloudDrift1 70s linear infinite;
}
.cloud-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 58%;
  background-image: url('assets/clouds_overlay.png');
  background-repeat: repeat-x;
  background-size: 50% 100%;
  opacity: 0.5;
  animation: cloudDrift2 110s linear infinite;
}

.home-banner {
  position: relative;
  min-height: calc(100vh - 73px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}
.home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/Maaike_Bright.png') no-repeat center 38%/cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
  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.03), rgba(255,255,255,0.06));
  pointer-events: none;
}
@keyframes bannerDrift {
  0% { transform: scale(1.02) translateY(0); }
  100% { transform: scale(1.06) translateY(-10px); }
}

.home-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 24px 235px;
  display: flex;
  justify-content: flex-end;
}
.hero-copy {
  max-width: 560px;
  background: rgba(255,255,255,0.30);
  backdrop-filter: blur(4px);
  padding: 28px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31,36,48,0.08);
}
.eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #23313f;
  opacity: 0.92;
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.03;
  margin: 0 0 18px;
}
.hero-copy p {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  margin: 0 0 18px;
  color: #23313f;
}
.hero-note {
  font-size: 1rem;
  color: rgba(35,49,63,0.78);
}

@media (max-width: 900px) {
  .home-banner {
    min-height: calc(100vh - 73px);
  }
}
@media (max-width: 640px) {
  .hero-copy {
    padding: 22px 20px;
  }
  .home-banner-inner {
    padding-top: 28px;
    padding-bottom: 120px;
    justify-content: flex-start;
  }
}
