/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  background: #f6e7c9;
  color: #4b3418;
  line-height: 1.6;
}

/* Layout helpers */
.page {
  padding-top: 70px;
}

.section {
  padding: 3.5rem 1.5rem;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fbe9c9 0%, #f4ddb4 100%);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.section.titleless .section-inner {
  padding-top: 2rem;
}

/* Top bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, #f8e1b4 0%, #f6d898 40%, #f4cf7b 100%);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.top-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

/* Nav */
.nav {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6a4723;
  font-weight: 600;
}

.nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  padding: 4.5rem 1.5rem 3.5rem;
}

.hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(140deg, #fdf2de 0%, #f7d993 45%, #f2c66d 100%);
  border-radius: 32px;
  padding: 2.75rem 2rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

.hero-text {
  flex: 1 1 260px;
  min-width: 260px;
}

.hero-image {
  flex: 1 1 260px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero text styles */
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #b8871b;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 2.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.hero-tagline {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8b5a1c;
  margin: 0 0 1.25rem;
}

.hero-copy {
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 2px solid #b8871b;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}

.btn.primary {
  background: radial-gradient(circle at 30% 0%, #ffe9a1 0%, #e0a51f 50%, #c58610 100%);
  color: #3f2a10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.btn.ghost {
  background: transparent;
  color: #7a4c1a;
}

/* Section headings */
.section-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 0.75rem;
}

.section-subtitle {
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.section-subheading {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

/* Lists */
.flavor-list,
.bullet-list {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.flavor-note,
.investor-note {
  margin-top: 0.75rem;
}

/* Investors pills */
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(248, 230, 186, 0.9);
  border: 1px solid rgba(186, 138, 49, 0.6);
  font-size: 0.78rem;
}

/* Contact */
.contact-card {
  background: #fffaf1;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-block p {
  margin: 0.2rem 0;
}

/* Footer */
.footer {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #7a5a30;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    padding: 2rem 1.5rem 2.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 0.86rem;
  }

  .section-inner {
    padding: 2rem 1.5rem;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .nav {
    font-size: 0.78rem;
  }
}