* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: #222222;
  background: linear-gradient(90deg, #fde19e 0%, #f7b0c8 50%, #efb3ff 100%);
}

/* NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ff7b7b;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 60px;
}

.nav-list a {
  text-decoration: none;
  color: #0c0c0c;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 20px;
}

.hamburger {
  background: transparent;
  border: 0;
  padding: 0;
  width: 32px;
  height: 32px;
}

.hamburger img {
  width: 100%;
  height: 100%;
  display: block;
}

/* HERO */
.hero {
  padding: 56px 20px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
  min-height: clamp(420px, 60vh, 560px);
}

.hero-copy {
  background: rgba(255, 255, 255, 0);
  padding: 0 12px 0 0;
}

.hero-copy h1 {
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 6px;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-copy p {
  font-size: clamp(14px, 1.9vw, 18px);
  line-height: 1.8;
  max-width: 640px;
  color: #333333;
}

.btn {
  display: inline-block;
  margin-top: 28px;
  background-color: #ff7b7b;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 600;
}

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

.hero-image img {

  object-fit: cover;
  display: block;
}

/* MOSAIC SECTION */
.mosaic {
  max-width: 1200px;
  margin: 64px auto;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mosaic-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: clamp(150px, 22vw, 240px);
  gap: 22px;
}

.tile {
  overflow: hidden;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile-a { grid-column: 1 / 2; grid-row: 1; }
.tile-b { grid-column: 1 / 2; grid-row: 2; }
.tile-c { grid-column: 2 / 3; grid-row: span 2; }

.mosaic-cta .card {
  background: #ff7b7b;
  padding: 40px 48px;
  max-width: 560px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #3d3d3d;
}

.mosaic-cta h2 {
  font-size: clamp(28px, 4.8vw, 56px);
  color: #0a0a0a;
  letter-spacing: 4px;
  line-height: 1.15;
  margin-bottom: 28px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 600;
}

.cta-link img {
  width: 22px;
  height: 22px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-list {
    gap: 24px;
  }
  .mosaic {
    gap: 32px;
  }
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .mosaic {
    grid-template-columns: 1fr;
  }
  .mosaic-cta .card {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .nav { position: relative; }
  .nav-list {
    position: absolute;
    right: 20px;
    top: 60px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: none;
    flex-direction: column;
    padding: 10px 6px;
    gap: 0;
    min-width: 200px;
  }
  .nav.open .nav-list { display: flex; }
  .nav-list li { padding: 8px 10px; }
  .nav-list a { display: block; font-size: 16px; color: #222; }
}
