:root {
  --bg: #b9b4b4;
  --page: #fbf8f3;
  --paper: #ffffff;
  --ink: #181311;
  --muted: #746b65;
  --line: #eee3db;
  --accent: #ff5e66;
  --accent-dark: #db3745;
  --warm: #fff0e3;
  --shadow: 0 18px 38px rgba(41, 23, 18, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.site-header {
  margin-top: 4px;
  min-height: 36px;
  background: #fff;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark img {
  width: 78px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-nav a {
  color: #171212;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.header-cta {
  width: 159px;
  padding: 14px;
  border-radius: 999px;
  background: #ff7a76;
  color: #fff !important;
  text-align: center;
}

.section {
  padding: 40px 0px;
  background: #f5f8fb;
}

.section .container,
.hero .container,
.cta-wrap .container,
.footer .container {
  padding-right: 16px;
  padding-left: 16px;
}

.hero {
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  gap: 24px;
  align-items: end;
  padding-top: 10px;
  padding-bottom: 14px;
}

.hero-figure {
  align-self: end;
}

.hero-figure img {
  max-height: 230px;
  object-fit: cover;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
}

.hero-copy h1 span {
  color: #ff7872;
}

.hero-copy {
  padding-bottom: 18px;
}

.hero-copy p {
  margin: 16px 0 0;
  color: #807772;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.hero-switch {
  display: flex;
  width: 182px;
  margin: 22px auto 0;
  padding: 4px;
  border-radius: 999px;
  background: #f7eceb;
}

.hero-switch a {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  color: #8f8581;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.hero-switch .is-active {
  background: linear-gradient(180deg, #ff7f78, #ff6761);
  color: #fff;
  box-shadow: 0 8px 16px rgba(255, 103, 97, 0.24);
}

.creations-grid,
.diy-grid {
  display: grid;
  gap: 12px;
}

.section-title {
  margin: 0 0 25px;
  color: #171212;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

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

.diy-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mini-card,
.diy-card,
.festival-card,
.story-card {
  overflow: hidden;
  border: 1px solid rgba(78, 45, 32, 0.08);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mini-card img,
.diy-card img {
  aspect-ratio: 0.64;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.feature {
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fff6ed);
}

.feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.feature-meta h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.feature-meta span {
  color: var(--muted);
  font-size: 10px;
}

.feature-shot {
  overflow: hidden;
  border-radius: 14px;
}

.feature-shot img {
  aspect-ratio: 1.55;
  object-fit: cover;
}

.festival-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 10px;
}

.festival-stack {
  display: grid;
  gap: 10px;
}

.festival-card {
  position: relative;
  min-height: 126px;
}

.festival-card img {
  height: 100%;
  object-fit: cover;
}

.festival-card.large {
  min-height: 262px;
}

.festival-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(21, 12, 10, 0.88));
  color: white;
}

.festival-copy strong,
.festival-copy span {
  display: block;
}

.festival-copy strong {
  font-size: 14px;
  line-height: 1.1;
}

.festival-copy span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
}

.cta-wrap {
  padding: 20px 0 8px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  border-radius: 16px;
  background: #1d1b1b;
  color: white;
  text-align: center;
}

.cta-frame {
  position: absolute;
  width: 26px;
  opacity: 0.34;
  pointer-events: none;
}

.cta-frame-left {
  top: 14px;
  left: 10px;
}

.cta-frame-right {
  right: 36px;
  bottom: 20px;
}

.cta-logo {
  width: 70px;
  margin: 0 auto 10px;
}

.cta h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.cta p {
  margin: 3px auto 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 8px 14px;
  border-radius: 12px;
  background: #ff726d;
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.footer {
  margin-top: 18px;
  background: #f8f8f8;
  color: #99908b;
  font-size: 10px;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-brand img {
  width: 82px;
  height: auto;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-nav a {
  color: #8d8581;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

@media (max-width: 420px) {
  .topbar {
    padding: 10px 12px;
  }

  .brand-mark img {
    width: 72px;
  }

  .header-nav {
    gap: 12px;
  }

  .shell {
    padding: 0 10px 24px;
  }

  .page-title {
    font-size: 27px;
  }

  .section-title {
    margin-bottom: 14px;
    font-size: 17px;
  }

  .hero-grid {
    grid-template-columns: 82px 1fr 82px;
    gap: 10px;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .hero-copy p {
    font-size: 11px;
  }

  .hero-switch {
    width: 150px;
    margin-top: 16px;
  }

  .hero-switch a {
    font-size: 9px;
    padding: 9px 8px;
  }

  .hero-figure img {
    max-height: 168px;
  }

  .creations-grid,
  .diy-grid {
    gap: 8px;
  }

  .footer .container {
    min-height: 64px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .footer-brand img {
    width: 74px;
  }

  .footer-nav {
    gap: 10px;
  }

  .footer-nav a {
    font-size: 8px;
  }

  .cta {
    padding: 16px 14px 14px;
  }

  .cta-logo {
    width: 62px;
    margin-bottom: 8px;
  }

  .cta h3 {
    font-size: 11px;
  }

  .cta p {
    font-size: 7px;
  }

  .cta a {
    min-width: 96px;
    padding: 7px 12px;
    font-size: 8px;
  }
}
