/* =============================================
   THE FRESH BUNCH — style.css
   ============================================= */

/* --- Variables --- */
:root {
  --green-dark: #265233;
  --green-mid: #6AA84F;
  --gold: #A68943;
  --ochre: #B45F06;
  --cream: #f7f4e2;
  --cream-dark: #F7F4E2;;
  --text: #1a1a18;
  --text-light: #5a5a52;
  --white: #f7f9e9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 30px rgba(38, 82, 51, 0.08);
  --shadow-hover: 0 12px 50px rgba(38, 82, 51, 0.16);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5vw;
  background: #F7F4E2;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.nav.scrolled {
  border-bottom-color: rgba(166, 137, 67, 0.25);
  padding: 0.9rem 5vw;
  box-shadow: 0 2px 24px rgba(38,82,51,0.07);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex; gap: 0.18em; align-items: baseline;
}
.logo-the { color: var(--text-light); font-weight: 300; font-size: 0.85em; }
.logo-fresh { color: var(--green-dark); }
.logo-bunch { color: var(--green-dark); }
.logo-bunch-accent { color: var(--green-mid); }

.nav__links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav__links a {
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--text-light); text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--green-mid);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--green-dark); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--green-dark) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--green-mid) !important; color: var(--white) !important; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  width: 24px; height: 1.5px; background: var(--green-dark);
  display: block; transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2.5rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--green-dark); font-weight: 300; letter-spacing: -0.02em;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 10rem 5vw 6rem;
  position: relative; overflow: hidden;
  background: var(--cream);
}
.hero__bg-img {
  position: absolute;

  /* --- POSITION --- adjust these to move the image */
  right: 5vw;       /* horizontal: use 'right' or 'left' */
  top: 52%;         /* vertical anchor point */
  transform: translateY(-50%);  /* centers it vertically on the anchor */

  /* --- SIZE --- */
  width: 780px;     /* change this to make it bigger or smaller */
  height: auto;

  /* --- OPACITY --- 0 = invisible, 1 = fully visible */
  opacity: 0.1;

  user-select: none;
  pointer-events: none;
  object-fit: contain;
}
.hero__content {
  max-width: 680px; position: relative; z-index: 2;
  animation: fadeUp 1s ease both;
}
.hero__eyebrow {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 1.5rem; font-weight: 400;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.0;
  color: var(--green-dark); letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--green-mid); }
.hero__sub {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--text-light); max-width: 480px;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-left: 10rem; }



/* Scroll hint */
.hero__scroll-hint {
  position: absolute; bottom: 3rem; left: 5vw;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll-hint span {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer; border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-dark); color: var(--cream);
}
.btn--primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(38,82,51,0.22); }
.btn--ghost {
  background: transparent; color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn--ghost:hover { background: var(--green-dark); color: var(--cream); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-bar {
  background: var(--green-dark);
  padding: 0.85rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(249,249,247,0.75);
  flex-shrink: 0;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.category-section {
  padding: 7rem 5vw;
  position: relative;
}
.category-section--alt { background: var(--cream-dark); }

.section-header {
  max-width: 600px; margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ochre);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--green-dark); letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-desc {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--text-light); font-weight: 300;
  margin-bottom: 1.5rem;
}
.gold-divider {
  width: 60px; height: 1.5px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* =============================================
   PRODUCT GRID
   ============================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.7s ease both;
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.25s; }
.product-card:nth-child(4) { animation-delay: 0.35s; }

.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }

.product-card__img-wrap {
  height: 240px; position: relative; overflow: hidden;
  border-bottom: 1.5px solid var(--gold);
}
.product-card__img-wrap img { transition: transform 0.6s ease; }
.product-card__overlay {
  position: absolute; inset: 0;
  background: rgba(38, 82, 51, 0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.product-card__overlay span {
  color: var(--cream); font-family: var(--font-display);
  font-size: 1.1rem; font-style: italic; letter-spacing: 0.04em;
}

.product-card__body { padding: 1.5rem; }
.product-tag {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ochre);
  background: rgba(180, 95, 6, 0.08);
  padding: 0.2rem 0.6rem; border-radius: 100px;
  margin-bottom: 0.6rem;
}
.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400;
  color: var(--green-dark); margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.product-card__body p {
  font-size: 0.88rem; line-height: 1.7;
  color: var(--text-light); font-weight: 300;
  margin-bottom: 1rem;
}
.card-link {
  font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-mid);
  font-weight: 500;
  transition: gap var(--transition), color var(--transition);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.card-link:hover { color: var(--green-dark); gap: 0.6rem; }

/* =============================================
   INTERLUDE
   ============================================= */
.interlude {
  background: var(--green-dark);
  padding: 5rem 5vw;
}
.interlude__inner {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.interlude__inner p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--cream);
  line-height: 1.4; letter-spacing: -0.01em;
}
.interlude__inner em { font-style: italic; color: var(--green-mid); }

