/*
  Design rationale: PURVEYR Plaza is a contemporary Filipino creative showroom — concrete floors, raw plywood shelving, industrial lighting, and curated Filipino-made goods. The palette mirrors the brand's logo: warm concrete grey as accent on deep carbon black, with amber warmth to evoke the showroom's wood fixtures and track lighting.
  Heading: Space Grotesk — geometric grotesque with personality, architectural and editorial — perfect for a design-forward creative retail space
  Body: Inter — clean, neutral, highly legible humanist sans — lets the product content breathe
*/

/* ─── 1. Reset & Custom Properties ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #191917;
  --bg-alt:     #232320;
  --accent:     #BFBAB4;
  --highlight:  #E8A050;
  --cream:      #F2EDE6;
  --cream-dim:  rgba(242,237,230,.65);
  --accent-dim: rgba(191,186,180,.13);
  --border:     rgba(191,186,180,.22);
  --ff-display: 'Space Grotesk', sans-serif;
  --ff-body:    'Inter', sans-serif;
  --nav-h:      72px;
  --radius:     4px;
  --trans:      0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream-dim);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── 2. Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--cream);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--cream-dim); }

.label {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── 3. Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: var(--cream); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--dark); }

.btn-highlight {
  background: var(--highlight);
  color: var(--dark);
}
.btn-highlight:hover { background: #F0B060; }

/* ─── 4. Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}

.navbar.scrolled {
  background: rgba(25,25,23,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius);
}

.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
}

.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--trans);
}

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

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  margin-left: auto;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  transition: all var(--trans);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--trans);
}

.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 1rem; }

/* ─── 5. Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,25,23,.88) 0%, rgba(25,25,23,.55) 60%, rgba(25,25,23,.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--nav-h) 2rem 4rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}

.hero h1 { margin-bottom: 1.25rem; max-width: 680px; }

.hero-tagline {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--cream-dim);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: .6;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}

.scroll-indicator svg { color: var(--cream); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── 6. Features Strip ──────────────────────────────────────────────────────── */
.features-strip {
  background: var(--bg-alt);
  padding: 3.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-item h4 {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.1rem;
}

.feature-item p {
  font-size: 0.83rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ─── 7. Offerings Grid ──────────────────────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 { margin-bottom: 0.75rem; }
.section-header p   { max-width: 560px; }

.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.offering-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}

.offering-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offering-tile:hover img { transform: scale(1.06); }

.offering-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25,25,23,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.offering-tile:hover .offering-tile-overlay { opacity: 1; }

.offering-tile-overlay .label { color: var(--accent); margin-bottom: 0.25rem; }
.offering-tile-overlay h4 { color: var(--cream); font-size: 1rem; }

/* Filter bar (collections page) */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

/* ─── 8. Brand Teaser ────────────────────────────────────────────────────────── */
.brand-teaser {
  background: var(--bg-alt);
}

.brand-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.brand-teaser-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.brand-teaser-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-teaser-copy {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.brand-teaser-copy p { line-height: 1.8; }

/* ─── 9. Stats Row ───────────────────────────────────────────────────────────── */
.stats-row {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  display: block;
}

.stat-item .stat-label {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.5rem;
  display: block;
}

/* ─── 10. Review Cards ───────────────────────────────────────────────────────── */
.reviews-section { background: var(--bg-alt); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars { display: flex; gap: 4px; color: var(--highlight); }
.review-stars svg { width: 15px; height: 15px; }

.review-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--cream-dim);
  flex: 1;
  font-style: italic;
}

.review-author {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ─── 11. Social CTA ─────────────────────────────────────────────────────────── */
.social-cta {
  background: var(--dark);
  text-align: center;
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.social-cta h2 { margin-bottom: 0.75rem; }
.social-cta p  { margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

.platform-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--cream);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
  text-decoration: none;
}

.platform-btn:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.platform-btn svg   { width: 18px; height: 18px; }

/* ─── 12. Social Feed Grid ───────────────────────────────────────────────────── */
.social-feed { padding: 0; }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.feed-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.feed-item:hover img {
  transform: scale(1.08);
  filter: brightness(.7);
}

.feed-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}

.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: #fff; }

/* ─── 13. Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius);
}

.footer-logo-text {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--cream-dim);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream-dim);
  transition: all var(--trans);
}

.footer-social-btn:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.footer-social-btn svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

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

.footer-col a {
  font-size: 0.85rem;
  color: var(--cream-dim);
  transition: color var(--trans);
}

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

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.84rem;
  color: var(--cream-dim);
  line-height: 1.55;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--cream-dim);
  opacity: .7;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badge {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

/* ─── 14. Page Hero ──────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25,25,23,.92) 0%, rgba(25,25,23,.4) 60%, rgba(25,25,23,.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  width: 100%;
}

.page-hero-content h1 { margin-bottom: 0.75rem; }
.page-hero-content p   { max-width: 560px; }

/* ─── 15. About Page ─────────────────────────────────────────────────────────── */
.origin-section { background: var(--dark); }

.origin-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.origin-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}

