/*
 * ============================================================
 * BRUTAL BY WADOUGHS — Design System
 * ============================================================
 * PALETTE RATIONALE:
 * Logo is stark black (#0D0D0D) background with bold white
 * "BRUTAL BY WADOUGHS" letterforms — clean, uncompromising.
 * Building signage uses warm amber-gold lettering set against
 * raw concrete — a reference to precious materials meeting
 * brutalist permanence. --accent (#C4A028) is sampled directly
 * from the golden "BRUTAL" signage on the building facade.
 * --highlight (#8C7A5E) pulls from the warm sand/concrete tones
 * of the building exterior.
 *
 * TYPOGRAPHY:
 * Archivo Black (display) — ultra-bold grotesque with architectural
 * presence; first use in portfolio. The geometric heaviness mirrors
 * the restaurant's brutalist design philosophy.
 * Outfit (body) — clean modern humanist sans, warm and legible.
 * This Archivo Black + Outfit pairing is new to the portfolio.
 *
 * IMAGE CATEGORIES:
 * MENU: drink-matcha-iced, drink-matcha-latte-hot, drink-matcha-latte-hot-02,
 *       menu-black-tide-salad-01, menu-black-tide-salad-02, menu-mushroom-soup,
 *       menu-mushroom-pasta, menu-mushroom-pasta-02, menu-curry-rice-bowl,
 *       menu-curry-rice-02, menu-soup-bisque-02
 * GALLERY: banner, exterior-building-01, exterior-building-02, people-chef-wado,
 *          event-brtl-wknd-jams-tala, event-brtl-wknd-jams-tala-02,
 *          event-brtl-wknd-jams-trio, event-brtl-wknd-jams-trio-02,
 *          merch-life-made-brutal-tshirt, merch-life-made-brutal-tshirt-02,
 *          press-spotph-article, press-spotph-article-02
 * ============================================================
 */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --dark:        #0D0D0D;
  --bg-alt:      #161410;
  --accent:      #C4A028;
  --highlight:   #8C7A5E;
  --cream:       #F2EDE6;
  --cream-dim:   rgba(242, 237, 230, 0.65);
  --accent-dim:  rgba(196, 160, 40, 0.14);
  --border:      rgba(196, 160, 40, 0.22);
  --ff-display:  'Archivo Black', sans-serif;
  --ff-body:     'Outfit', sans-serif;
  --nav-h:       72px;
  --radius:      4px;
  --transition:  0.3s ease;
}

/* ============================================================
   3. 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.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.06em; }
p { font-size: 1rem; font-weight: 400; line-height: 1.75; }
.lead { font-size: 1.15rem; line-height: 1.7; }
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

/* ============================================================
   5. UTILITY CLASSES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--dark); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn--primary {
  background: var(--accent);
  color: var(--dark);
}
.btn--primary:hover {
  background: #d4b030;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,160,40,0.35);
}
.btn--outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid rgba(242,237,230,0.3);
  color: var(--cream);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(242,237,230,0.08);
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* ============================================================
   6. FADE-IN ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}
.navbar__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 6px 10px;
}
.nav-logo span {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(242,237,230,0.8);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-cta {
  padding: 10px 24px;
  font-size: 0.72rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--cream);
  cursor: pointer;
  background: none;
  border: none;
}

/* ============================================================
   8. HERO (HOME)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.2) 0%,
    rgba(13,13,13,0.5) 50%,
    rgba(13,13,13,0.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}
.hero__badge {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 6px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  background: var(--accent-dim);
}
.hero h1 {
  margin-bottom: 8px;
  color: var(--cream);
}
.hero__sub {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream-dim);
  margin-bottom: 40px;
  font-style: italic;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   9. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.85) 40%, rgba(13,13,13,0.3) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: var(--nav-h);
}
.page-hero__content h1 { color: var(--cream); margin-bottom: 12px; }
.page-hero__content p { color: var(--cream-dim); max-width: 560px; font-size: 1.05rem; }

/* ============================================================
   10. FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--accent);
  padding: 32px 0;
}
.features-strip .container {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  border-right: 1px solid rgba(13,13,13,0.2);
  white-space: nowrap;
  flex-shrink: 0;
}
.feature-item:last-child { border-right: none; }
.feature-item svg { width: 28px; height: 28px; color: var(--dark); flex-shrink: 0; }
.feature-item span {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}

/* ============================================================
   11. OFFERINGS GRID
   ============================================================ */
