/*
 * Sweet Street Manila Event Styling
 * Palette: Deep Midnight Indigo + Champagne Peach + Warm Gold
 *
 * Design rationale:
 * Sweet Street Manila is a celebration-first event styling brand — kiddie parties,
 * fairy gardens, camping themes, weddings, photo booths. The palette needed to
 * evoke the magic of a beautifully styled event at golden hour or evening: deep,
 * dramatic dark (midnight indigo #1A1035) against the warm champagne glow of a
 * styled dessert table (#D4A88A) and the sparkle of fairy lights (#F0C870).
 *
 * This midnight-indigo approach is completely distinct from all prior builds:
 * - Not a warm-brown dark (many cafes)
 * - Not a forest/teal green (many resorts/studios)
 * - Not a plum-noir or rose-noir (many fashion/beauty builds)
 * - Not a charcoal-navy (Strattera, Blue Door)
 * - The cool indigo reads as celebratory "night sky at a styled event" energy
 *
 * Fonts: Belleza (display — elegant Art Deco humanist serif, classic without being
 * stiff; perfect for a celebration brand) + Nunito (body — rounded humanist sans,
 * warm, approachable, reads perfectly at small sizes).
 * Belleza + Nunito is a new pairing in the portfolio.
 *
 * AVOID for future event styling / dessert table / celebration brands:
 * deep-midnight-indigo + champagne-peach + warm-gold
 */

/* ============================================================
   1. GOOGLE FONTS
   ============================================================ */
/* Google Fonts loaded via <link> tags in HTML for better performance */

/* ============================================================
   2. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --dark:     #1A1035;
  --bg-alt:   #231848;
  --accent:   #D4A88A;
  --highlight:#F0C870;
  --cream:    #FDF6F0;
  --muted:    rgba(253,246,240,.55);
  --border:   rgba(212,168,138,.22);
  --surface:  rgba(255,255,255,.04);
  --font-display: 'Belleza', serif;
  --font-body:    'Nunito', sans-serif;
  --nav-h:    72px;
  --trans:    0.3s ease;
}

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

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; color: var(--accent); }
p { font-weight: 400; color: rgba(253,246,240,.85); }
.text-accent  { color: var(--accent); }
.text-gold    { color: var(--highlight); }
.text-cream   { color: var(--cream); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }

/* ============================================================
   5. UTILITY & LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section  { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.section--dark   { background: var(--dark); }
.section--alt    { background: var(--bg-alt); }
.section--cream  { background: var(--cream); color: var(--dark); }
.section--cream p { color: rgba(26,16,53,.8); }
.section--cream h2, .section--cream h3, .section--cream h4, .section--cream h5 { color: var(--dark); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; 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: 24px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }

/* ============================================================
   6. 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;
}

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  transition: var(--trans);
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: #c4987a; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-gold {
  background: var(--highlight);
  color: var(--dark);
}
.btn-gold:hover { background: #e0b860; transform: translateY(-2px); }

/* ============================================================
   8. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(26,16,53,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar__logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  line-height: 1.2;
}
.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-top: 1px;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,246,240,.8);
  transition: color var(--trans);
}
.navbar__nav a:hover, .navbar__nav a.active { color: var(--accent); }
.navbar__cta {
  padding: 10px 24px;
  font-size: 0.78rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(26,16,53,.98);
  backdrop-filter: blur(16px);
  padding: 32px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: color var(--trans);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,53,.88) 0%, rgba(26,16,53,.55) 60%, rgba(26,16,53,.30) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
  margin-left: 8%;
  padding-top: 72px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero__title {
  color: var(--cream);
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(253,246,240,.9);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253,246,240,.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-indicator__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,53,.95) 0%, rgba(26,16,53,.4) 60%, transparent 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero__content h1 { color: var(--cream); margin-bottom: 8px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(253,246,240,.55);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .4; }

/* ============================================================
   10. SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-top: 12px; margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   11. FEATURES STRIP
   ============================================================ */
.features {
  background: var(--bg-alt);
  padding: 80px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: var(--trans);
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.feature-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--accent);
}
.feature-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; color: rgba(253,246,240,.65); }

/* ============================================================
   12. WORK GRID (INDEX)
   ============================================================ */
.work-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.work-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-item:hover img { transform: scale(1.06); }
.work-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,53,.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.work-item:hover .work-item__overlay { opacity: 1; }
.work-item__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.work-item__type  { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); }

/* ============================================================
   13. BRAND TEASER (SPLIT)
   ============================================================ */
.brand-teaser { background: var(--bg-alt); }
.brand-teaser__image {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
}
.brand-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-teaser__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  pointer-events: none;
}
.brand-teaser__text h5 { margin-bottom: 12px; }
.brand-teaser__text h2 { margin-bottom: 24px; }
.brand-teaser__text p { margin-bottom: 16px; }

/* ============================================================
   14. STATS ROW
   ============================================================ */
.stats {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,246,240,.6);
}

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-alt); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  position: relative;
  transition: var(--trans);
}
.testimonial-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.testimonial-card__quote {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: .4;
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.testimonial-card p { font-size: 0.92rem; color: rgba(253,246,240,.8); font-style: italic; margin-bottom: 20px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__author-name { font-weight: 700; font-size: 0.85rem; color: var(--cream); }
.testimonial-card__author-role { font-size: 0.75rem; color: var(--accent); }
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.stars span { color: var(--highlight); font-size: 0.9rem; }

/* ============================================================
   16. SOCIAL CTA SECTION
   ============================================================ */
.social-cta {
  background: var(--bg-alt);
  text-align: center;
  padding: 80px 0;
}
.social-cta h2 { margin-bottom: 16px; }
.social-cta p { max-width: 520px; margin: 0 auto 32px; }
.social-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: var(--trans);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.social-link svg { width: 18px; height: 18px; }

/* ============================================================
   17. SOCIAL FEED GRID
   ============================================================ */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.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:hover img { transform: scale(1.08); }
.feed-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,16,53,.7);
  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: var(--cream); }