.origin-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-copy { display: flex; flex-direction: column; gap: 1.5rem; }
.origin-copy p { line-height: 1.85; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.philosophy-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.philosophy-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.philosophy-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.values-list {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  display: flex;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.value-item:first-child { border-top: 1px solid var(--border); }

.value-number {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: .4;
  flex-shrink: 0;
  width: 64px;
}

.value-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.value-content p { font-size: 0.88rem; line-height: 1.7; }

/* Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
  transform: translateX(-3.5px);
}

.timeline-date {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.4rem;
  display: block;
}

.timeline-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.timeline-item p { font-size: 0.88rem; line-height: 1.7; }

/* CTA Split */
.cta-split {
  background: var(--bg-alt);
}

.cta-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cta-split-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.cta-split-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-split-copy {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background: var(--dark);
}

.cta-split-copy p { line-height: 1.8; }

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ─── 16. Collections Page ───────────────────────────────────────────────────── */
.disclaimer-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  text-align: center;
}

.disclaimer-bar p {
  font-size: 0.82rem;
  color: var(--cream-dim);
}

.disclaimer-bar a {
  color: var(--accent);
  text-decoration: underline;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.category-tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-tile:hover img { transform: scale(1.05); }

.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25,25,23,.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.category-tile-overlay .label { color: var(--highlight); margin-bottom: 0.35rem; }
.category-tile-overlay h3 { color: var(--cream); font-size: 1.2rem; }

.category-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.category-section:last-child { border-bottom: none; }

.category-section-header {
  margin-bottom: 2rem;
}

.category-section-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-section-header p { font-size: 0.88rem; }

.items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.item-entry {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 2rem;
  align-items: start;
}

.item-entry:last-child { border-bottom: none; }

.item-info { flex: 1; }

.item-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.item-info p { font-size: 0.87rem; line-height: 1.7; }

.item-badge {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  flex-shrink: 0;
  margin-top: 4px;
}

.badge-signature { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-new       { background: rgba(232,160,80,.15); color: var(--highlight); border: 1px solid rgba(232,160,80,.3); }
.badge-exclusive { background: rgba(232,237,230,.08); color: var(--cream); border: 1px solid var(--border); }

.offerings-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-alt);
  margin-top: 2rem;
  border-radius: var(--radius);
}

/* ─── 17. Gallery Page ───────────────────────────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gallery-section-group {
  margin-bottom: 4rem;
}

.gallery-group-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.gallery-group-header h3 { font-size: 1.1rem; }
.gallery-group-date {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .7;
}

.masonry-grid {
  columns: 4;
  column-gap: 8px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  cursor: pointer;
  overflow: hidden;
  display: block;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.03);
  filter: brightness(.8);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,10,10,.97);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--trans);
}

.lightbox-close:hover { background: var(--accent); color: var(--dark); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  transition: all var(--trans);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); color: var(--dark); }

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
}

/* ─── 18. Contact Page ───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-block-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-block-icon svg { width: 18px; height: 18px; }

.contact-block h4 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-block p,
.contact-block a {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--cream-dim);
}

.contact-block a:hover { color: var(--accent); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.5rem 0; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; color: var(--cream); }
.hours-table tr.peak td { color: var(--highlight); }

/* Inquiry form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--cream);
  transition: border-color var(--trans);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(242,237,230,.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #E05050; }

.form-group select option { background: var(--bg-alt); }
.form-group textarea { resize: vertical; min-height: 130px; }

#formSuccess {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

#formSuccess svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin: 0 auto 1rem;
}

#formSuccess h3 { margin-bottom: 0.5rem; }
#formSuccess p  { font-size: 0.88rem; }

/* Map placeholder */
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.map-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.map-placeholder h4 { font-size: 1rem; }
.map-placeholder p   { font-size: 0.85rem; max-width: 360px; }
.map-placeholder a   { color: var(--accent); text-decoration: underline; font-size: 0.85rem; }

/* ─── 19. FAQ Accordion ──────────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-trigger h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--trans);
}

.faq-item.open .faq-trigger svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
}

.faq-answer-inner p { font-size: 0.88rem; line-height: 1.8; }

/* ─── 20. Scroll-to-Top Button ───────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream-dim);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans);
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover   { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.scroll-top svg     { width: 18px; height: 18px; }

/* ─── 21. Fade-in Animation ──────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: none; }

/* ─── 22. Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-inner { grid-template-columns: repeat(3, 1fr); }
  .features-inner .feature-item:nth-child(4),
  .features-inner .feature-item:nth-child(5) { display: none; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .brand-teaser-copy  { padding: 3.5rem 2.5rem; }
  .cta-split-copy     { padding: 3.5rem 2.5rem; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid   { columns: 3; }
  .contact-grid   { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .features-inner .feature-item:nth-child(4),
  .features-inner .feature-item:nth-child(5) { display: flex; }
  .features-inner .feature-item:nth-child(5) { display: none; }
  .offerings-grid  { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner { grid-template-columns: 1fr; }
  .brand-teaser-img { aspect-ratio: 16/9; }
  .brand-teaser-copy { padding: 3rem 2rem; }
  .stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .feed-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .origin-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .cta-split-inner { grid-template-columns: 1fr; }
  .cta-split-img   { aspect-ratio: 16/9; }
  .cta-split-copy  { padding: 3rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .category-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .section { padding: 4rem 1.25rem; }
  .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .features-inner  { grid-template-columns: 1fr; gap: 1.5rem; }
  .offerings-grid  { grid-template-columns: 1fr; }
  .stats-inner     { grid-template-columns: repeat(2, 1fr); }
  .feed-grid       { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid    { columns: 1; }
  .hero-btns       { flex-direction: column; align-items: flex-start; }
  .cta-btns        { flex-direction: column; }
  .platform-btns   { flex-direction: column; align-items: center; }
  .brand-teaser-copy { padding: 2.5rem 1.25rem; }
  .value-item      { gap: 1.25rem; }
  .value-number    { font-size: 1.4rem; width: 40px; }
  .footer          { padding: 3.5rem 1.25rem 2rem; }
}