.offerings { padding: 100px 0; background: var(--bg-alt); }
.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.offering-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.offering-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-tile:hover img { transform: scale(1.06); }
.offering-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.offering-tile:hover .offering-tile__overlay { opacity: 1; }
.offering-tile__name {
  font-family: var(--ff-display);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.offering-tile__cat {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

/* ============================================================
   12. BRAND TEASER
   ============================================================ */
.brand-teaser { padding: 100px 0; background: var(--dark); }
.brand-teaser__img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.brand-teaser__img img { width: 100%; height: 500px; object-fit: cover; }
.brand-teaser__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}
.brand-teaser__text h2 { margin-bottom: 20px; }
.brand-teaser__text p { color: var(--cream-dim); margin-bottom: 20px; }

/* ============================================================
   13. STATS ROW
   ============================================================ */
.stats-row { padding: 80px 0; background: var(--bg-alt); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============================================================
   14. REVIEW CARDS
   ============================================================ */
.reviews { padding: 100px 0; background: var(--dark); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.review-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.review-stars svg { width: 16px; height: 16px; color: var(--accent); }
.review-text {
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 24px;
  line-height: 1.8;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-author strong {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
}
.review-author span {
  font-size: 0.75rem;
  color: var(--highlight);
  letter-spacing: 0.08em;
}

/* ============================================================
   15. SOCIAL CTA
   ============================================================ */
.social-cta { padding: 80px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.social-cta__inner {
  text-align: center;
}
.social-cta h2 { margin-bottom: 16px; }
.social-cta p { color: var(--cream-dim); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.social-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.social-btn svg { width: 20px; height: 20px; }

/* ============================================================
   16. SOCIAL FEED PREVIEW
   ============================================================ */
.social-feed { padding: 100px 0; background: var(--dark); }
.social-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feed-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(196,160,40,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.feed-item__overlay svg { width: 32px; height: 32px; color: white; }
.feed-item:hover img { transform: scale(1.05); }
.feed-item:hover .feed-item__overlay { opacity: 1; }

/* ============================================================
   17. ABOUT PAGE
   ============================================================ */
.origin-section { padding: 100px 0; background: var(--dark); }
.origin-section__img { border-radius: var(--radius); overflow: hidden; }
.origin-section__img img { width: 100%; height: 480px; object-fit: cover; }
.origin-section__text h2 { margin-bottom: 24px; }
.origin-section__text p { color: var(--cream-dim); margin-bottom: 16px; }

.philosophy-cards { padding: 100px 0; background: var(--bg-alt); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.philosophy-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent);
}
.philosophy-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.philosophy-card p { color: var(--cream-dim); }

.values-section { padding: 100px 0; background: var(--dark); }
.values-list { margin-top: 60px; }
.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.value-item:first-child { border-top: 1px solid var(--border); }
.value-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}
.value-item h4 { margin-bottom: 8px; }
.value-item p { color: var(--cream-dim); }

.timeline-section { padding: 100px 0; background: var(--bg-alt); }
.timeline { position: relative; margin-top: 60px; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
}
.timeline-date {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.timeline-item h4 { margin-bottom: 8px; font-size: 1rem; }
.timeline-item p { color: var(--cream-dim); }

.about-cta { padding: 100px 0; background: var(--dark); }
.about-cta .grid-2 { gap: 80px; }
.about-cta__img { border-radius: var(--radius); overflow: hidden; }
.about-cta__img img { width: 100%; height: 420px; object-fit: cover; }
.about-cta__text h2 { margin-bottom: 24px; }
.about-cta__text p { color: var(--cream-dim); margin-bottom: 16px; }
.about-cta__btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ============================================================
   18. MENU PAGE
   ============================================================ */
.disclaimer-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.disclaimer-bar p { font-size: 0.85rem; color: var(--cream-dim); }
.disclaimer-bar a { color: var(--accent); text-decoration: underline; }

.menu-categories { padding: 80px 0; background: var(--dark); }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.cat-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
}
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.6);
}
.cat-tile:hover img { transform: scale(1.05); filter: brightness(0.5); }
.cat-tile__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, transparent 100%);
}
.cat-tile__name {
  font-family: var(--ff-display);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  letter-spacing: 0.08em;
}
.cat-tile__count {
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-sections { padding: 80px 0; background: var(--bg-alt); }
.menu-section { margin-bottom: 80px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
.menu-section__header h2 { flex: 1; }
.menu-section__img-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.menu-section__desc {
  color: var(--cream-dim);
  margin-bottom: 40px;
  max-width: 700px;
  font-size: 1.05rem;
}
.menu-items-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.menu-item:first-child { border-top: 1px solid var(--border); }
.menu-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--cream);
}
.menu-item p { color: var(--cream-dim); font-size: 0.9rem; line-height: 1.6; }
.menu-item__badges { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}
.badge--signature { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge--new { background: rgba(196,160,40,0.25); color: #e8c84a; border: 1px solid rgba(196,160,40,0.4); }
.badge--popular { background: rgba(140,122,94,0.2); color: var(--highlight); border: 1px solid rgba(140,122,94,0.3); }

.menu-cta { padding: 80px 0; background: var(--dark); text-align: center; }
.menu-cta h2 { margin-bottom: 16px; }
.menu-cta p { color: var(--cream-dim); margin-bottom: 40px; }

/* ============================================================
   19. GALLERY PAGE
   ============================================================ */
.gallery-filter { padding: 48px 0; background: var(--dark); }
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: transparent;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.gallery-masonry { padding: 60px 0 100px; background: var(--bg-alt); }
.gallery-group { margin-bottom: 60px; }
.gallery-group__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.gallery-group__header h3 { font-size: 1.4rem; }
.gallery-group__date {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
}
.masonry-grid {
  columns: 4;
  column-gap: 8px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.masonry-item:hover img { transform: scale(1.03); }
.masonry-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(196,160,40,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-item__overlay { opacity: 1; }
.masonry-item__overlay svg { width: 32px; height: 32px; color: white; }

.gallery-cta { padding: 80px 0; background: var(--dark); text-align: center; }
.gallery-cta h2 { margin-bottom: 16px; }
.gallery-cta p { color: var(--cream-dim); margin-bottom: 40px; }
.gallery-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   20. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(13,13,13,0.7);
  border: 1px solid var(--border);
  color: var(--cream);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.lightbox__close { top: 20px; right: 20px; font-size: 1.4rem; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
}
.lightbox__prev svg, .lightbox__next svg { width: 20px; height: 20px; }

/* ============================================================
   21. CONTACT PAGE
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-block { margin-bottom: 40px; }
.contact-block h4 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-block p,
.contact-block a {
  color: var(--cream-dim);
  font-size: 0.95rem;
}
.contact-block a:hover { color: var(--accent); }
.hours-table { width: 100%; }
.hours-table td { padding: 6px 0; color: var(--cream-dim); font-size: 0.9rem; }
.hours-table td:first-child { color: var(--cream); font-weight: 600; min-width: 120px; }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.contact-social a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.contact-social svg { width: 18px; height: 18px; }

/* Contact Form */
.contact-form h3 { margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-dim);
  margin-bottom: 8px;
}
label .required { color: var(--accent); margin-left: 2px; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 14px 16px;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}
input.error, select.error, textarea.error {
  border-color: #e85c5c;
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C4A028' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; }
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

#formSuccess {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
#formSuccess svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 24px; }
#formSuccess h3 { margin-bottom: 12px; }
#formSuccess p { color: var(--cream-dim); }

/* Map */
.map-section { padding: 80px 0; background: var(--bg-alt); }
.map-placeholder {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 20px; }
.map-placeholder h4 { margin-bottom: 8px; }
.map-placeholder p { color: var(--cream-dim); margin-bottom: 24px; }

/* FAQ */
.faq-section { padding: 100px 0; background: var(--dark); }
.faq-list { margin-top: 60px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  color: var(--cream-dim);
  padding-bottom: 24px;
  line-height: 1.8;
}

/* ============================================================
   22. FOOTER
   ============================================================ */
.footer { background: #080808; border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 6px 8px;
}
.footer__logo span {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer__tagline { color: var(--cream-dim); font-size: 0.9rem; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }
.footer__social svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--cream-dim);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col p { color: var(--cream-dim); font-size: 0.9rem; margin-bottom: 8px; }
.footer-col strong { color: var(--cream); }
.footer__bar {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bar p { font-size: 0.8rem; color: var(--cream-dim); }
.footer__badges { display: flex; gap: 12px; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 2px;
}
.footer-badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ============================================================
   23. SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(196,160,40,0.4);
  transition: all var(--transition);
}
#scrollTop:hover { background: #d4b030; transform: translateY(-2px); }
#scrollTop svg { width: 20px; height: 20px; }
#scrollTop.visible { display: flex; }

/* ============================================================
   24. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-2 { gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 3; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .offerings__grid { grid-template-columns: repeat(2, 1fr); }
  .social-feed__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .features-strip .container { justify-content: flex-start; }
  .value-item { grid-template-columns: 60px 1fr; }

  h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .section--lg { padding: 80px 0; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .offerings__grid { grid-template-columns: 1fr; }
  .social-feed__grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .masonry-grid { columns: 2; }
  .footer__bar { flex-direction: column; text-align: center; }
  .filter-bar { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   25. ALIAS / BRIDGE CLASSES
   These map the class names used in the HTML to the CSS system.
   ============================================================ */

/* --- Navbar bridge --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .nav-links.open a {
    font-family: var(--ff-display);
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--cream);
    text-transform: uppercase;
  }
  .nav-links.open a:hover,
  .nav-links.open a.active { color: var(--accent); }
}

/* --- Button class aliases --- */
.btn-primary  { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: #d4b030; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,160,40,0.35); }
.btn-outline  { border: 1px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent-dim); transform: translateY(-2px); }
.btn-ghost    { border: 1px solid rgba(242,237,230,0.3); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(242,237,230,0.08); }

/* --- Hero bridge (index.html uses these) --- */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.2) 0%, rgba(13,13,13,0.5) 50%, rgba(13,13,13,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 24px;
}
.hero-eyebrow {
  display: inline-block;
  border: 1px solid var(--border);
  padding: 6px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  background: var(--accent-dim);
}
.hero-title  { margin-bottom: 8px; color: var(--cream); }
.hero-sub    { font-size: 1rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 20px; }
.hero-tagline { font-size: clamp(1rem,2vw,1.25rem); color: var(--cream-dim); margin-bottom: 40px; font-style: italic; }
.hero-ctas   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--cream-dim); display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}

/* --- Features strip bridge --- */
.features-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 0; overflow-x: auto;
}
.feature-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 0 32px;
  border-right: 1px solid rgba(13,13,13,0.2);
  white-space: nowrap; flex-shrink: 0;
  font-family: var(--ff-display); font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark);
}
.feature-pill:last-child { border-right: none; }
.feature-pill svg { width: 22px; height: 22px; color: var(--dark); flex-shrink: 0; }