/* ============================================================
   18. PORTFOLIO / SERVICES PAGE
   ============================================================ */
.disclaimer-bar {
  background: rgba(212,168,138,.12);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(253,246,240,.7);
}
.disclaimer-bar span { color: var(--accent); font-weight: 600; }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.category-tile {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  display: block;
}
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-tile:hover img { transform: scale(1.06); }
.category-tile__content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,53,.92) 0%, rgba(26,16,53,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.category-tile h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 4px; }
.category-tile p { color: rgba(253,246,240,.7); font-size: 0.82rem; }
.category-section { margin-bottom: 72px; }
.category-section__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.category-section__header h2 { margin: 0; }
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212,168,138,.15);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.service-list { display: flex; flex-direction: column; gap: 16px; }
.service-item {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  transition: var(--trans);
}
.service-item:hover { border-color: var(--accent); background: rgba(212,168,138,.06); }
.service-item h4 { color: var(--cream); margin-bottom: 8px; }
.service-item p { font-size: 0.88rem; color: rgba(253,246,240,.7); }

/* ============================================================
   19. GALLERY PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: rgba(253,246,240,.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}
.gallery-section { margin-bottom: 64px; }
.gallery-section__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gallery-section__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.masonry {
  columns: 4;
  column-gap: 6px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 2px;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,16,53,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.masonry-item:hover .masonry-item__overlay { opacity: 1; }
.masonry-item__overlay svg { width: 32px; height: 32px; color: var(--cream); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15,8,28,.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--trans);
  z-index: 2001;
}
.lightbox__close:hover { color: var(--accent); }
.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,16,53,.7);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  z-index: 2001;
}
.lightbox__nav:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(253,246,240,.6);
  z-index: 2001;
}

/* ============================================================
   20. CONTACT PAGE
   ============================================================ */
.contact-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  transition: var(--trans);
}
.contact-block:hover { border-color: var(--accent); }
.contact-block a:hover { color: var(--accent); }
.contact-block__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212,168,138,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-block__icon svg { width: 20px; height: 20px; }
.contact-block__title { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.contact-block__value { font-size: 0.95rem; color: var(--cream); }
.contact-block__sub { font-size: 0.78rem; color: rgba(253,246,240,.55); margin-top: 2px; }

/* Inquiry Form */
.inquiry-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,246,240,.7);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--cream);
  font-size: 0.9rem;
  transition: border-color var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e85454; }
.form-group select option { background: var(--dark); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row--full { grid-template-columns: 1fr; }
#formSuccess {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: rgba(212,168,138,.1);
  border: 1px solid var(--accent);
  border-radius: 4px;
}
#formSuccess h3 { color: var(--highlight); margin-bottom: 12px; }

/* Map placeholder */
.map-placeholder {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); opacity: .5; }
.map-placeholder p { color: rgba(253,246,240,.5); font-size: 0.85rem; }

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--trans);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: rgba(253,246,240,.75);
}

/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
  background: #110B26;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(253,246,240,.6);
  margin-bottom: 20px;
  max-width: 240px;
}
.footer__socials { display: flex; gap: 12px; }
.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,246,240,.6);
  transition: var(--trans);
}
.footer__social-btn svg { width: 16px; height: 16px; }
.footer__social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: 0.85rem;
  color: rgba(253,246,240,.6);
  transition: color var(--trans);
}
.footer__col ul li a:hover { color: var(--cream); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item span { font-size: 0.83rem; color: rgba(253,246,240,.6); line-height: 1.5; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.75rem; color: rgba(253,246,240,.35); }
.footer__bottom a:hover { color: var(--accent); }

/* ============================================================
   22. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ============================================================
   ABOUT PAGE SPECIFICS
   ============================================================ */
.philosophy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.philosophy-card {
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  background: var(--surface);
  transition: var(--trans);
}
.philosophy-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.philosophy-card__icon { width: 56px; height: 56px; margin: 0 auto 20px; color: var(--accent); }
.philosophy-card h3 { font-size: 1.3rem; color: var(--cream); margin-bottom: 12px; }
.philosophy-card p { font-size: 0.87rem; color: rgba(253,246,240,.7); }

.values-list { display: flex; flex-direction: column; gap: 24px; max-width: 720px; }
.value-item { display: flex; align-items: flex-start; gap: 24px; }
.value-item__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--highlight);
  opacity: .35;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.value-item h4 { color: var(--cream); margin-bottom: 6px; }
.value-item p { font-size: 0.88rem; color: rgba(253,246,240,.7); }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--dark);
}
.timeline-item__year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 4px;
}
.timeline-item h4 { color: var(--cream); margin-bottom: 6px; }
.timeline-item p { font-size: 0.86rem; color: rgba(253,246,240,.65); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-2 { gap: 32px; }
  .hero__content { margin-left: 4%; }
}
@media (max-width: 768px) {
  .navbar__nav, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .hero__content { margin-left: 0; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid__items { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .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); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .contact-blocks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 28px 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .masonry { columns: 2; }
  .philosophy-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2.2rem; }
  .features__grid { grid-template-columns: 1fr; }
  .work-grid__items { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .masonry { columns: 2; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
