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

:root {
  --cream:   #F6F1E7;
  --green:   #2E5016;
  --green-light: #3D6B1F;
  --brown:   #7A5C1E;
  --tan:     #C9A96E;
  --dark:    #1E1A14;
  --mid:     #4A4035;
  --border:  #DDD0B8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

.nav-links a {
  color: rgba(246,241,231,0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--tan); }

/* ── HERO ── */
.hero {
  background: var(--green);
  color: var(--cream);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.25);
  border: 1px solid var(--tan);
  color: var(--tan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(246,241,231,0.8);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--green);
  color: var(--cream);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .section-label { color: var(--tan); position: relative; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  position: relative;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(246,241,231,0.8);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--tan);
  color: var(--dark);
}

.btn-primary:hover { background: #d4b07a; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(246,241,231,0.5);
}

.btn-outline:hover { border-color: var(--cream); background: rgba(246,241,231,0.08); }

.btn-dark {
  background: var(--green);
  color: var(--cream);
}

.btn-dark:hover { background: var(--green-light); transform: translateY(-1px); }

/* ── STRIP ── */
.strip {
  background: var(--tan);
  padding: 0.9rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.strip span { margin: 0 1rem; }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.75;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  background: var(--green);
  border-radius: 6px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-img svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.about-img-placeholder {
  color: rgba(246,241,231,0.3);
  font-size: 0.8rem;
  text-align: center;
  padding: 2rem;
}

.stars {
  color: var(--tan);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.rating-line {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

/* ── OFFERINGS ── */
.offerings { background: #EDE7D8; }

.offerings-header {
  text-align: center;
  margin-bottom: 3rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.offering-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.offering-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.offering-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.offering-card p {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ── CTA BAND ── */
.cta-band {
  text-align: center;
}

.cta-band h2 { margin-bottom: 0.75rem; }

.cta-band p {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ── MENU ── */
.menu { background: var(--green); color: var(--cream); }

.menu .section-label { color: var(--tan); }
.menu h2 { color: var(--cream); }

.menu-header { text-align: center; margin-bottom: 2.5rem; }

.menu-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.size-chip {
  border: 1.5px solid rgba(201,169,110,0.5);
  color: var(--tan);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.menu-sizes-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.6);
  margin-bottom: 1rem;
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.pizza-card {
  background: rgba(246,241,231,0.06);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 6px;
  padding: 1.5rem;
}

.pizza-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.pizza-card p {
  font-size: 0.9rem;
  color: rgba(246,241,231,0.75);
  line-height: 1.6;
}

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(246,241,231,0.55);
  margin-top: 2.5rem;
  font-style: italic;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.reviews-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

.review-stars { color: var(--tan); margin-bottom: 0.6rem; }

.review-text {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.8rem;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reviews-summary {
  text-align: center;
  margin-bottom: 1rem;
}

.reviews-summary .big-rating {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--green);
  line-height: 1;
}

.reviews-summary .stars { font-size: 1.3rem; margin: 0.5rem 0 0.25rem; }

.reviews-summary p {
  font-size: 0.9rem;
  color: var(--mid);
}

/* ── VISIT ── */
.visit { background: var(--green); color: var(--cream); }

.visit h2, .visit .section-label { color: var(--cream); }
.visit .section-label { color: var(--tan); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.info-block { margin-bottom: 2rem; }

.info-block h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.5rem;
}

.info-block p, .info-block a {
  font-size: 1.05rem;
  color: rgba(246,241,231,0.9);
  text-decoration: none;
  line-height: 1.7;
}

.info-block a:hover { color: var(--tan); }

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 280px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.98rem;
  color: rgba(246,241,231,0.9);
  padding: 0.15rem 0;
}

.hours-row .day { font-weight: 500; }
.hours-row .time { color: var(--tan); white-space: nowrap; }

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(201,169,110,0.3);
  width: 100%;
  aspect-ratio: 4/3;
}

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

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(246,241,231,0.5);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-explore h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.25rem;
}

.footer-explore ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-explore a {
  color: rgba(246,241,231,0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-explore a:hover { color: var(--cream); }

.footer-tagline {
  text-align: center;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(246,241,231,0.35);
  margin: 3rem 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(246,241,231,0.12);
  margin: 0 0 1.75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.55);
}

.footer-business {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.45);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(63,181,173,0.5);
  border-radius: 2rem;
  padding: 0.5rem 1.1rem;
  color: #3fb5ad;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}

.footer-credit:hover {
  background: rgba(63,181,173,0.1);
  border-color: #3fb5ad;
}

.footer-credit svg {
  width: 15px;
  height: 15px;
  stroke: #3fb5ad;
}

/* ── RESPONSIVE ── */

/* tablet */
@media (max-width: 900px) {
  .reviews-grid--two { grid-template-columns: 1fr; max-width: 480px; }
}

/* mobile */
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    height: auto;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .nav-logo { font-size: 1rem; }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.1rem;
  }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.03em; }

  section { padding: 3.25rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 3.25rem; }
  .page-hero { padding: 3rem 1.25rem 2.5rem; }

  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }

  .strip { font-size: 0.8rem; line-height: 1.9; }
  .strip span { margin: 0 0.5rem; display: inline-block; }

  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { order: -1; }

  .offerings-grid { grid-template-columns: 1fr; }
  .pizza-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .hours-list { max-width: 100%; }

  footer { padding: 3rem 1.25rem 1.75rem; }
  .footer-tagline { letter-spacing: 0.2em; font-size: 0.78rem; margin: 2.25rem 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
