/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: #3D2B1F;
  background: #FDF6EE;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #B85C38; color: #FDF6EE;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  z-index: 200; font-weight: 500;
}
.skip-link:focus { top: 0; }

/* ─── Typography ─── */
:root {
  --terracotta: #B85C38;
  --terracotta-dark: #9A4B2C;
  --sand: #FDF6EE;
  --sand-mid: #F5E6D3;
  --sand-dark: #E8D5C0;
  --brown-dark: #3D2B1F;
  --brown-mid: #6B4E3D;
  --cream: #FFF9F2;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(61,43,31,0.08);
  --shadow-lg: 0 8px 40px rgba(61,43,31,0.12);
  --transition: 0.3s ease;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown-dark);
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--brown-mid);
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: #FDF6EE;
  box-shadow: 0 4px 16px rgba(184,92,56,0.3);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,92,56,0.4);
}
.btn--light {
  background: #FDF6EE;
  color: var(--terracotta);
  box-shadow: var(--shadow);
}
.btn--light:hover {
  background: #fff;
  transform: translateY(-2px);
}
.btn--ghost-light {
  background: rgba(253,246,238,0.15);
  color: #FDF6EE;
  border: 1.5px solid rgba(253,246,238,0.5);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover {
  background: rgba(253,246,238,0.25);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,246,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,92,56,0.1);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown-dark);
}
.logo svg { flex-shrink: 0; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown-mid);
  position: relative;
  transition: color var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--terracotta); }
.nav-menu a:hover::after { width: 100%; }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-toggle-bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,43,31,0.72) 0%,
    rgba(61,43,31,0.45) 50%,
    rgba(184,92,56,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,246,238,0.8);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: #FDF6EE;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(253,246,238,0.85);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(253,246,238,0.6);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--sand);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  width: 75%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--sand);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-text p {
  color: var(--brown-mid);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,92,56,0.1);
  border-radius: 12px;
}
.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--brown-dark);
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--brown-mid);
  margin: 0;
  line-height: 1.5;
}

/* ─── Shop / Categories ─── */
.shop {
  padding: 100px 0;
  background: var(--cream);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-img {
  height: 240px;
  overflow: hidden;
}
.category-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-img img { transform: scale(1.06); }
.category-info {
  padding: 24px;
}
.category-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--brown-dark);
}
.category-info p {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.5;
}

/* ─── Vendors ─── */
.vendors {
  padding: 100px 0;
  background: var(--sand);
}
.vendors-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vendors-text p {
  color: var(--brown-mid);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.vendors-text .btn { margin-top: 16px; }
.vendors-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
}
.vendors-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Testimonials ─── */
.testimonials {
  padding: 100px 0;
  background: var(--terracotta);
}
.testimonials .section-eyebrow { color: rgba(253,246,238,0.7); }
.testimonials .section-title { color: #FDF6EE; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(253,246,238,0.1);
  border: 1px solid rgba(253,246,238,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #FDF6EE;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 0.9rem;
  color: rgba(253,246,238,0.7);
  font-weight: 500;
}

/* ─── Visit ─── */
.visit {
  padding: 100px 0;
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.visit-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--brown-dark);
  line-height: 1.6;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.visit-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--brown-mid);
}
.visit-details a {
  color: var(--terracotta);
  font-weight: 500;
  transition: color var(--transition);
}
.visit-details a:hover { color: var(--terracotta-dark); }
.hours {
  background: var(--sand);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hours h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.hours p {
  font-size: 0.92rem;
  color: var(--brown-mid);
  line-height: 1.5;
}
.visit-map { min-height: 420px; }

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: var(--sand);
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text p {
  color: var(--brown-mid);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-methods li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--brown-dark);
}
.contact-methods a {
  color: var(--terracotta);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-methods a:hover { color: var(--terracotta-dark); }
.contact-form-wrap {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--brown-dark);
  background: var(--sand);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184,92,56,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B8A494;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  margin-top: 16px;
  padding: 16px;
  background: rgba(184,92,56,0.1);
  border-radius: 12px;
  color: var(--terracotta-dark);
  font-weight: 500;
  text-align: center;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--brown-dark);
  color: rgba(253,246,238,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(253,246,238,0.6);
}
.footer-brand .logo { color: #FDF6EE; }
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.95rem;
  color: rgba(253,246,238,0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: #FDF6EE; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
}
.footer-contact a {
  color: rgba(253,246,238,0.7);
  transition: color var(--transition);
}
.footer-contact a:hover { color: #FDF6EE; }
.footer-bottom {
  border-top: 1px solid rgba(253,246,238,0.1);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(253,246,238,0.4);
  text-align: center;
}

/* ─── Scroll Reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--sand);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 100;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.1rem; }

  .hero-content { padding: 100px 0 80px; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.2rem); }

  .about-grid,
  .vendors-split,
  .visit-grid,
  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images { height: 400px; }
  .about-img-main { height: 320px; width: 85%; }
  .about-img-float { width: 60%; height: 220px; }
  .vendors-image { height: 320px; }

  .category-grid { grid-template-columns: 1fr; }
  .category-img { height: 200px; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { grid-column: auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
