/* =============================================================
   AMBAI Modern Tambayan — styles.css
   Palette: Crimson Terracotta + Antique Brass
   Logo background: #7c2c25 (verified via pixel analysis)
   ============================================================= */

/* 1. CUSTOM PROPERTIES
   ============================================================= */
:root {
  --dark:        #1A0C0A;
  --bg-alt:      #261210;
  --accent:      #7C2C25;
  --highlight:   #D4A45A;
  --cream:       #F2EBE0;
  --cream-dim:   rgba(242,235,224,0.65);
  --accent-dim:  rgba(124,44,37,0.16);
  --border:      rgba(124,44,37,0.28);
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;
  --nav-h:       72px;
  --radius:      6px;
  --trans:       0.35s ease;
}

/* 2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* 3. TYPOGRAPHY
   ============================================================= */
h1,h2,h3,h4,h5 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--cream-dim); }

/* 4. UTILITIES
   ============================================================= */
.container { width: min(1160px, 92%); margin: 0 auto; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-accent { color: var(--accent); }
.text-highlight { color: var(--highlight); }
.label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: .8rem;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 580px; margin: .8rem auto 0; }
.divider {
  width: 48px; height: 2px;
  background: var(--accent);
  display: block;
  margin: 1rem auto 0;
}
.divider-left { margin: 1rem 0 0; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* 5. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: #5e1f19;
  border-color: #5e1f19;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,44,37,.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--highlight);
  color: var(--highlight);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--highlight);
  color: var(--dark);
  border: 2px solid var(--highlight);
  font-weight: 700;
}
.btn-gold:hover {
  background: #c4933f;
  border-color: #c4933f;
  transform: translateY(-2px);
}

/* 6. NAVBAR
   ============================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-brand-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.nav-brand-text span {
  display: block;
  font-size: .65rem;
  font-family: var(--ff-body);
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--highlight);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* 7. HERO
   ============================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(19,11,9,.75) 0%,
    rgba(19,11,9,.55) 50%,
    rgba(19,11,9,.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(212,164,90,.35);
  padding: .35rem .9rem;
  border-radius: 20px;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff;
  margin-bottom: .5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero-subtitle {
  font-family: var(--ff-body);
  font-size: 1rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.2rem;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(242,235,224,.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  opacity: .6;
  animation: bounce 2s ease infinite;
}
.scroll-indicator span {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream);
}
.scroll-indicator svg { width: 20px; height: 20px; color: var(--highlight); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* 8. PAGE HERO
   ============================================================= */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  margin-top: var(--nav-h);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(19,11,9,.65) 0%, rgba(19,11,9,.8) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}
.page-hero-content h1 { color: #fff; }
.page-hero-content p {
  font-size: 1.05rem;
  margin-top: .75rem;
  color: rgba(242,235,224,.8);
}
.breadcrumb {
  display: flex;
  gap: .5rem;
  justify-content: center;
  font-size: .8rem;
  color: var(--highlight);
  margin-bottom: .75rem;
  letter-spacing: .05em;
}
.breadcrumb a { color: var(--highlight); opacity: .7; }
.breadcrumb a:hover { opacity: 1; }

/* 9. FEATURES STRIP
   ============================================================= */
.features-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  border-right: 1px solid var(--border);
  transition: background var(--trans);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--accent-dim); }
.feature-icon {
  width: 52px; height: 52px;
  margin-bottom: 1rem;
  color: var(--accent);
}
.feature-item h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  margin-bottom: .35rem;
}
.feature-item p { font-size: .82rem; }

/* 10. OFFERINGS GRID
    ============================================================= */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offering-tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.offering-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.offering-tile:hover img { transform: scale(1.07); }
.offering-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,11,9,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}
.offering-tile-overlay h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: .25rem;
}
.offering-tile-overlay p {
  font-size: .78rem;
  color: rgba(242,235,224,.75);
  line-height: 1.4;
}
.offering-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 20px;
}

