/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; height: auto; display: block; }

/* ── Tokens ── */
:root {
  --teal:           #4DC4C4;
  --teal-dark:      #3AABAB;
  --teal-light:     #EAF7F7;
  --pink-light:     #FDF0F5;
  --yellow-light:   #FEF9EE;
  --green-light:    #EFF8F0;
  --lavender-light: #F4F0FA;
  --peach-light:    #FFF4EE;
  --white:          #FFFFFF;
  --off-white:      #FAFAFA;
  --text:           #333333;
  --text-light:     #666666;
  --border:         #EBEBEB;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo  { height: 44px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(160deg, #fff 0%, var(--teal-light) 55%, #fff 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  max-width: 640px;
}

.hero-logo {
  width: min(420px, 88vw);
  border-radius: 16px;
  filter: drop-shadow(0 6px 20px rgba(77, 196, 196, 0.2));
}

.hero-tagline {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  color: var(--teal-dark);
  font-weight: 700;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(77, 196, 196, 0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(77, 196, 196, 0.5);
}

.btn--white {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.btn--white:hover {
  background: var(--teal-light);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.15);
}

/* ── Sections ── */
.section { padding: 5rem 1.5rem; }

.section--teal {
  background: var(--teal);
  color: #fff;
  text-align: center;
}
.section--teal .section-heading { color: #fff; }
.section--teal p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.container        { max-width: 1100px; margin: 0 auto; }
.container--narrow{ max-width: 680px;  margin: 0 auto; }

.section-heading {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--teal-dark);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.section-intro {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ── Makes Grid ── */
.makes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.make-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--off-white);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.make-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Pastel cycling backgrounds */
.make-card:nth-child(6n+1) { background: var(--pink-light);     border-color: #f0c8d8; }
.make-card:nth-child(6n+2) { background: var(--teal-light);     border-color: #b8e4e4; }
.make-card:nth-child(6n+3) { background: var(--yellow-light);   border-color: #ede0b0; }
.make-card:nth-child(6n+4) { background: var(--lavender-light); border-color: #d4c4ec; }
.make-card:nth-child(6n+5) { background: var(--green-light);    border-color: #b4d8bc; }
.make-card:nth-child(6n+6) { background: var(--peach-light);    border-color: #edcfb8; }

.make-emoji { font-size: 2.6rem; line-height: 1; }
.make-name  { font-weight: 600; font-size: 0.875rem; color: var(--text); }

/* ── About ── */
.about-body { font-size: 1.05rem; color: var(--text-light); }
.about-body p { margin-bottom: 1rem; }
.about-body p:last-child { margin-bottom: 0; }

/* ── Footer ── */
.footer {
  background: #2d2d2d;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-name {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
}
.footer-heart { font-size: 0.9rem; }
.footer-social {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-social:hover { color: var(--teal-light); }

/* ── Responsive ── */
@media (max-width: 600px) {
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.8rem; }
  .makes-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}
