:root {
  --olive: #5b6b1f;
  --olive-dark: #3d4715;
  --olive-darker: #2b3210;
  --pink: #e5417d;
  --pink-dark: #c92e69;
  --cream: #faf5e9;
  --cream-dark: #f0e6d0;
  --ink: #2b2b1f;
  --white: #ffffff;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

a { text-decoration: none; color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin: 0 0 16px;
}

p { line-height: 1.7; margin: 0 0 16px; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--pink-dark);
  margin-bottom: 10px;
}
.section-tag.center { display: block; text-align: center; }
h2.center { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(229, 65, 125, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--pink-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-outline-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--olive-darker); }

/* Top bar */
.topbar {
  background: var(--olive-darker);
  color: var(--cream);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 7px 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--olive-darker);
}
.brand-name .amp { color: var(--pink); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.main-nav a:not(.nav-cta):after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.2s ease;
}
.main-nav a:not(.nav-cta):hover:after { width: 100%; }
.nav-cta {
  background: var(--olive);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 30px;
}
.nav-cta:hover { background: var(--olive-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--olive-darker);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(43,50,16,0.72), rgba(43,50,16,0.6)),
    url('https://images.unsplash.com/photo-1521017432531-fbd92d768814?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(229,65,125,0.18), transparent 45%);
  pointer-events: none;
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.85;
}
.dot-1 { width: 26px; height: 26px; top: 14%; right: 10%; }
.dot-2 { width: 14px; height: 14px; bottom: 18%; left: 8%; background: var(--cream); }

.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(3.2rem, 10vw, 7rem);
  margin-bottom: 20px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.amp-pink { color: var(--pink); }
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--cream);
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About */
.about { padding: 100px 0; background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about h2 { font-size: 2.6rem; color: var(--olive-darker); }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--olive-darker);
}
.badge-icon { font-size: 1.1rem; }
.about-image {
  position: relative;
}
.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(43,50,16,0.2);
}
.about-image-stamp {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 14px 22px;
  border-radius: 50%;
  text-align: center;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  box-shadow: 0 10px 24px rgba(229,65,125,0.35);
  line-height: 1.2;
}

/* Menu */
.menu { padding: 100px 0; background: var(--olive-darker); color: var(--cream); }
.menu .section-tag { color: var(--pink); }
.menu h2 { color: var(--white); font-size: 2.6rem; margin-bottom: 50px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.menu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 24px;
  transition: transform 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); }
.menu-card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
}
.menu-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin: 20px 24px 10px;
}
.menu-card p {
  margin: 0 24px;
  color: var(--cream-dark);
  font-size: 0.95rem;
}
.menu-note {
  text-align: center;
  margin-top: 44px;
  color: var(--cream-dark);
}
.menu-note a { color: var(--pink); font-weight: 600; }

/* Gallery */
.gallery { padding: 100px 0 0; background: var(--cream); }
.gallery h2 { font-size: 2.6rem; color: var(--olive-darker); margin-bottom: 50px; }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.4s ease;
}
.gallery-strip img:hover { transform: scale(1.04); }

/* Visit */
.visit { padding: 100px 0; background: var(--cream); }
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.visit-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(43,50,16,0.2);
}
.visit h2 { font-size: 2.6rem; color: var(--olive-darker); }
.detail-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.detail-icon { font-size: 1.4rem; }
.detail-row strong { color: var(--olive-darker); display: block; margin-bottom: 4px; }
.detail-row p { margin: 0; }
.detail-row a { color: var(--pink-dark); font-weight: 600; }

/* Contact */
.contact {
  position: relative;
  padding: 110px 0;
  text-align: center;
  color: var(--white);
  background-image:
    linear-gradient(rgba(59,70,20,0.9), rgba(59,70,20,0.9)),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
}
.contact-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  border-radius: 50%;
}
.contact h2 { font-size: 2.6rem; }
.contact p { max-width: 480px; margin: 0 auto 30px; color: var(--cream-dark); }
.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--olive-darker);
  color: var(--cream-dark);
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-inner p { margin: 4px 0; }

/* Responsive */
@media (max-width: 900px) {
  .about-inner, .visit-inner { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .visit-map iframe { height: 320px; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid var(--cream-dark);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .about-image-stamp { width: 100px; height: 100px; font-size: 0.9rem; right: 8px; bottom: -14px; }
}

@media (max-width: 480px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img { height: 220px; }
}
