@font-face {
  font-family: "Schoolbell";
  src: url("assets/Schoolbell-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nav-bg:    #3e3220;
  --nav-text:  #c8b99a;
  --hero-bg:   #221604;
  --body-bg:   #ffffff;
  --card-bg:   #ffffff;
  --text-dark: #000000;
  --text-mid:  #000000;
  --text-light:#000000;
  --border:    #d4c9b8;
  --accent:    #c8a96e;
}

html { scroll-behavior: smooth; }

body {
  font-family: sans-serif;
  background: var(--body-bg);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.65;
}

.indie-flower-regular {
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}


/* ── NAVIGATION ── */

.home-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: rgba(180, 175, 168, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-radius: 15px;
}


.home-logo {
  font-family: "Schoolbell", cursive;
  font-weight: 400;
  font-size: 24px;
  color: #221604;
  text-decoration: none;
}

.home-nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.home-nav-links a {
  color: #221604;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-nav-links a:hover {
  opacity: 0.5;
}

.home-nav-cart {
  background: #221604;
  color: #ffffff !important;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px !important;
  letter-spacing: 0 !important;
}

.home-nav-cart:hover {
  opacity: 0.7 !important;
}
/* GALLERY STRIP */
.home-gallery {
  background: #ffffff;
  padding: 80px 40px;
}

/* ── HERO ── */
.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 22, 4, 0.2);
}

.home-hero-text {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

.home-hero-title {
  font-family: "Schoolbell", cursive;
  font-size: 52px;
  color: #EDE7DA;
  margin-bottom: 10px;
  transition: opacity 0.5s ease;
}

.home-hero-sub {
  display: block;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #EDE7DA;
  text-decoration: none;
  text-transform: uppercase;
}


@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

/* ── CENTERED CONTENT WRAPPER ── */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── SECTION WRAPPERS ── */
.section { padding: 72px 0; }
.section-sm { padding: 56px 0; }

/* ── WHAT MAKES US UNIQUE ── */
.unique-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Schoolbell', cursive;
  font-weight: 400;
  font-size: 52px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-align: center;
}

.section-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 36px;
  text-align: center;
}

/* ── WHAT MAKES US UNIQUE — 3-col typographic ── */
.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
}

.unique-col {
  padding: 0 40px;
  border-right: 1px solid var(--border);
}

.unique-col:first-child { padding-left: 0; }
.unique-col:last-child  { padding-right: 0; border-right: none; }

.unique-word {
  font-family: 'Schoolbell', cursive;
  font-size: 52px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 20px;
}

.unique-rule {
  width: 36px;
  height: 1.5px;
  background: var(--text-dark);
  margin-bottom: 20px;
}

.unique-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.85;
}

/* ── UNIQUE VIDEO ── */
.unique-video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* ── DIVIDER ── */
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── OUR STORY HERO ── */

/* slow pure fade — no slide */
.story-hero.reveal {
  transform: none;
  transition: opacity 2.2s ease;
}
.story-hero.reveal.visible {
  transform: none;
}

.story-hero {
  position: relative;
  width: 100%;
  margin-top: 96px;
}
.story-hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.story-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: calc(100% - 96px);
  max-width: 680px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 56px 56px 56px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.story-hero-content.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -48%);
}
.story-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  color: #000;
  cursor: pointer;
  opacity: 0.45;
  padding: 4px 6px;
  transition: opacity 0.2s;
}
.story-close:hover { opacity: 1; }

.story-hero-title {
  font-family: 'Schoolbell', cursive;
  font-size: 52px;
  font-weight: 400;
  color: #000;
  margin-bottom: 28px;
  line-height: 1;
}
.story-hero-text {
  font-size: 15px;
  color: #000;
  line-height: 1.85;
}

.coffae-brand {
  font-family: 'Schoolbell', cursive;
  font-size: 1.05em;
}


.story-img {
  width: 100%;
  max-width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
  filter: sepia(10%) brightness(0.97);
}

