/* =============================================================
   MỘC Cafe — styles.css
   22-section structure
   Fonts: Philosopher (display) + Overpass (body)
   Palette: terracotta-brick red accent, warm parchment
   ============================================================= */

/* 01 — GOOGLE FONTS IMPORT
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Overpass:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

/* 02 — DESIGN TOKENS
   ============================================================= */
:root {
  --dark:       #1A0E0A;
  --bg-alt:     #231210;
  --accent:     #B03A1A;
  --accent-mid: #8C2E14;
  --highlight:  #C9834A;
  --cream:      #F4EDE2;
  --cream-dim:  rgba(244, 237, 226, 0.65);
  --accent-dim: rgba(176, 58, 26, 0.13);
  --border:     rgba(176, 58, 26, 0.22);
  --border-mid: rgba(176, 58, 26, 0.38);
  --ff-display: 'Philosopher', Georgia, serif;
  --ff-body:    'Overpass', sans-serif;
  --nav-h:      72px;
  --transition: 0.3s ease;
  --radius:     4px;
  --radius-lg:  10px;
}

/* 03 — 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;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--ff-body);
  border: none;
  background: none;
}

/* 04 — TYPOGRAPHY HELPERS
   ============================================================= */
.display {
  font-family: var(--ff-display);
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  color: rgba(244, 237, 226, 0.8);
  font-size: 1rem;
  max-width: 68ch;
}

/* 05 — LAYOUT UTILITIES
   ============================================================= */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: 96px;
}

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

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.05rem;
  color: rgba(244, 237, 226, 0.72);
  max-width: 58ch;
  margin-bottom: 48px;
}

.text-accent { color: var(--accent); }
.text-highlight { color: var(--highlight); }

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-block: 24px;
}

/* 06 — BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--cream);
  border: 2px solid var(--accent);
}
.btn--primary:hover {
  background: var(--accent-mid);
  border-color: var(--accent-mid);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(244, 237, 226, 0.55);
}
.btn--outline:hover {
  border-color: var(--cream);
  background: rgba(244, 237, 226, 0.08);
  transform: translateY(-2px);
}

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

/* 07 — NAVBAR
   ============================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

.navbar__inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.navbar__name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 237, 226, 0.8);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  border-radius: 2px;
}

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

.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 0;
  z-index: 899;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.navbar__mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar__mobile a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  color: rgba(244, 237, 226, 0.8);
  transition: color var(--transition);
}

.navbar__mobile a:hover,
.navbar__mobile a.active {
  color: var(--accent);
}

.navbar__mobile .btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* 08 — HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 14, 10, 0.82) 0%,
    rgba(26, 14, 10, 0.55) 60%,
    rgba(26, 14, 10, 0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding-block: 140px 80px;
  max-width: 620px;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--highlight);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 12px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--highlight);
  font-family: var(--ff-display);
  font-style: italic;
  margin-bottom: 20px;
}

.hero__tagline {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(244, 237, 226, 0.85);
  max-width: 50ch;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244, 237, 226, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--highlight), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* 09 — PAGE HERO (inner pages)
   ============================================================= */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--page-hero-bg, url('images/gallery-interior-01.jpg'));
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 14, 10, 0.92) 0%,
    rgba(26, 14, 10, 0.5) 50%,
    rgba(26, 14, 10, 0.2) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding-block: 64px;
}

.page-hero__breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 237, 226, 0.5);
  margin-bottom: 12px;
}

.page-hero__breadcrumb a {
  color: var(--highlight);
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover { color: var(--cream); }

.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--cream);
}

.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(244, 237, 226, 0.72);
  font-family: var(--ff-display);
  font-style: italic;
  margin-top: 8px;
}

/* 10 — ABOUT SNIPPET (homepage)
   ============================================================= */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-snippet__img-wrap {
  position: relative;
}

.about-snippet__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-snippet__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-display);
  padding: 12px;
}

.about-snippet__badge-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.about-snippet__badge-text {
  font-size: 0.62rem;
  color: rgba(244, 237, 226, 0.85);
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

/* 11 — OFFERINGS / MENU PREVIEW (homepage)
   ============================================================= */
.offerings {
  text-align: center;
}

.offerings__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.offerings__filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(244, 237, 226, 0.65);
  background: transparent;
  transition: all var(--transition);
}

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

.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.offering-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.offering-card__body {
  padding: 24px;
}

.offering-card__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.offering-card__name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.offering-card__desc {
  font-size: 0.88rem;
  color: rgba(244, 237, 226, 0.65);
  line-height: 1.6;
}

/* 12 — REVIEWS SECTION
   ============================================================= */
.reviews {
  background: var(--bg-alt);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.review-card__quote {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.55;
}

.review-card__text {
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(244, 237, 226, 0.85);
  margin-bottom: 20px;
}

.review-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--highlight);
}

