/* Oak Creek Cafe */

:root {
  --brand-cream: #fbf3e6;
  --brand-cream-2: #f4e8d4;
  --brand-brown-dark: #291a0f;
  --brand-brown: #4a2f1c;
  --brand-brown-mid: #7a5233;
  --brand-orange: #e2611b;
  --brand-orange-dark: #c9500f;
  --brand-green: #4c6b3f;
  --text-main: #2c2015;
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius-lg: 20px;
  --shadow-soft: 0 12px 30px rgba(41, 26, 15, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--brand-cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); color: var(--brand-brown-dark); margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 8px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Buttons */
.btn-order {
  display: inline-block;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 800;
  font-family: var(--font-body);
  border: none;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(226, 97, 27, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(226, 97, 27, 0.5);
}
.btn-order--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}
.btn-order--block {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid var(--brand-brown-dark);
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  margin-left: 4px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-cream);
  box-shadow: 0 2px 12px rgba(41,26,15,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-brown-dark);
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--brand-orange);
  font-weight: 800;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-brown);
}
.main-nav a:hover { color: var(--brand-orange); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--brand-brown-dark);
  border-radius: 2px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 28px;
  background: var(--brand-cream);
  border-top: 1px solid var(--brand-cream-2);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  font-weight: 700;
  color: var(--brand-brown);
  font-size: 1.05rem;
}

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-inner { max-width: 720px; padding-top: 60px; padding-bottom: 60px; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--brand-orange);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: 1.15rem;
  max-width: 560px;
  color: #f4e8d4;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #f4e8d4;
}
.stars { color: #ffc857; letter-spacing: 2px; }

/* Sections */
section { padding: 90px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--brand-orange);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-lede {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--brand-brown-mid);
}
.center { text-align: center; }

/* About */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-copy p { color: var(--brand-brown); }
.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* Menu */
.menu { background: var(--brand-cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.menu-category h3 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--brand-cream-2);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.menu-category li { margin-bottom: 18px; }
.menu-category li:last-child { margin-bottom: 0; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brand-brown-dark);
}
.menu-item-price { color: var(--brand-orange-dark); }
.menu-item-desc {
  margin: 4px 0 0;
  color: var(--brand-brown-mid);
  font-size: 0.92rem;
}
.menu-note {
  text-align: center;
  margin-top: 32px;
  color: var(--brand-brown-mid);
  font-size: 0.85rem;
  font-style: italic;
}

/* Gallery */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid img {
  border-radius: 14px;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* Reviews */
.reviews { background: var(--brand-brown-dark); color: #f4e8d4; }
.reviews h2, .reviews .section-eyebrow { color: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.review-card p { font-size: 1rem; color: #f4e8d4; }
.review-card cite {
  font-weight: 800;
  color: var(--brand-orange);
  font-style: normal;
}
.review-card .stars { margin-bottom: 10px; display: block; }

/* Location */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.hours-list {
  margin: 24px 0;
  border-top: 1px solid var(--brand-cream-2);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--brand-cream-2);
  font-weight: 700;
  color: var(--brand-brown);
}
.location-address {
  font-weight: 700;
  margin-bottom: 4px;
}
.phone-link {
  display: block;
  font-weight: 800;
  color: var(--brand-orange-dark);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.location-map {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Footer */
.site-footer {
  background: var(--brand-brown-dark);
  color: #f4e8d4;
  padding: 50px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-mark { color: #fff; font-size: 1.3rem; }
.footer-info a { color: var(--brand-orange); font-weight: 700; }
.footer-bottom {
  padding: 18px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(244,232,212,0.6);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(41,26,15,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  text-align: center;
}
.modal h2 { margin-bottom: 16px; }
.modal p { color: var(--brand-brown); font-size: 1.05rem; }
.modal a { color: var(--brand-orange-dark); font-weight: 800; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand-cream);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--brand-brown-dark);
}
.modal-close:hover { background: var(--brand-cream-2); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-actions .btn-order { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 60px 0; }
  .hero { min-height: 78vh; }
  .footer-inner { flex-direction: column; text-align: center; }
}