/* =============================================
   FOOD MESS
   ============================================= */
.mess-section { background: var(--cream); }
.coming-soon-ribbon {
  position: absolute; top: 2.5rem; right: 5vw;
  background: var(--ochre); color: var(--white);
  padding: 0.4rem 1.2rem; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; border-radius: 100px;
}

.mess-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem; margin-bottom: 4rem;
}
.mess-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid rgba(166, 137, 67, 0.2);
  transition: var(--transition);
}
.mess-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.mess-img-placeholder {
  height: 260px; overflow: hidden;
  border-bottom: 1.5px solid var(--gold);
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
}
.mess-img-placeholder img { object-fit: cover; }
.mess-card__body { padding: 1.5rem; }
.mess-card__body h3 {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 400; color: var(--green-dark);
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.mess-card__body p {
  font-size: 0.88rem; line-height: 1.7;
  color: var(--text-light); margin-bottom: 1rem; font-weight: 300;
}
.coming-tag {
  display: inline-block; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ochre); border: 1px solid var(--ochre);
  padding: 0.25rem 0.75rem; border-radius: 100px;
}

/* Notify Box */
.notify-box {
  background: var(--green-dark); border-radius: var(--radius-lg);
  padding: 3rem; text-align: center; color: var(--cream);
}
.notify-box h4 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 300; margin-bottom: 0.5rem; color: var(--cream);
}
.notify-box p {
  font-size: 0.9rem; color: rgba(249,249,247,0.7);
  margin-bottom: 1.5rem; font-weight: 300;
}
.notify-form {
  display: flex; gap: 0.75rem; max-width: 440px; margin: 0 auto;
}
.notify-form input {
  flex: 1; padding: 0.85rem 1.2rem;
  border: 1px solid rgba(166,137,67,0.4);
  background: rgba(255,255,255,0.08); color: var(--cream);
  border-radius: 100px; font-family: var(--font-body);
  font-size: 0.88rem; outline: none;
  transition: border-color var(--transition);
}
.notify-form input::placeholder { color: rgba(249,249,247,0.45); }
.notify-form input:focus { border-color: var(--gold); }
.notify-form button {
  background: var(--gold); color: var(--white);
  border: none; padding: 0.85rem 1.5rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.notify-form button:hover { background: var(--ochre); transform: translateY(-2px); }
.notify-confirm {
  font-size: 0.82rem; color: var(--green-mid);
  margin-top: 0.75rem; min-height: 1.2em;
}

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { padding: 7rem 5vw; background: var(--cream-dark); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.why-card {
  padding: 2.5rem 1.75rem;
  border: 1px solid rgba(166, 137, 67, 0.2);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}
.why-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 400;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; font-weight: 300; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { padding: 7rem 5vw; background: var(--cream); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; max-width: 1100px;
}
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--green-dark);
  line-height: 1.2; letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
}
.contact-text h2 em { font-style: italic; color: var(--green-mid); }
.contact-text > p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.2rem; }
.c-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ochre); }
.contact-item a { font-size: 1rem; color: var(--green-dark); font-weight: 400; transition: color var(--transition); }
.contact-item a:hover { color: var(--green-mid); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 1rem 1.2rem;
  border: 1px solid rgba(166, 137, 67, 0.25);
  border-radius: var(--radius);
  background: var(--white); color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-mid);
}
.form-group textarea { resize: vertical; }
.form-confirm { font-size: 0.82rem; color: var(--green-mid); text-align: center; min-height: 1.2em; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--green-dark); color: var(--cream);
  padding: 4rem 5vw 2rem;
}
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem;
  padding-bottom: 3rem; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(166, 137, 67, 0.2);
}
.footer__brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__brand > div { display: flex; gap: 0.18em; align-items: baseline; font-family: var(--font-display); font-size: 1.5rem; }
.footer__brand .logo-the { opacity: 0.6; font-weight: 300; font-size: 0.85em; }
.footer__brand .logo-fresh { color: var(--cream); }
.footer__brand .logo-bunch { color: var(--cream); }
.footer__brand .logo-bunch-accent { color: var(--green-mid); }
.footer__brand p { font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(249,249,247,0.5); text-transform: uppercase; }
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a { font-size: 0.88rem; color: rgba(249,249,247,0.65); transition: color var(--transition); }
.footer__links a:hover { color: var(--green-mid); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: rgba(249,249,247,0.4);
}
.footer__bottom em { font-style: italic; color: rgba(249,249,247,0.5); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spinReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding: 8rem 5vw 5rem; }
  .hero__badge { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .section-header { margin-bottom: 2.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .mess-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .notify-form { flex-direction: column; }
  .notify-form button { width: 100%; }
  .hero__scroll-hint { display: none; }
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 400px) {
  .why-grid { grid-template-columns: 1fr; }
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
  margin-top: 0.5rem;
}
.btn--gold:hover { background: var(--ochre); transform: translateY(-2px); }

.why-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}