/* 13 — STATS ROW
   ============================================================= */
.stats {
  padding-block: 64px;
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item__num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-item__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 237, 226, 0.55);
  margin-top: 8px;
}

/* 14 — ABOUT PAGE: ORIGIN / PHILOSOPHY / VALUES / TIMELINE
   ============================================================= */
.origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.origin__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition);
}

.philosophy-card:hover {
  border-color: var(--accent);
}

.philosophy-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.philosophy-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.philosophy-card__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.philosophy-card__text {
  font-size: 0.9rem;
  color: rgba(244, 237, 226, 0.65);
  line-height: 1.6;
  max-width: none;
}

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

.value-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

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

.value-item__num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.45;
  line-height: 1;
}

.value-item__title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.value-item__desc {
  font-size: 0.9rem;
  color: rgba(244, 237, 226, 0.65);
  max-width: none;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 3px rgba(176,58,26,0.25);
}

.timeline-item__year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.timeline-item__text {
  font-size: 0.95rem;
  color: rgba(244, 237, 226, 0.75);
  max-width: none;
}

/* 15 — MENU PAGE
   ============================================================= */
.menu-hero-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 64px;
}

.menu-intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 64px;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.menu-category__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.menu-category__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-category__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-category__name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
}

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

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

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

.menu-item:hover {
  background: transparent;
}

.menu-item__name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.menu-item__desc {
  font-size: 0.9rem;
  color: rgba(244, 237, 226, 0.62);
  line-height: 1.65;
  max-width: none;
}

.menu-cta-bar {
  text-align: center;
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 64px;
}

.menu-cta-bar p {
  max-width: none;
  margin: 0 auto 24px;
  color: rgba(244, 237, 226, 0.65);
}

/* 16 — GALLERY PAGE
   ============================================================= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.gallery-filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(244, 237, 226, 0.65);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}

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

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 10, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(26, 14, 10, 0.3);
}

.gallery-item__overlay svg {
  width: 32px;
  height: 32px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay svg {
  opacity: 1;
}

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

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90svh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: none;
  border: none;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(244, 237, 226, 0.08);
  border: 1px solid rgba(244, 237, 226, 0.2);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(244, 237, 226, 0.18);
}

.lightbox__prev svg,
.lightbox__next svg {
  width: 20px;
  height: 20px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 17 — CONTACT PAGE
   ============================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.97rem;
  color: rgba(244, 237, 226, 0.82);
  max-width: none;
}

.contact-info__value a {
  color: var(--cream);
  transition: color var(--transition);
}

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

.contact-social {
  margin-top: 36px;
}

.contact-social__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 14px;
}

.contact-social__links {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  stroke: rgba(244,237,226,0.65);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.social-icon-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.social-icon-link:hover svg {
  stroke: var(--cream);
}

/* Contact Form */
.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 237, 226, 0.6);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(244, 237, 226, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

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

.form-group select option {
  background: var(--dark);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(244, 237, 226, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* 18 — FAQ ACCORDION
   ============================================================= */
.faq-section {
  max-width: 780px;
  margin: 0 auto;
}

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

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

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}

.faq-btn:hover {
  color: var(--highlight);
}

.faq-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-btn.open svg {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.36s ease, padding var(--transition);
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: rgba(244, 237, 226, 0.68);
  line-height: 1.7;
  max-width: none;
}

/* 19 — FOOTER
   ============================================================= */
.footer {
  background: #120A08;
  border-top: 1px solid var(--border);
  padding-block: 64px 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer__brand-tagline {
  font-size: 0.85rem;
  color: rgba(244, 237, 226, 0.5);
  line-height: 1.6;
  max-width: 26ch;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(244, 237, 226, 0.58);
  transition: color var(--transition);
}

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

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(244, 237, 226, 0.58);
}

.footer__info-row svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(244, 237, 226, 0.35);
  max-width: none;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(244, 237, 226, 0.35);
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: rgba(244, 237, 226, 0.7);
}

/* 20 — SCROLL-TO-TOP
   ============================================================= */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--accent-mid);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 21 — 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: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }

/* 22 — RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .navbar__links,
  .navbar__cta .btn {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .about-snippet,
  .origin,
  .values-timeline-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-snippet__img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .offerings__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .philosophy-cards {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding-block: 64px; }

  .offerings__grid {
    grid-template-columns: 1fr;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .philosophy-cards {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .section { padding-block: 48px; }

  .gallery-masonry {
    columns: 1;
  }

  .stats__row {
    grid-template-columns: 1fr 1fr;
  }

  .value-item {
    grid-template-columns: 40px 1fr;
  }

  .page-hero {
    min-height: 320px;
  }

  .navbar__name {
    font-size: 1.1rem;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
}