/* 11. BRAND TEASER
    ============================================================= */
.brand-teaser {
  background: var(--bg-alt);
}
.brand-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-teaser-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.brand-teaser-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.brand-teaser-img::before {
  content: '';
  position: absolute;
  inset: 15px -15px -15px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  z-index: -1;
}
.brand-teaser-text { padding: 0 1rem; }
.brand-teaser-text h2 { margin-bottom: 1.5rem; }
.brand-teaser-text p { margin-bottom: 1rem; }
.brand-teaser-text .btn { margin-top: 1.5rem; }

/* 12. STATS ROW
    ============================================================= */
.stats-row {
  background: var(--accent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 3.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* 13. REVIEW CARDS
    ============================================================= */
.reviews { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--highlight);
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: .92rem;
  color: var(--cream-dim);
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.65;
}
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--accent);
}
.review-author-info { font-size: .82rem; }
.review-author-info strong { color: var(--cream); display: block; }
.review-author-info span { color: var(--cream-dim); }

/* 14. SOCIAL CTA
    ============================================================= */
.social-cta {
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: .88rem;
  font-weight: 500;
  color: var(--cream);
  transition: all var(--trans);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.social-btn.wa:hover { border-color: #25D366; color: #25D366; }

/* 15. SOCIAL FEED PREVIEW
    ============================================================= */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-alt);
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .5s ease;
}
.feed-item:hover img { transform: scale(1.08); opacity: .8; }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(124,44,37,.5);
  transition: opacity var(--trans);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 26px; height: 26px; color: #fff; }

/* 16. FOOTER
    ============================================================= */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--cream);
  display: block;
  margin-bottom: .4rem;
}
.footer-tagline {
  font-size: .85rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  max-width: 280px;
  line-height: 1.6;
}
.footer-socials { display: flex; gap: .75rem; }
.footer-social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
  color: var(--cream);
}
.footer-social-icon svg { width: 15px; height: 15px; }
.footer-social-icon:hover { background: var(--accent); border-color: var(--accent); }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: var(--cream-dim);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-visit p {
  font-size: .875rem;
  color: var(--cream-dim);
  margin-bottom: .5rem;
}
.footer-visit strong { color: var(--cream); }
.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: var(--cream-dim);
}

/* 17. ABOUT PAGE SPECIFIC
    ============================================================= */
.origin-section { background: var(--dark); }
.origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.origin-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.origin-img img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform var(--trans);
}
.philosophy-card:hover { transform: translateY(-4px); }
.philosophy-card svg { width: 36px; height: 36px; color: var(--accent); margin-bottom: 1rem; }
.values-list { max-width: 800px; margin: 0 auto; }
.value-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}
.value-item h3 { margin-bottom: .4rem; }
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 52px;
  margin-bottom: 2.5rem;
}
.timeline-dot {
  position: absolute;
  left: 9px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
}
.timeline-date {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: .3rem;
}
.timeline-item h3 { margin-bottom: .4rem; }
.about-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-cta-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-btns { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }

/* 18. MENU PAGE SPECIFIC
    ============================================================= */
