/* ═══════════════════════════════════
   Reset & Base
═══════════════════════════════════ */
*, *::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(--ivory);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--gold-dark); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }

/* ═══════════════════════════════════
   Scroll-in Animations
═══════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--ease-slow), transform var(--ease-slow);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.22s; }
.fade-up.delay-3 { transition-delay: 0.36s; }
.fade-up.delay-4 { transition-delay: 0.50s; }

/* ═══════════════════════════════════
   Typography
═══════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text);
}

/* ── Eyebrow ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 48px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.left::before { display: none; }
.eyebrow.left::after  { display: none; }

/* Center eyebrow (in sections with text-align:center) */
.eyebrow.center {
  justify-content: center;
}
.eyebrow.center::before,
.eyebrow.center::after { display: block; }

/* ── Section titles ── */
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-style: italic;
  text-align: center;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

/* ── Section ornament ── */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.3em;
  margin: var(--space-lg) 0;
  user-select: none;
}

/* ═══════════════════════════════════
   Layout
═══════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section { padding: var(--space-xl) 0; }
section.alt { background: var(--cream); }

/* ═══════════════════════════════════
   Buttons
═══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--ease);
  white-space: nowrap;
}

/* Primary: filled */
.btn-primary {
  padding: 1rem 2.4rem;
  background: var(--text);
  color: var(--text-light);
  border-radius: 2px;
}
.btn-primary .btn-arrow {
  display: inline-block;
  transition: transform var(--ease);
  color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
}
.btn-primary:hover .btn-arrow { transform: translateX(5px); }

/* Ghost: outline */
.btn-ghost {
  padding: 0.9rem 2.2rem;
  border: 1.5px solid var(--text);
  color: var(--text);
  border-radius: 2px;
}
.btn-ghost .btn-arrow {
  display: inline-block;
  transition: transform var(--ease);
  color: var(--gold);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn-ghost:hover .btn-arrow { transform: translateX(5px); }

/* Arrow-link (hero / inline CTAs) */
.btn-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  position: relative;
}
.btn-arrow-link::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.btn-arrow-link .btn-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--ease);
}
.btn-arrow-link:hover::after   { width: 72px; }
.btn-arrow-link:hover .btn-arrow { transform: translateX(6px); }
.btn-arrow-link:hover { color: #fff; }

/* ═══════════════════════════════════
   Navigation
═══════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--ease), box-shadow var(--ease);
}

#main-nav.scrolled {
  background: rgba(250, 250, 246, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--ease);
  letter-spacing: 0.02em;
}
.nav-logo .accent { color: var(--gold); }

#main-nav.scrolled .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.nav-links a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

#main-nav.scrolled .nav-links a { color: var(--text-muted); }
#main-nav.scrolled .nav-links a:hover { color: var(--text); border-bottom-color: var(--gold); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
#main-nav.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══════════════════════════════════
   Hero
═══════════════════════════════════ */
#hero {
  padding: 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38);
  transform: scale(1.04);
  transition: transform 8s ease;
  will-change: transform;
}
#hero:hover .hero-bg { transform: scale(1.0); }

/* Warm gradient vignette over the image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 20, 9, 0.15) 0%,
    rgba(30, 20, 9, 0.0) 40%,
    rgba(30, 20, 9, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: calc(72px + 5rem) var(--space-md) var(--space-xl);
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}
.hero-tagline::before,
.hero-tagline::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-style: italic;
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollpulse 2.5s ease-in-out infinite;
}
.scroll-hint-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.scroll-hint-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════
   Photo Frame (About image)
═══════════════════════════════════ */
.photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.photo-frame-inner {
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-frame);
  transform: rotate(-1.8deg);
  transition: transform var(--ease-slow), box-shadow var(--ease-slow);
  border-radius: 2px;
}
.photo-frame:hover .photo-frame-inner {
  transform: rotate(0deg);
  box-shadow: var(--shadow-lift);
}