.story-img-placeholder {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/7;
  height: auto;
  background: linear-gradient(135deg, #c8b89a 0%, #a08860 40%, #7a6040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.story-img-placeholder::after {
  content: 'Our Story Photo';
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 100%;
}

/* ── THE MAKERS ── */
.makers-section { padding: 72px 0; }

.makers-header { margin-bottom: 56px; text-align: center; }

.makers-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.makers-title {
  font-family: 'Schoolbell', cursive;
  font-size: 48px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
  line-height: 1;
}

.makers-group { margin-bottom: 64px; }

.makers-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.makers-divider::before,
.makers-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.makers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.maker-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, opacity 0.35s ease;
  position: relative;
  z-index: 1;
}

/* dim all cards when any is hovered */
.makers-grid:hover .maker-card {
  opacity: 0.55;
  transform: scale(0.96);
}

/* pop the hovered card forward */
.makers-grid:hover .maker-card:hover {
  opacity: 1;
  transform: scale(1.07);
  z-index: 2;
}

.maker-photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--border);
}

.maker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: sepia(6%) brightness(0.98);
}

.maker-card:hover .maker-photo { transform: scale(1.06); }

.maker-photo--koko {
  object-position: center 78%;
  transform: scale(1.5);
  transform-origin: center 78%;
}
.maker-card:hover .maker-photo--koko { transform: scale(1.55); }

.maker-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.maker-name {
  font-family: 'Schoolbell', cursive;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.2;
}

.maker-role {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.maker-email {
  font-size: 10px;
  color: var(--text-light);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.04em;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOOTER SPACER ── */
.footer-spacer { height: 80px; }

/* ── HAMBURGER BUTTON (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }





/* ════════════════════════════════════════
   MEDIA QUERIES
   ════════════════════════════════════════ */

/* ── TABLET (481px – 1024px) ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
    height: 48px;
  }

  .nav-links { gap: 14px; }
  .nav-links a { font-size: 10px; }
  .nav-logo { font-size: 12px; }
  .nav-icons svg { width: 15px; height: 15px; }
  .nav-icons { gap: 12px; }

  .hero { padding: 32px 0 0; }
  .hero-title { font-size: 34px; padding: 0 32px 28px; }

  .page-content { padding: 0 32px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 44px 0; }
  .teams-section { padding: 56px 0; }

  .makers-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}

/* ── SMALL TABLET / LARGE PHONE (481px – 768px) ── */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    height: 52px;
    position: relative;
  }

  /* Hide text links, show hamburger */
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    padding: 8px 0 16px;
    z-index: 150;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 11px 24px;
    font-size: 12px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(200,185,154,0.1);
  }

  .nav-logo {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .nav-icons { gap: 14px; }
  .nav-icons svg { width: 17px; height: 17px; }

  /* Hero */
  .hero { padding: 28px 0 0; }
  .hero-title { font-size: 36px; padding: 0 24px 24px; }

  /* Sections */
  .page-content { padding: 0 24px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 40px 0; }
  .teams-section { padding: 48px 0; }

  /* Unique grid stacks on mobile */
  .unique-grid { grid-template-columns: 1fr; gap: 40px; }
  .unique-col { padding: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 40px; }
  .unique-col:last-child { border-bottom: none; padding-bottom: 0; }

  /* Story image full width */
  .story-img-placeholder { max-width: 100%; }

  .makers-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .makers-title { font-size: 38px; }
}

/* ── PHONE (≤ 480px) ── */
@media (max-width: 480px) {
  nav { padding: 0 16px; height: 50px; }
  .nav-links { top: 50px; }
  .nav-logo { font-size: 12px; letter-spacing: 0.18em; }
  .nav-icons { gap: 10px; }
  .nav-icons svg { width: 16px; height: 16px; }

  .hero { padding: 22px 0 0; }
  .hero-title { font-size: 30px; padding: 0 16px 20px; }

  .page-content { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-sm { padding: 32px 0; }
  .teams-section { padding: 40px 0; }

  .section-title { font-size: 18px; }
  .teams-title { font-size: 24px; margin-bottom: 28px; }

  .makers-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .makers-title { font-size: 32px; }
  .story-text { font-size: 13px; }
}
