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

:root {
  --gold: #b8892a;
  --gold-70: rgba(184,137,42,0.7);
  --gold-60: rgba(184,137,42,0.6);
  --gold-45: rgba(184,137,42,0.45);
  --gold-40: rgba(184,137,42,0.4);
  --gold-15: rgba(184,137,42,0.15);
  --gold-10: rgba(184,137,42,0.1);
  --gold-07: rgba(184,137,42,0.07);
  --cream: #f5eed8;
  --cream-75: rgba(245,238,216,0.75);
  --cream-70: rgba(245,238,216,0.7);
  --cream-60: rgba(245,238,216,0.6);
  --cream-45: rgba(245,238,216,0.45);
  --cream-35: rgba(245,238,216,0.35);
  --cream-20: rgba(245,238,216,0.2);
  /*--bg: #64482c;*/
   --bg: #452e17;
}

html { scroll-behavior: smooth; }

body {
  background: #c39e78;
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 22px 48px;
/*  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);*/
}

nav ul { list-style: none; display: flex; gap: 36px; }

nav ul li a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
nav ul li a:hover { color: var(--cream); }
nav ul li a:hover::after { width: 100%; }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-toggle span:nth-child(3) { width: 60%; align-self: flex-end; }

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
.mobile-menu a:hover { color: var(--cream); }
.mobile-menu a:hover::after { width: 100%; }

@media (max-width: 600px) {
  nav { padding: 20px 24px; }
  nav ul { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/* ── HOME ── */
#home {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

#logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

#logo {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  z-index: 1;
  position: relative;
}

#tagline {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-60);
  font-weight: 300;
  white-space: nowrap;
}

#bird {
  position: absolute;
  top: 20px;
  left: 15%;
  width: 60px;
  opacity: 0.92;
  z-index: 2;
  animation: drift 8s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  30%       { transform: translateY(-12px) rotate(-1.5deg); }
  60%       { transform: translateY(6px) rotate(1deg); }
}

#bottom-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1400px;
  opacity: 0.92;
  z-index: 3;
  display: block;
}

.scroll-hint {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-35);
  animation: pulse 2.5s ease-in-out infinite;
  white-space: nowrap;
  text-decoration: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.75; }
}

/* ── SHARED SECTION STYLES ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-70);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-divider {
  width: 48px; height: 1px;
  background: var(--gold-40);
  margin: 0 auto;
}

/* ── COFFEES ── */
#coffees {
  background: var(--bg);
  padding: 100px 24px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coffee-item {
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.coffee-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.coffee-item img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 3px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.8), 0 6px 20px var(--gold-07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.coffee-item img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 90px rgba(0,0,0,0.85), 0 10px 32px rgba(184,137,42,0.14);
}
.coffee-desc {
  max-width: 520px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--cream-70);
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── ABOUT ── */
#about {
  background: var(--bg);
  padding: 100px 24px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--gold-10);
}

.about-body {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.about-body.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-body p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--cream-70);
  font-weight: 300;
  text-align: center;
}
.about-body p strong {
  color: var(--cream);
  font-weight: 400;
}
.about-body p em {
  color: var(--cream-45);
  font-style: italic;
}

/* ── THE BIRD ── */
#the-bird {
  background: var(--bg);
  padding: 100px 24px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--gold-10);
}

#the-bird .section-header {
  margin-bottom: 72px;
}

.bird-lede {
  max-width: 580px;
  text-align: center;
  margin-bottom: 64px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--cream-60);
  font-weight: 300;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.bird-lede.visible {
  opacity: 1;
  transform: translateY(0);
}
.bird-lede strong {
  color: var(--cream);
  font-weight: 400;
}

.scientific-tag {
  display: inline-block;
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-40);
  font-weight: 500;
}

.bird-facts {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bird-fact {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gold-10);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.bird-fact:first-child {
  border-top: 1px solid var(--gold-10);
}
.bird-fact.visible {
  opacity: 1;
  transform: translateY(0);
}

.bird-fact-num {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 300;
  padding-top: 0px;
  text-align: right;
}

.bird-fact-body h3 {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.bird-fact-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--cream-75);
  font-weight: 300;
}
.bird-fact-body p em {
  color: var(--cream-45);
  font-style: italic;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--gold-15);
  text-align: center;
  padding: 32px 24px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-60);
  background: var(--bg);
}
