@font-face {
  font-family: 'FK Grotesk';
  src: url('/fonts/FKGroteskNeue/FKGroteskNeue-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FK Grotesk';
  src: url('/fonts/FKGroteskNeue/FKGroteskNeue-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FK Grotesk';
  src: url('/fonts/FKGroteskNeue/FKGroteskNeue-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Base styles - Mobile first */
body {
  margin: 0;
  font-family: 'FK Grotesk', sans-serif;
  background: #F8F6F3;
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  padding-top: 80px; /* Account for fixed nav */
}

/* Site Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1A1A1A;
  color: #fff;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navigation Items */
.nav-items {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav-contact {
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
  font-size: 0.875rem;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.nav-contact:hover {
  background: #fff;
  color: #1A1A1A;
}

/* Dropdown Container */
.dropdown-container {
  position: relative;
}

/* Dropdown Trigger */
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
  background: transparent;
  border: 1px solid transparent;
  color: #fff;
  font-family: 'FK Grotesk', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  min-height: 44px;
}

.dropdown-trigger:hover,
.dropdown-trigger[aria-expanded="true"] {
  background: #363636;
  color: #fff;
  border-color: #363636;
}

.dropdown-trigger[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Icon */
.dropdown-icon {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: clamp(320px, 25vw, 400px);
  background: #F8F6F3;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1100;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Content */
.dropdown-content {
  padding: clamp(12px, 2vw, 16px);
}

/* Dropdown Items */
.dropdown-item {
  display: block;
  padding: clamp(12px, 2vw, 16px);
  text-decoration: none;
  color: #1A1A1A;
  border-radius: 4px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  margin-bottom: 2px;
}

.dropdown-item:hover {
  background: #EAE5DF;
  border-color: #B0B0B0;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.item-content h3 {
  margin: 0 0 0.25rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A1A1A;
  font-family: 'FK Grotesk', sans-serif;
}

.item-content p {
  margin: 0;
  font-size: 0.75rem;
  color: #6B6B6B;
  line-height: 1.4;
  font-family: 'FK Grotesk', sans-serif;
}

/* Responsive Dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: fixed;
    top: 80px;
    left: 12px;
    right: 12px;
    width: calc(100vw - 24px);
    margin-left: 0;
    margin-right: 0;
  }
  
  .nav-items {
    gap: clamp(0.5rem, 2vw, 1rem);
  }
}

@media (max-width: 480px) {
  .item-content h3 {
    font-size: 0.8rem;
  }
  
  .item-content p {
    font-size: 0.7rem;
  }
}

h1, h2, h3 {
  font-weight: 400;
  margin-bottom: 0.5em;
}

/* Responsive typography */
h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

header h1 {
  color: #fff;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.container {
  max-width: 1700px;
  padding: 0 clamp(1rem, 5vw, 4rem);
  margin: 0 auto;
}

header {
  padding: clamp(120px, 15vw, 200px) 0 clamp(48px, 8vw, 96px);
  text-align: center;
  min-height: clamp(480px, 80vh, 680px);
  background-image: url('meatnd_hero.png'); /* Hero image of Meatnd brand and products */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

header .container {
  position: relative;
  z-index: 2;
}


.subhead {
  font-size: 1.125rem;
  color: #6B6B6B;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

header .subhead {
  color: #fff;
}

header .content-body {
  color: #fff;
}

.cta-button {
  background: #1A1A1A;
  color: #fff;
  text-decoration: none;
  padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 32px);
  font-size: 0.875rem;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.05em;
  display: inline-block;
  transition: background-color 0.2s ease;
}

header .cta-button {
  background: #fff;
  color: #1A1A1A;
}

header .cta-button:hover {
  background: #EAE5DF;
  color: #1A1A1A;
}

.cta-button:hover {
  background: #EAE5DF;
  color: #1A1A1A;
}

/* Responsive section padding */
.features, .audience, .why, .how, .cta {
  padding: clamp(48px, 8vw, 96px) 0;
}

/* Mobile-first grid layouts */
.three-col, .two-col, .four-step {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 64px);
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .three-col, .two-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .three-col > div,
  .two-col > div {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
  }
  
  .four-step {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .four-step > div {
    flex: 1 1 calc(50% - 32px);
    min-width: 240px;
  }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .three-col > div {
    flex: 1 1 calc(33.333% - 42px);
  }
  
  .four-step > div {
    flex: 1 1 calc(25% - 48px);
  }
}

.four-step strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5em;
}

/* Form styles with responsive padding */
form {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

input, select, textarea {
  padding: clamp(12px, 2vw, 16px);
  border: 1px solid #E0E0E0;
  background: #fff;
  font-family: 'FK Grotesk';
  font-size: 1rem;
  border-radius: 4px;
  min-height: 44px; /* Mobile touch target */
}

textarea {
  min-height: 100px;
  resize: vertical;
}

button {
  background: #1A1A1A;
  color: #fff;
  border: none;
  padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 32px);
  font-size: 0.875rem;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-height: 44px; /* Mobile touch target */
}

button:hover {
  background: #EAE5DF;
  color: #1A1A1A;
}

footer {
  padding: clamp(32px, 6vw, 64px) 0;
  text-align: center;
  font-size: 0.875rem;
  color: #6B6B6B;
}

/* Product Categories Section */
.products {
  padding: clamp(48px, 8vw, 96px) 0;
}

.accordion {
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  background: #F3F1EC;
  margin-bottom: 1px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 3vw, 24px) clamp(24px, 4vw, 32px);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background: #EAE5DF;
}

.accordion-header h3 {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #1A1A1A;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #1A1A1A;
  transition: transform 0.2s ease;
  min-width: 24px;
  text-align: center;
}

.accordion-content {
  background: #fff;
  display: none;
}

.accordion-content[x-show] {
  display: block;
}

.accordion-content p {
  padding: clamp(20px, 3vw, 24px) clamp(24px, 4vw, 32px);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #6B6B6B;
}

/* Additional responsive improvements */
.audience ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #EAE5DF;
}

.audience li:last-child {
  border-bottom: none;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Audience Cards Section */
.audience-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 64px);
}

.audience-card {
  background: #F3F1EC;
  padding: clamp(32px, 5vw, 64px);
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.audience-card h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #1A1A1A;
}

.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-card li {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid #EAE5DF;
}

.audience-card li:last-child {
  border-bottom: none;
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}

/* Responsive: side-by-side on tablet+ */
@media (min-width: 768px) {
  .audience-cards {
    flex-direction: row;
  }
  .audience-card {
    min-width: 0;
  }
}

/* Stacked Feature Blocks */
.features {
  padding: 0;
  margin: 0;
}

.feature-block {
  background: #1A1A1A;
  color: #fff;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  min-height: 320px;
  padding: clamp(2rem, 8vw, 4rem) clamp(1.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

.feature-block h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin: 0 0 1.25rem 0;
  color: #fff;
}

.feature-block h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin: 0;
  color: #fff;
  max-width: 700px;
}

.feature-divider {
  width: 100vw;
  height: 1px;
  background: #fff;
  margin-left: 50%;
  transform: translateX(-50%);
  border: none;
  display: block;
}

@media (min-width: 900px) {
  .feature-block {
    min-height: 400px;
    padding: clamp(3rem, 10vw, 6rem) clamp(4rem, 12vw, 10rem);
  }
}
