*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --brown-dark: #2C1A0E;
  --brown-mid: #6B4F38;
  --brown-light: #8B6A4A;
  --brown-muted: #A08060;
  --red: #B53030;
  --ocean: #5A7A8A;
  --sand: #D4C9B0;
  --sand-light: #EDE7D8;
  --instacart-green: #43B02A;
}

body {
  background: var(--cream);
  font-family: 'Lato', sans-serif;
  color: var(--brown-dark);
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement {
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
  padding: 9px 2.5rem;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.announcement.hidden { display: none; }

.announcement-dismiss {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  opacity: 0.6;
  line-height: 1;
  padding: 0 4px;
}

.announcement-dismiss:hover { opacity: 1; }

/* ─── NAV ─── */
nav {
  background: var(--cream);
  border-bottom: 1.5px solid var(--brown-light);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-dark);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.75;
}

.nav-links a:hover,
.nav-links a.active { opacity: 1; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--brown-dark);
  padding: 4px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--brown-dark);
  padding: 11px 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--brown-light);
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}

.btn-instacart {
  display: inline-block;
  background: var(--instacart-green);
  color: #fff;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── HERO ─── */
.hero {
  display: block;
  border-bottom: 1.5px solid var(--brown-light);
}

.hero-left {
  padding: 5rem 3rem 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

h1 em { font-style: italic; color: var(--red); }

.hero-sub {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--brown-mid);
  margin: 0.75rem 0 2rem;
  line-height: 1.6;
}

.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero-right {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-right img {
  max-width: 320px;
  width: 100%;
  object-fit: contain;
}

/* ─── STOREFRONT STRIP ─── */
.storefront-strip {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-bottom: 1.5px solid var(--brown-light);
  position: relative;
}

.storefront-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* ─── PHOTO GALLERY ─── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--brown-light);
  border: 1px solid var(--brown-light);
}

.photo-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.photo-cell img:hover { transform: scale(1.03); }

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--sand-light);
  border: 2px dashed var(--brown-light);
  aspect-ratio: 4 / 3;
}

.photo-placeholder i { font-size: 32px; color: var(--brown-light); }

.photo-placeholder span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brown-muted);
  text-align: center;
  padding: 0 1rem;
}

/* ─── HOURS BAR ─── */
.hours-bar {
  background: var(--brown-dark);
  color: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1.5px solid var(--brown-light);
}

.hours-item {
  padding: 1.5rem 1.75rem;
  border-right: 0.5px solid rgba(245,240,232,0.15);
}

.hours-item:last-child { border-right: none; }

.hours-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.hours-val {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
}

.hours-sub { font-size: 12px; color: var(--brown-muted); margin-top: 2px; }

/* ─── SECTIONS ─── */
.section {
  padding: 3.5rem 2.5rem;
  border-bottom: 1.5px solid var(--brown-light);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--brown-dark);
}

h2 em { font-style: italic; color: var(--red); }

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--brown-dark);
}

.see-all {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 700;
  text-decoration: none;
}


/* ─── INSTACART CALLOUT ─── */
.instacart-section {
  background: var(--brown-dark);
  padding: 3rem 2.5rem;
  border-bottom: 1.5px solid var(--brown-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.instacart-section h2 { color: var(--cream); margin-bottom: 8px; }

.instacart-section p { font-size: 14px; color: var(--brown-muted); line-height: 1.6; max-width: 380px; }

/* ─── MERCH ─── */
.merch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.merch-card {
  border: 1.5px solid var(--brown-light);
  background: var(--sand-light);
  padding: 1.5rem;
  text-align: center;
}

.merch-card i { font-size: 40px; color: var(--red); display: block; margin-bottom: 12px; }

.merch-card h3 { font-size: 16px; margin-bottom: 4px; }

.merch-type {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 700;
  margin-bottom: 12px;
}

.merch-price { font-size: 15px; font-weight: 700; color: var(--red); }

.merch-grid-wrap {
  position: relative;
}

.merch-grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.80);
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-grid-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--brown-dark);
  border: 1.5px solid var(--brown-light);
  padding: 16px 40px;
  background: var(--cream);
  letter-spacing: 0.04em;
}

/* ─── MAP / FIND US ─── */
.map-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 280px;
  border-bottom: 1.5px solid var(--brown-light);
}

.map-info {
  padding: 3rem 2.5rem;
  border-right: 1.5px solid var(--brown-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.map-info h2 { font-size: 26px; margin-bottom: 0.25rem; }

.map-placeholder {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 280px;
}

.map-placeholder i { font-size: 40px; color: var(--brown-light); }
.map-placeholder p { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--brown-light); }

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  display: block;
}

.info-row { display: flex; align-items: flex-start; gap: 12px; }
.info-row i { font-size: 18px; color: var(--brown-light); margin-top: 2px; flex-shrink: 0; }
.info-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown-muted); font-weight: 700; margin-bottom: 3px; }
.info-val { font-family: 'Libre Baskerville', serif; font-size: 15px; color: var(--brown-dark); line-height: 1.5; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 3.5rem 2.5rem;
  border-bottom: 1.5px solid var(--brown-light);
  background: var(--sand-light);
}

.page-hero .eyebrow { margin-bottom: 0.5rem; }

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--brown-mid);
  line-height: 1.6;
  max-width: 560px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--brown-dark);
  color: var(--brown-muted);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--cream); font-style: italic; }

.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--brown-muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.footer-links a:hover { color: var(--cream); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1.5px solid var(--brown-light);
    padding: 1rem 2rem;
    gap: 1.25rem;
    z-index: 99;
  }
  nav > .btn-primary { display: none; }
  .nav-hamburger { display: block; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 1.5px solid var(--brown-light); padding: 2.5rem 1.5rem; }
  .hero-right { padding: 2rem 1.5rem; min-height: 240px; }
  h1 { font-size: 38px; }

  .hours-bar { grid-template-columns: 1fr; }
  .hours-item { border-right: none; border-bottom: 0.5px solid rgba(245,240,232,0.15); }
  .hours-item:last-child { border-bottom: none; }


  .instacart-section { flex-direction: column; align-items: flex-start; }

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

  .map-section { grid-template-columns: 1fr; }
  .map-info { border-right: none; border-bottom: 1.5px solid var(--brown-light); }
  .map-placeholder, .map-embed { min-height: 240px; }

  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { justify-content: center; }

  .storefront-strip { height: 240px; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 2.5rem 1.5rem; }
  .page-hero { padding: 2.5rem 1.5rem; }
  .page-hero h1 { font-size: 32px; }

  .instacart-section { padding: 2.5rem 1.5rem; }
}