.photo-frame-inner img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 1px;
}

/* Decorative gold corner accent */
.photo-frame::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100px;
  height: 100px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: -1;
  border-radius: 0 0 2px 0;
}

/* ═══════════════════════════════════
   About
═══════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-text .eyebrow { margin-bottom: 1.2rem; }

.about-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.about-body p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
  line-height: 1.85;
}
.about-body p:last-of-type { margin-bottom: var(--space-md); }

.about-pull-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  padding: 1.6rem 0 1.6rem 1.8rem;
  border-left: 2px solid var(--gold);
  margin-bottom: var(--space-md);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════
   Flavors
═══════════════════════════════════ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: 0.5rem 1.6rem;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--ease);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-btn.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--text-light);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.flavor-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: default;
  position: relative;
}
.flavor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.flavor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.flavor-card:hover::before { transform: scaleX(1); }

.flavor-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.flavor-card:hover .flavor-card-img { transform: scale(1.04); }

.flavor-card-body {
  padding: 1.4rem 1.6rem 1.8rem;
}

.flavor-card-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.flavor-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.flavor-card-sep {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 0.6rem 0;
}

.flavor-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.badge-vegan {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.22rem 0.8rem;
  background: #EAF3EC;
  color: #2E6B3A;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.flavors-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: italic;
  margin-top: var(--space-md);
}

/* ═══════════════════════════════════
   Opening Hours
═══════════════════════════════════ */
.hours-inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.hours-block {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hours-block-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid var(--border);
}

.hours-block-icon {
  width: 34px;
  height: 34px;
  background: var(--gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid var(--gold-light);
}

.hours-block-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
}

.hours-list { padding: 0.4rem 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.8rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(229, 216, 200, 0.5);
  transition: background var(--ease);
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: var(--cream-light); }
.hours-row.today { background: var(--gold-subtle); font-weight: 600; }
.hours-row.today .hours-day { color: var(--gold-dark); }

.hours-day { color: var(--text); }
.hours-time { color: var(--text-muted); font-size: 0.85rem; }
.hours-row.closed .hours-time { color: #c0392b; }
.hours-row.closed .hours-day { color: var(--text-muted); }

.hours-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--space-md);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════
   Contact
═══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-eyebrow { margin-bottom: 1.4rem; }

.contact-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.contact-list { list-style: none; margin-bottom: var(--space-md); }

.contact-list li {
  display: flex;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-list li:first-child { border-top: 1px solid var(--border); }

.contact-arrow {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.98rem;
  color: var(--text);
}
.contact-item-value a { color: var(--text); }
.contact-item-value a:hover { color: var(--gold-dark); }

.contact-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: var(--text);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--ease), transform var(--ease);
}
.social-btn:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}
.social-btn-icon { color: var(--gold); font-size: 0.9rem; }

/* Map area */
.map-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-frame);
  height: 420px;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.map-placeholder-icon { font-size: 2.8rem; margin-bottom: 0.5rem; }

/* ═══════════════════════════════════
   Footer
═══════════════════════════════════ */
#footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--text-light);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-logo .accent { color: var(--gold); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 300;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: var(--space-md);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ═══════════════════════════════════
   Loading
═══════════════════════════════════ */
.loading-placeholder {
  text-align: center;
  color: var(--text-muted);
  padding: var(--space-lg) 0;
  font-style: italic;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════
   Responsive
═══════════════════════════════════ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .photo-frame-inner { height: auto; }
  .photo-frame-inner img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hours-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 5rem;
    --space-lg: 3rem;
    --space-md: 1.5rem;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--space-sm) var(--space-md);
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 0.85rem;
    border-bottom: none;
    color: var(--text-muted) !important;
  }
  .nav-links a:hover { color: var(--text) !important; }

  .photo-frame::after { display: none; }
  .photo-frame-inner { transform: rotate(0deg); }
  .photo-frame-inner img { height: 260px; }

  .flavors-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
