/* ── Casa Verde Kitchen — Shared Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:     #1a4a2e;
  --green-mid: #256338;
  --green-l:   #2d7a44;
  --green-bg:  #f0f7f2;
  --gold:      #c9881a;
  --gold-l:    #e8a020;
  --gold-d:    #a06d10;
  --cream:     #faf6f0;
  --warm:      #f5ede0;
  --warm-d:    #eddcc8;
  --white:     #ffffff;
  --text:      #1f2937;
  --text-mid:  #374151;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --border-w:  rgba(255,255,255,0.15);
  --radius:    10px;
  --max:       1120px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── SMPL style bar ── */
.style-bar {
  background: var(--green);
  padding: 8px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 0.72rem; color: rgba(255,255,255,0.5); flex-wrap: wrap;
}
.style-bar strong { color: rgba(255,255,255,0.85); }
.style-bar a {
  color: var(--gold-l); font-weight: 600; padding: 3px 10px;
  border: 1px solid rgba(232,160,32,0.4); border-radius: 20px; transition: background 0.15s;
}
.style-bar a:hover { background: rgba(232,160,32,0.15); }
.style-bar a.active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ── NAV ── */
.nav {
  background: var(--green); position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; height: 72px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; flex-direction: column; gap: 1px; line-height: 1;
}
.nav__logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em;
}
.nav__logo-tag {
  font-size: 0.6rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a {
  color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500;
  transition: color 0.15s; letter-spacing: 0.01em;
}
.nav__links a:hover, .nav__links a.active { color: var(--gold-l); }
.nav__cta {
  background: var(--gold); color: var(--white); font-size: 0.83rem; font-weight: 700;
  padding: 9px 20px; border-radius: 8px;
  transition: background 0.15s; letter-spacing: 0.02em;
}
.nav__cta:hover { background: var(--gold-l); }
.nav__hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
.nav__mobile {
  display: none; flex-direction: column; gap: 16px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--green); padding: 28px 24px 36px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.nav__mobile a { color: rgba(255,255,255,0.9); font-size: 1rem; font-weight: 500; }
.nav__mobile .close-btn {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.4rem; cursor: pointer;
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--green); padding: 64px 24px 60px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom right, transparent 49.5%, var(--white) 50%);
}
.page-hero__inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold-l); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero__eyebrow::before { content: '✦'; font-size: 0.5rem; }
.page-hero__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.15; max-width: 600px;
}
.page-hero__h1 em { font-style: italic; color: var(--gold-l); }
.page-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.65;
  max-width: 520px; margin-top: 14px;
}

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section--cream { background: var(--cream); }
.section--warm  { background: var(--warm); }
.section--green { background: var(--green); }
.section--green-bg { background: var(--green-bg); }
.section__inner { max-width: var(--max); margin: 0 auto; }
.section__eyebrow {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.section__eyebrow::before { content: '✦'; font-size: 0.5rem; }
.section__eyebrow--center { justify-content: center; }
.section__h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--text); line-height: 1.2; margin-bottom: 12px;
}
.section__h2 em { font-style: italic; color: var(--green-mid); }
.section__h2--white { color: var(--white); }
.section__h2--center { text-align: center; }
.section__sub {
  font-size: 0.975rem; color: var(--muted); line-height: 1.72;
  max-width: 560px; margin-bottom: 48px;
}
.section__sub--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__sub--white  { color: rgba(255,255,255,0.65); }

/* ── BUTTONS ── */
.btn-green {
  background: var(--green); color: var(--white); font-size: 0.875rem; font-weight: 700;
  padding: 13px 28px; border-radius: 8px; border: none; cursor: pointer;
  transition: background 0.15s; display: inline-block; letter-spacing: 0.02em;
}
.btn-green:hover { background: var(--green-mid); }
.btn-gold {
  background: var(--gold); color: var(--white); font-size: 0.875rem; font-weight: 700;
  padding: 13px 28px; border-radius: 8px; border: none; cursor: pointer;
  transition: background 0.15s; display: inline-block;
}
.btn-gold:hover { background: var(--gold-l); }
.btn-outline {
  background: transparent; color: var(--green); font-size: 0.875rem; font-weight: 600;
  padding: 12px 28px; border-radius: 8px; border: 2px solid var(--green);
  cursor: pointer; transition: background 0.15s; display: inline-block;
}
.btn-outline:hover { background: rgba(26,74,46,0.06); }
.btn-outline--white {
  color: var(--white); border-color: rgba(255,255,255,0.4);
}
.btn-outline--white:hover { background: rgba(255,255,255,0.1); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PHOTO PLACEHOLDER ── */
.photo-block {
  border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; position: relative;
}
.photo-block--food1 { background: linear-gradient(135deg, #3d6b3a 0%, #8fbb3e 100%); }
.photo-block--food2 { background: linear-gradient(135deg, #8b1a1a 0%, #d4652a 100%); }
.photo-block--food3 { background: linear-gradient(135deg, #c9881a 0%, #e8c060 100%); }
.photo-block--food4 { background: linear-gradient(135deg, #2d5a7a 0%, #4a9bbe 100%); }
.photo-block--food5 { background: linear-gradient(135deg, #4a2c6e 0%, #9b59b6 100%); }
.photo-block--interior { background: linear-gradient(135deg, #1a4a2e 0%, #2d7a44 100%); }
.photo-block__label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.45); color: #fff;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── FOOTER ── */
.footer { background: var(--green); padding: 56px 24px 28px; }
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
@media (max-width: 780px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; gap: 24px; } }
.footer__brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: 0.65rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px;
}
.footer__brand-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 240px; }
.footer__col-title {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.45); margin-bottom: 12px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 9px; }
.footer__col-links a { font-size: 0.83rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer__col-links a:hover { color: var(--gold-l); }
.footer__bottom {
  border-top: 1px solid var(--border-w); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ── HOURS WIDGET ── */
.hours-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.hours-card__header {
  background: var(--green); padding: 16px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 800; color: var(--white);
}
.hours-card__rows { padding: 4px 0; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 20px; font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row__day { color: var(--text-mid); font-weight: 500; }
.hours-row__time { color: var(--text); font-weight: 600; }
.hours-row__closed { color: var(--muted); font-weight: 400; }
.hours-row--today { background: rgba(26,74,46,0.05); }
.hours-row--today .hours-row__day { color: var(--green); font-weight: 700; }