/* --- Section header / eyebrow --- */
.section-header { margin-bottom: 60px; }
.eyebrow {
  display: block;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-bottom: 12px;
}
.section-pad { padding: 80px 0; }

/* --- Offerings bridge (index.html uses offering-tile / offering-img-wrap / offering-body) --- */
.offerings-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px;
}
.offering-tile {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
}
.offering-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.offering-tile--wide { grid-column: span 2; }
.offering-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.offering-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offering-tile:hover .offering-img-wrap img { transform: scale(1.04); }
.offering-body { padding: 20px 24px; }
.offering-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.offering-body p  { color: var(--cream-dim); font-size: 0.9rem; }
.section-cta { text-align: center; margin-top: 48px; }

/* --- Brand teaser bridge --- */
.brand-teaser-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.brand-teaser-img { border-radius: var(--radius); overflow: hidden; position: relative; }
.brand-teaser-img img { width: 100%; height: 500px; object-fit: cover; }
.brand-teaser-img::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border); border-radius: var(--radius); pointer-events: none;
}
.brand-teaser-text h2 { margin-bottom: 20px; }
.brand-teaser-text p  { color: var(--cream-dim); margin-bottom: 20px; }

/* --- Social CTA bridge --- */
.social-cta-inner { text-align: center; }
.social-cta-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.social-link-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.8rem; letter-spacing: 0.1em; font-weight: 600; text-transform: uppercase;
  transition: all var(--transition);
}
.social-link-btn:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.social-link-btn svg { width: 20px; height: 20px; }

