/* ===== CUSTOM PROPERTIES ===== */
:root {
  --terracotta: #C4724E;
  --terracotta-deep: #A85A38;
  --terracotta-light: #D4916F;
  --sand: #F5E6D3;
  --sand-light: #FDF6EE;
  --sand-mid: #EDE0D0;
  --cream: #FFFBF7;
  --charcoal: #2C2420;
  --warm-gray: #6B5B53;
  --warm-gray-light: #9A8A82;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 36, 32, 0.1);
  --shadow-lg: 0 20px 60px rgba(44, 36, 32, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-serif: 'Fraunces', 'Georgia', serif;
  --font-sans: 'Outfit', 'Helvetica Neue', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--terracotta);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 500;
}
.skip-link:focus { top: 16px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 114, 78, 0.35);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 114, 78, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--sand-mid);
}
.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(237, 224, 208, 0.5);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(253, 246, 238, 0.95);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.nav-toggle:hover { background: var(--sand); }
.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
  transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  left: 0;
  transition: var(--transition);
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav ul {
  display: flex;
  gap: 8px;
}
.nav ul li a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--warm-gray);
  transition: var(--transition);
}
.nav ul li a:hover {
  color: var(--charcoal);
  background: var(--sand);
}
.nav .btn-primary {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 50%, #F0DCC8 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.hero-content {
  max-width: 560px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 114, 78, 0.1);
  color: var(--terracotta);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-title .accent {
  color: var(--terracotta);
  font-style: italic;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm-gray);
  box-shadow: var(--shadow-sm);
}

/* Hero Images */
.hero-visual {
  position: relative;
}
.hero-img-stack {
  position: relative;
  height: 680px;
}
.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-1 {
  width: 340px;
  height: 480px;
  top: 0;
  left: 40px;
  z-index: 2;
}
.hero-img-2 {
  width: 220px;
  height: 220px;
  top: 60px;
  right: 0;
  z-index: 3;
  border: 6px solid var(--white);
}
.hero-img-3 {
  width: 260px;
  height: 180px;
  bottom: 40px;
  right: 20px;
  z-index: 1;
}
.hero-float-card {
  position: absolute;
  bottom: 200px;
  left: 0;
  z-index: 4;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.hero-float-card strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.hero-float-card span {
  color: var(--warm-gray-light);
  font-size: 0.82rem;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--sand-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  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-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--sand-light);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content p {
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--sand-mid);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--warm-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== MENU ===== */
.menu {
  padding: 120px 0;
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc {
  margin: 0 auto;
}
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--warm-gray);
  background: var(--sand-light);
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.menu-tab:hover {
  color: var(--charcoal);
  border-color: var(--sand-mid);
}
.menu-tab.active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(196, 114, 78, 0.3);
}
.menu-grid {
  position: relative;
  min-height: 200px;
}
.menu-panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  animation: fadeUp 0.4s ease;
}
.menu-panel.active {
  display: grid;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.menu-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.menu-item-img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-item-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.menu-item-info p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ===== GROCERIES ===== */
.groceries {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
}
.groceries-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.groceries-content p {
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.grocery-list {
  margin-bottom: 36px;
}
.grocery-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-mid);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.grocery-list li:last-child { border-bottom: none; }
.grocery-icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}
.groceries-visual { position: relative; }
.groceries-img-grid {
  display: grid;
  gap: 20px;
}
.g-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.g-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.g-img:hover img { transform: scale(1.05); }
.g-img-1 { height: 380px; }
.g-img-2 { height: 240px; }
.g-img-3 { height: 240px; }

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:nth-child(2),
.gallery-item:nth-child(4) {
  grid-row: span 2;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: var(--sand-light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--terracotta-light);
  position: absolute;
  top: 16px;
  left: 28px;
  opacity: 0.4;
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-details {
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.8;
}
.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-weight: 500;
  transition: var(--transition);
}
.visit-link:hover { color: var(--terracotta-deep); }
.hours {
  margin-bottom: 40px;
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.hours h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.hours table {
  width: 100%;
  border-collapse: collapse;
}
.hours td {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--warm-gray);
  border-bottom: 1px solid var(--sand-mid);
}
.hours tr:last-child td { border-bottom: none; }
.hours td:last-child { text-align: right; font-weight: 500; color: var(--charcoal); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm-gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 114, 78, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(196, 114, 78, 0.1);
  border-radius: var(--radius-sm);
  color: var(--terracotta-deep);
  font-size: 0.92rem;
  font-weight: 500;
}
.visit-map {
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--sand-mid);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo-text { color: var(--sand-light); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--warm-gray-light);
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sand-light);
  margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--terracotta-light); }
.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--warm-gray-light);
  margin-bottom: 4px;
}
.footer-contact a {
  color: var(--terracotta-light);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--terracotta); }
.footer-hours p {
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  margin-bottom: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(237, 224, 208, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--warm-gray-light);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--sand-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav ul {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
  }
  .nav ul li a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  .nav .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-img-stack { height: 400px; }
  .hero-img-1 { width: 240px; height: 320px; left: 0; }
  .hero-img-2 { width: 160px; height: 160px; top: 20px; right: 20px; }
  .hero-img-3 { width: 180px; height: 130px; bottom: 20px; right: 0; }
  .hero-float-card { bottom: 120px; left: 20px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { right: 20px; bottom: -20px; }

  .groceries-split { grid-template-columns: 1fr; gap: 48px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(4) { grid-row: span 1; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { height: 360px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 72px; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-img-stack { height: 320px; }
  .hero-img-1 { width: 180px; height: 240px; left: 0; }
  .hero-img-2 { width: 120px; height: 120px; top: 10px; right: 10px; }
  .hero-img-3 { width: 140px; height: 100px; bottom: 10px; right: 0; }
  .hero-float-card { display: none; }

  .menu-panel { grid-template-columns: 1fr; }
  .menu-item { flex-direction: column; }
  .menu-item-img { width: 100%; height: 160px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
