:root {
  --cream: #f7efe4;
  --cream-soft: #fffaf3;
  --espresso: #2a1c14;
  --brown-dark: #3b2a1f;
  --brown: #6b4a35;
  --tan: #b08968;
  --tan-soft: #e6d5c3;
  --gold: #a97142;
  --shadow-sm: 0 4px 14px rgba(59, 42, 31, 0.10);
  --shadow-md: 0 10px 30px rgba(59, 42, 31, 0.14);
  --shadow-lg: 0 20px 50px rgba(42, 28, 20, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--brown-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  margin: 0;
  color: var(--espresso);
}

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

a {
  color: inherit;
}

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

main {
  flex: 1;
  width: 100%;
  overflow-x: hidden;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header (inner pages) ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--tan-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header a {
  text-decoration: none;
}

.site-header .logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.site-header .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--espresso);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}

.header-link:hover {
  color: var(--espresso);
}

.site-header .header-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream-soft);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }
  .header-nav {
    gap: 10px;
  }
  .header-link {
    font-size: 12px;
  }
  .site-header .header-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: scale(0.97);
}

.btn:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream-soft);
}

.btn-secondary {
  background: var(--cream-soft);
  color: var(--espresso);
  border: 2px solid var(--tan);
  box-shadow: none;
}

.btn-secondary:hover {
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-soft);
  border: 2px solid rgba(255, 250, 243, 0.55);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: var(--cream-soft);
  box-shadow: none;
}

.btn-icon {
  font-size: 19px;
  line-height: 1;
}

.btn-small {
  padding: 11px 20px;
  font-size: 14px;
  border-radius: 999px;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100svh;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream-soft);
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 13, 9, 0.55) 0%, rgba(20, 13, 9, 0.45) 40%, rgba(20, 13, 9, 0.88) 100%);
}

.hero .badge {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hero .badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan-soft);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero h1 {
  color: var(--cream-soft);
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.15;
  max-width: 780px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero .lede {
  margin: 22px 0 40px;
  max-width: 480px;
  font-size: 17px;
  color: var(--tan-soft);
  opacity: 0.95;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Order buttons ---------- */

.order-section {
  padding: 72px 0;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.order-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 16px;
  border-radius: 16px;
  background: var(--cream-soft);
  border: 1.5px solid var(--tan-soft);
  text-decoration: none;
  color: var(--espresso);
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.order-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.order-icon {
  font-size: 30px;
  line-height: 1;
}

.order-btn.js-soon-active {
  background: var(--espresso);
  color: var(--cream-soft);
  border-color: var(--espresso);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--brown);
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Sections ---------- */

section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--brown);
  font-size: 16px;
}

.section-alt {
  background: var(--cream-soft);
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-copy p {
  color: var(--brown);
  font-size: 16px;
}

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-collage img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.about-collage img:nth-child(1) { margin-top: 28px; }
.about-collage img:nth-child(3) { margin-top: -28px; }

/* ---------- Featured / product cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px;
}

.card {
  background: var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card .card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--tan-soft);
}

.card .card-body {
  padding: 18px 20px 22px;
}

.card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.card h3 {
  font-size: 18px;
  line-height: 1.3;
}

.card .price {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--gold);
  white-space: nowrap;
}

.card .desc {
  font-size: 14px;
  color: var(--brown);
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.gallery-grid .big {
  grid-column: span 2;
  grid-row: span 2;
}

/* ---------- Reviews banner ---------- */

.reviews-banner {
  background: var(--espresso);
  color: var(--cream-soft);
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  margin: 0 24px;
}

.reviews-banner .stars {
  font-size: 26px;
  letter-spacing: 6px;
  color: #e8c896;
  margin-bottom: 18px;
}

.reviews-banner h2 {
  color: var(--cream-soft);
  font-size: clamp(24px, 3.4vw, 34px);
  margin-bottom: 14px;
}

.reviews-banner p {
  color: var(--tan-soft);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */

footer {
  text-align: center;
  padding: 56px 20px 32px;
  color: var(--brown);
}

footer .footer-logo {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
}

footer .footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 18px 0 28px;
  font-size: 14px;
  font-weight: 600;
}

footer .footer-links a {
  text-decoration: none;
  color: var(--espresso);
}

footer .footer-address {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 22px;
}

footer .footer-credit {
  font-size: 12px;
  opacity: 0.6;
  border-top: 1px solid var(--tan-soft);
  padding-top: 20px;
  margin-top: 10px;
}

footer .footer-credit a {
  text-decoration: underline;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Menu page ---------- */

.menu-hero {
  padding: 56px 0 20px;
  text-align: center;
}

.menu-hero .eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.menu-hero h1 {
  font-size: clamp(30px, 5vw, 44px);
}

.category-nav {
  position: sticky;
  top: 65px;
  z-index: 50;
  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--tan-soft);
  padding: 14px 0;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav .wrap {
  display: flex;
  gap: 10px;
}

.category-nav a {
  flex: none;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--tan-soft);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-nav a:hover,
.category-nav a.active {
  background: var(--espresso);
  color: var(--cream-soft);
  border-color: var(--espresso);
}

.menu-category {
  padding: 64px 0 12px;
  scroll-margin-top: 130px;
}

.menu-category h2 {
  font-size: 26px;
  margin-bottom: 34px;
  text-align: center;
}

.menu-cta-inline {
  text-align: center;
  padding: 60px 0 20px;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-collage img:nth-child(1),
  .about-collage img:nth-child(3) {
    margin-top: 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .reviews-banner {
    margin: 0 16px;
    padding: 48px 24px;
  }
  section {
    padding: 68px 0;
  }
}

@media (max-width: 480px) {
  .site-header .brand-name {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .scroll-cue {
    animation: none;
  }
}
