@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --teal:     #2d7d8f;
  --teal-dk:  #1e5f6e;
  --teal-lt:  #4fa8bc;
  --coral:    #e87c7c;
  --coral-lt: #f2a9a9;
  --purple:   #8b6db5;
  --purple-lt:#b09fd4;
  --green:    #5a7a4a;
  --green-lt: #7fa367;
  --cream:    #fdf6ee;
  --cream-dk: #f5e8d8;
  --brown:    #7a5230;
  --dark:     #2a2a2a;
  --mid:      #555;
  --light:    #999;
  --white:    #fff;

  --font-h:   'Playfair Display', Georgia, serif;
  --font-b:   'Lato', 'Helvetica Neue', sans-serif;

  --shadow:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.15);
  --radius:   12px;
  --radius-lg:20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--coral);  color: var(--white); }
.btn-secondary { background: var(--teal);   color: var(--white); }
.btn-outline   {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-purple {
  background: var(--purple);
  color: var(--white);
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--cream-dk);
}

.nav-logo-text {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-dk);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-b);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  color: var(--mid);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  background: rgba(45, 125, 143, 0.08);
}
.nav-links a.active { color: var(--teal-dk); }

.nav-sub {
  font-size: 0.72rem;
  color: var(--coral);
  margin-left: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-order {
  background: var(--coral);
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.45rem 1.1rem !important;
}
.nav-order:hover { background: var(--teal) !important; color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--teal-dk);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.65rem 1rem; font-size: 1rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dk) 60%, #e8d5c4 100%);
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,109,181,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

.hero h1 { color: var(--teal-dk); margin-bottom: 1.2rem; }
.hero h1 em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--mid);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-img-wrap img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.15));
  animation: float 4s ease-in-out infinite;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 120px;
}
.hero-badge .big { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; color: var(--teal); }
.hero-badge .small { font-size: 0.75rem; color: var(--light); text-transform: uppercase; letter-spacing: 0.1em; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { max-height: 280px; }
  .hero-badge { right: 10%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 40px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.page-hero .section-label { color: var(--coral-lt); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading h2 { color: var(--teal-dk); margin-bottom: 0.5rem; }
.section-heading p { color: var(--mid); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Alternate section backgrounds */
.bg-cream    { background: var(--cream); }
.bg-cream-dk { background: var(--cream-dk); }
.bg-teal     { background: var(--teal-dk); color: var(--white); }
.bg-teal h2, .bg-teal h3 { color: var(--white); }
.bg-teal .section-label  { color: var(--coral-lt); }
.bg-teal p               { color: rgba(255,255,255,0.85); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.product-card-img.contain {
  object-fit: contain;
  background: var(--cream-dk);
  padding: 1.5rem;
}

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.product-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--teal-dk);
}
.product-card-body p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 1rem;
}
.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
}
.badge-spicy {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--coral);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-seasonal {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--green);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-masonry {
  columns: 3 280px;
  column-gap: 1rem;
}
.gallery-masonry img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  break-inside: avoid;
  transition: transform 0.3s ease;
}
.gallery-masonry img:hover { transform: scale(1.02); }

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3rem 1.5rem;
  background: var(--teal-dk);
}
.feature-item {
  text-align: center;
  color: var(--white);
  flex: 1;
  min-width: 160px;
  max-width: 200px;
}
.feature-item .icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.feature-item h4 {
  font-family: var(--font-h);
  color: var(--white);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.feature-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote-section {
  background: var(--purple);
  padding: 4rem 1.5rem;
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.quote-section cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-b);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}
.form-wrap h3 { color: var(--teal-dk); margin-bottom: 1.5rem; }

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dk);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   LOCATION / MARKET CARD
   ============================================================ */
.market-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.market-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--coral);
  transition: transform 0.2s;
}
.market-card:hover { transform: translateY(-3px); }
.market-card .market-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.market-card h3 { color: var(--teal-dk); margin-bottom: 0.5rem; font-size: 1.2rem; }
.market-card p { font-size: 0.9rem; color: var(--mid); margin: 0; }
.market-card .market-detail {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--light);
  font-style: italic;
}

/* ============================================================
   MERCH CARD
   ============================================================ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.merch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.merch-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.merch-card-img-wrap {
  background: var(--cream-dk);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.merch-card-img-wrap img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.merch-card:hover .merch-card-img-wrap img { transform: scale(1.04); }
.merch-card-body { padding: 1.5rem; }
.merch-card-body h3 { color: var(--teal-dk); margin-bottom: 0.4rem; }
.merch-card-body p { color: var(--mid); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ============================================================
   ART / COMING SOON
   ============================================================ */
.art-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.art-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--purple), var(--teal));
}
.art-card .art-emoji { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.art-card h3 { color: var(--teal-dk); margin-bottom: 0.5rem; }
.art-card p { color: var(--mid); font-size: 0.95rem; }
.coming-soon-tag {
  display: inline-block;
  background: var(--cream-dk);
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-dk);
  color: rgba(255,255,255,0.9);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo img {
  height: 48px; width: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}
.footer-brand .footer-logo-text {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

.footer-nav h4 {
  font-family: var(--font-h);
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-nav ul li { margin-bottom: 0.5rem; }
.footer-nav ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--coral-lt); }

.footer-social h4 {
  font-family: var(--font-h);
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
  color: var(--white);
}
.social-link:hover { background: var(--coral); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-teal    { color: var(--teal); }
.text-coral   { color: var(--coral); }
.text-purple  { color: var(--purple); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Divider */
.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--purple), var(--teal));
  border: none;
  margin: 0;
}

/* Ribbon / banner */
.ribbon {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