.disclaimer-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
  font-size: .88rem;
  color: var(--cream-dim);
  text-align: center;
}
.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}
.cat-tile {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--trans);
}
.cat-tile:hover, .cat-tile.active {
  background: var(--accent);
  border-color: var(--accent);
}
.cat-tile svg { width: 28px; height: 28px; color: var(--highlight); margin: 0 auto .5rem; display: block; }
.cat-tile:hover svg, .cat-tile.active svg { color: #fff; }
.cat-tile span { font-size: .82rem; font-weight: 600; letter-spacing: .05em; }
.menu-section { margin-bottom: 64px; }
.menu-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.menu-section-header h2 {
  font-size: 1.8rem;
  flex: 1;
}
.menu-section-header .section-count {
  font-size: .78rem;
  color: var(--highlight);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: .25rem;
}
.menu-item-desc {
  font-size: .85rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.menu-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 20px;
  white-space: nowrap;
}
.badge-signature { background: rgba(124,44,37,.2); color: var(--accent); border: 1px solid var(--border); }
.badge-popular  { background: rgba(212,164,90,.2); color: var(--highlight); border: 1px solid rgba(212,164,90,.3); }
.badge-house    { background: rgba(212,164,90,.15); color: var(--highlight); border: 1px solid rgba(212,164,90,.25); }
.menu-bottom-cta {
  text-align: center;
  padding: 3rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* 19. GALLERY PAGE SPECIFIC
    ============================================================= */
.filter-bar {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: .55rem 1.4rem;
  border-radius: 30px;
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 500;
  color: var(--cream-dim);
  background: transparent;
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.masonry {
  columns: 3;
  column-gap: 16px;
  margin-bottom: 48px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124,44,37,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 32px; height: 32px; color: #fff; }
.gallery-section { margin-bottom: 56px; }
.gallery-section-title {
  font-size: 1.2rem;
  font-family: var(--ff-display);
  color: var(--highlight);
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--trans);
}
.lightbox-close:hover { background: var(--accent); }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--trans);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%; transform: translateX(-50%);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
}

/* 20. CONTACT PAGE SPECIFIC
    ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-block-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.contact-block-icon svg { width: 20px; height: 20px; }
.contact-block h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.contact-block p,
.contact-block a { font-size: .9rem; color: var(--cream-dim); }
.contact-block a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours-table td { padding: .35rem 0; font-size: .88rem; color: var(--cream-dim); }
.hours-table td:first-child { color: var(--cream); font-weight: 500; padding-right: 1rem; }
.inquiry-form { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.inquiry-form h2 { margin-bottom: .5rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--highlight);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: .9rem;
  transition: border-color var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; width: 100%; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(212,164,90,.1);
  border: 1px solid rgba(212,164,90,.3);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--highlight); margin-bottom: .5rem; }
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  margin: 3rem 0;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); }
.map-placeholder h3 { margin-bottom: .25rem; }
.map-placeholder p { font-size: .9rem; }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  gap: 1rem;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--highlight); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--trans), background var(--trans);
}
.faq-icon svg { width: 12px; height: 12px; color: var(--accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); }
.faq-item.open .faq-icon svg { color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer p {
  padding-bottom: 1.4rem;
  font-size: .9rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* 21. SCROLL-TO-TOP
    ============================================================= */
#scrollTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(124,44,37,.4);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: #5e1f19; transform: translateY(-2px); }
#scrollTop svg { width: 18px; height: 18px; }

/* 22. RESPONSIVE
    ============================================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .feature-item:nth-child(4),
  .feature-item:nth-child(5) { border-top: 1px solid var(--border); }
  .feature-item:nth-child(5) { border-right: none; }
  .brand-teaser-inner,
  .origin-inner,
  .about-cta-split { grid-template-columns: 1fr; gap: 40px; }
  .brand-teaser-img,
  .origin-img { aspect-ratio: 16/7; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.15); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid .review-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .category-tiles-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--dark);
    padding: 2.5rem 5%;
    gap: 1.5rem;
    overflow-y: auto;
    z-index: 899;
  }
  .nav-links.open + .nav-cta { display: block; position: fixed; bottom: 2rem; left: 5%; right: 5%; z-index: 900; }
  .nav-links.open a { font-size: 1.3rem; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-top: 1px solid var(--border); }
  .feature-item:nth-child(4),
  .feature-item:nth-child(5) { border-top: 1px solid var(--border); }
  .feature-item:nth-child(4) { border-right: 1px solid var(--border); }
  .feature-item:nth-child(5) { border-right: none; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:last-child { max-width: 100%; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .category-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 1; }
  .category-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .about-cta-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