/* --- Social feed bridge --- */
.feed-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-top: 48px;
}
.feed-item { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.feed-item--tall { aspect-ratio: 1/2; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feed-item:hover img { transform: scale(1.05); }
.feed-overlay {
  position: absolute; inset: 0; background: rgba(196,160,40,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.feed-item:hover .feed-overlay { opacity: 1; }
.feed-overlay svg { width: 32px; height: 32px; color: white; }

/* --- Stats section-pad alias --- */
.stats-row.section-pad { padding: 80px 0; background: var(--bg-alt); }

/* --- Footer bridge --- */
.site-footer { background: #080808; border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand {}
.footer-brand .nav-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-tagline { color: var(--cream-dim); font-size: 0.9rem; }
.footer-nav h4, .footer-contact h4, .footer-social h4 {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a { color: var(--cream-dim); font-size: 0.9rem; transition: color var(--transition); }
.footer-nav ul li a:hover { color: var(--accent); }
.footer-contact address { color: var(--cream-dim); font-style: normal; font-size: 0.9rem; line-height: 1.8; }
.footer-hours { color: var(--cream-dim); font-size: 0.85rem; margin-top: 8px; }
.footer-social-links { display: flex; gap: 12px; }
.footer-social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%;
  color: var(--cream-dim); transition: all var(--transition);
}
.footer-social-links a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
}
.footer-bottom p { font-size: 0.8rem; color: var(--cream-dim); }

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .brand-teaser-inner { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: repeat(2,1fr); }
  .offering-tile--wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .feed-grid { grid-template-columns: repeat(2,1fr); }
  .offerings-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-tile--wide { grid-column: span 1; }
}
