/* ═══════════════════════════════════════════════════════════════════════
   GOONJ ARCHITECTS — SHARED STYLESHEET
   Common styles used across all pages.
   Each HTML file links this via: <link rel="stylesheet" href="shared.css">
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,500;1,600&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: hidden; }

:root {
  --cream:        #FAF7F2;
  --cream-mid:    #F3EDE3;
  --cream-dark:   #EAE0D2;
  --amber:        #C9933A;
  --amber-light:  #E2AC62;
  --amber-bg:     #F5E6C8;
  --dark:         #1C1309;
  --text:         #3A2E22;
  --muted:        #8A7D6E;
  --border:       rgba(58, 46, 34, 0.1);
  --border-light: rgba(58, 46, 34, 0.06);
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'DM Sans', -apple-system, sans-serif;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --radius:       14px;
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:    0 12px 40px rgba(0,0,0,0.10);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 36px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  color: var(--amber); letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--amber); border-radius: 2px;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}
.section-heading em { font-style: italic; color: var(--amber); }

/* ── ANIMATIONS ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderFill { to { transform: scaleX(1); } }
@keyframes marqueeAnim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PAGE LOADER ──────────────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.loader-content {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  margin-top: -10vh;
  opacity: 0; animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}
#page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.loader-img { width: 116px; height: 116px; object-fit: contain; }
.loader-logo {
  font-family: var(--serif); font-size: 2rem; font-weight: 600;
  color: var(--dark); letter-spacing: 0.04em;
}
.loader-logo span { color: var(--amber); font-style: italic; }
.loader-bar-wrap {
  width: 100px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden;
  opacity: 0; animation: fadeUp 0.4s var(--ease) 0.3s forwards;
}
.loader-bar {
  height: 100%; background: var(--amber); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: loaderFill 1.0s var(--ease) 0.35s forwards;
}

/* ── NAVIGATION ───────────────────────────────────────────────────────── */
.site-nav {
  position: static;
  height: 62px;
  background: var(--cream-dark);
  border-bottom: none;
  box-shadow: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  isolation: isolate;
  transition: box-shadow 0.3s;
  animation: navFadeIn 0.8s var(--ease) 1.4s both;
}
body:not([data-page="home"]) .site-nav {
  animation: navFadeIn 0.35s var(--ease) 0s both;
}
.site-nav.scrolled { box-shadow: none; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; min-width: 0;
}
.nav-logo img { height: 66px; width: 66px; object-fit: contain; }
.nav-logo-wordmark { display: flex; flex-direction: column; line-height: 1; gap: 4px; min-width: 0; }
.nav-logo-name {
  font-family: var(--serif); font-size: 1.40rem; font-weight: 600;
  color: var(--dark); letter-spacing: 0.04em; white-space: nowrap;
}
.nav-logo-accent {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  color: #A76911; letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-family: 'Alata', sans-serif; font-size: 0.6rem; font-weight: 450;
  letter-spacing: 0.16em; text-transform: uppercase; color: #A76911; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.nav-links { display: flex; list-style: none; gap: 2px; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.90rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--text); text-decoration: none; padding: 8px 16px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links li.active a,
.nav-links a:hover { color: var(--dark); background: rgba(201,147,58,0.14); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-icon-btn {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid rgba(58,46,34,0.18);
  background: rgba(58,46,34,0.05); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.85rem; text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-icon-btn:hover {
  background: rgba(201,147,58,0.2);
  border-color: rgba(201,147,58,0.4);
  color: var(--amber);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

.mobile-menu {
  display: none; position: absolute; top: 62px; left: 0; right: 0;
  background: #CFC4B4;
  border-bottom: 1px solid rgba(201,147,58,0.25);
  z-index: 999; padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(80,50,10,0.15);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block; padding: 12px 16px; border-radius: 8px;
  font-size: 0.95rem; color: var(--text); text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: rgba(201,147,58,0.16); color: var(--dark); }

/* ── REVEAL ANIMATIONS ────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 1.0s var(--ease), transform 1.0s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-48px);
  transition: opacity 1.0s var(--ease), transform 1.0s var(--ease);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(48px);
  transition: opacity 1.0s var(--ease), transform 1.0s var(--ease);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.93) translateY(20px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.reveal-scale.in { opacity: 1; transform: scale(1) translateY(0); }

.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }
.reveal-d5 { transition-delay: 0.50s; }
.reveal-d6 { transition-delay: 0.60s; }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--dark); color: #fff;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; border-radius: 50px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(28, 19, 9, 0.2);
}
.btn-primary:hover {
  background: var(--amber); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,147,58,0.35);
}

.btn-amber {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; background: var(--amber); color: #fff;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border-radius: 50px; flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(201, 147, 58, 0.4);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-amber:hover {
  background: #b07e2e; transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,147,58,0.5);
}

.btn-watch {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 500; color: var(--text); text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.btn-watch:hover { color: var(--amber); gap: 16px; }
.btn-watch-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream-dark);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--dark); transition: background 0.2s, border-color 0.2s;
}
.btn-watch:hover .btn-watch-icon {
  background: var(--amber-bg); border-color: var(--amber); color: var(--amber);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: transparent; color: var(--text);
  font-family: var(--sans); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; border-radius: 50px;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--cream-dark); border-color: rgba(58,46,34,0.2); color: var(--dark);
}

/* ── PAGE HERO (inner pages) ──────────────────────────────────────────── */
.page-hero { background: var(--cream-mid); padding: 72px 0 64px; border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 680px; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600; line-height: 1.05; color: var(--dark); margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--amber); }
.page-hero p { font-size: 1rem; line-height: 1.75; color: var(--muted); max-width: 540px; }

/* ── CTA SECTION ──────────────────────────────────────────────────────── */
.cta-section {
  padding: 80px 0; background: var(--amber-bg);
  border-top: 1px solid rgba(201, 147, 58, 0.2);
  border-bottom: 1px solid rgba(201, 147, 58, 0.2);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.2;
}
.cta-text p { font-size: 0.95rem; color: var(--muted); max-width: 460px; line-height: 1.65; }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
footer { background: var(--cream-dark); padding: 80px 0 0; color: var(--text); }

.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px; margin-bottom: 0;
  border-bottom: none;
}

.footer-brand-name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--dark); display: block; margin-bottom: 12px; letter-spacing: -0.01em;
}
.footer-brand-name span { color: var(--amber); }
.footer-brand-accent { font-style: italic !important; color: var(--amber); }
.footer-tagline { font-size: 0.875rem; line-height: 1.7; color: var(--text); margin-bottom: 24px; }

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--cream); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 0.9rem; text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { background: var(--amber); border-color: var(--amber); color: #fff; }

.footer-col-title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 20px; display: block;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  font-size: 0.875rem; color: var(--text); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.footer-list a::before {
  content: '→'; font-size: 0.75rem; color: var(--amber);
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.footer-list a:hover { color: var(--amber); gap: 10px; }
.footer-list a:hover::before { opacity: 1; transform: translateX(0); }
.footer-list li { font-size: 0.875rem; color: var(--text); }
.footer-list .fa, .footer-list i { width: 16px; margin-right: 10px; color: var(--amber); }

.footer-bottom { background: #0d0b09; padding: 6px 0; margin-top: 0; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-copy-italic {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important; color: rgba(255,255,255,0.65);
}
.footer-bottom-links { display: flex; gap: 20px; list-style: none; }
.footer-bottom-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.2s; border-bottom: 1px solid transparent;
}
.footer-bottom-links a:hover { color: var(--amber-light); border-bottom-color: var(--amber); }

/* ── SCROLL TOP ───────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 94px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; text-decoration: none;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(201, 147, 58, 0.4); z-index: 998;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { box-shadow: 0 10px 28px rgba(201, 147, 58, 0.55); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--dark); color: var(--amber-light);
  border: 1.5px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; text-decoration: none;
  box-shadow: 0 6px 20px rgba(28, 19, 9, 0.35); z-index: 998;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.wa-float:hover {
  background: var(--amber); color: #fff;
  transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201, 147, 58, 0.5);
}
@media (max-width: 600px) {
  .wa-float { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 1.3rem; }
  .scroll-top { bottom: 82px; right: 20px; }
}

/* ── MARQUEE ──────────────────────────────────────────────────────────── */
.marquee-strip {
  padding: 20px 0; overflow: hidden;
  background: var(--cream-dark);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track { display: flex; width: max-content; animation: marqueeAnim 28s linear infinite; }
.marquee-inner {
  font-size: 0.82rem; font-weight: 700; color: var(--muted);
  white-space: nowrap; padding-right: 48px; letter-spacing: 0.01em;
}
.marquee-inner .sep { color: var(--amber); margin: 0 16px; }

/* ── GALLERY PAGES ────────────────────────────────────────────────────── */

/* Project Hero */
.project-hero {
  background: var(--cream-mid);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}
.project-hero-inner {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 32px;
}
.project-breadcrumb {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  color: var(--dark); margin-bottom: 24px; text-decoration: none;
  padding: 10px 20px; border-radius: 50px;
  background: var(--cream-mid); border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, gap 0.2s;
}
.project-breadcrumb:hover {
  color: var(--amber); border-color: var(--amber);
  background: var(--amber-bg); box-shadow: var(--shadow-md); gap: 13px;
}
.project-breadcrumb i { font-size: 0.8rem; }

.project-hero h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600; line-height: 1.1; color: var(--dark); margin-bottom: 18px;
}
.project-hero h1 em { font-style: italic; color: var(--amber); }
.project-location { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.project-location i { color: var(--amber); font-size: 0.82rem; }
.project-description {
  max-width: 680px; margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.28rem; font-style: italic; font-weight: 500;
  line-height: 1.6; color: #5C4F3F; letter-spacing: 0.015em;
}

/* Room / Scope Tags */
.room-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.room-tag {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 50px;
  background: var(--amber-bg); border: 1px solid rgba(201,147,58,0.25);
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  color: var(--amber); white-space: nowrap;
}
.project-hero .room-tags { margin-top: 20px; max-width: 680px; }

.project-meta {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}
.project-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: var(--muted);
}
.project-meta-item i { color: var(--amber); font-size: 0.85rem; }
.project-meta-tag {
  display: inline-flex; align-items: center;
  padding: 5px 14px; border-radius: 50px;
  background: var(--amber-bg); border: 1px solid rgba(201,147,58,0.25);
  font-size: 0.78rem; font-weight: 600; color: var(--amber); letter-spacing: 0.03em;
}
.project-hero-cta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

/* Featured Image */
.featured-image-section { padding: 48px 0 0; }
.featured-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  height: 540px; cursor: pointer; box-shadow: var(--shadow-lg);
}
.featured-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.featured-img-wrap:hover img { transform: scale(1.03); }
.featured-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,19,9,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.featured-img-label {
  position: absolute; bottom: 28px; left: 32px; right: 32px;
  display: flex; align-items: flex-end; justify-content: space-between; z-index: 2;
}
.featured-img-caption {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: #fff; line-height: 1.3;
}
.featured-zoom-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem; cursor: pointer;
  transition: background 0.2s; text-decoration: none;
}
.featured-zoom-btn:hover { background: var(--amber); border-color: var(--amber); }

/* Gallery Grid */
.gallery-section { padding: 56px 0; }
.gallery-header { margin-bottom: 36px; }
.gallery-header .section-heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600; line-height: 1.2; color: var(--dark); margin-bottom: 10px;
}
.gallery-header .section-heading em { font-style: italic; color: var(--amber); }
.gallery-header p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; max-width: 540px; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: var(--cream-dark);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.55s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,19,9,0.55) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 20px; display: flex; align-items: flex-end; justify-content: space-between;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; transform: translateY(0); }
.gallery-item-num {
  font-family: var(--serif); font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.gallery-expand-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.75rem; text-decoration: none; transition: background 0.2s;
}
.gallery-expand-btn:hover { background: var(--amber); border-color: var(--amber); }

.gallery-item:first-child { grid-row: span 2; min-height: 480px; }
.gallery-item { min-height: 220px; }

/* Project Info Strip */
.project-info-strip {
  background: var(--cream-mid); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 48px 0;
}
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.info-item { padding: 0 32px; border-right: 1px solid var(--border); }
.info-item:first-child { padding-left: 0; }
.info-item:last-child { border-right: none; }
.info-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
.info-value {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--dark); line-height: 1.3;
}
.info-sub { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10, 7, 3, 0.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img-wrap {
  position: relative; max-width: 90vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 86vh; object-fit: contain;
  border-radius: 12px;
  transform: scale(0.93); transition: transform 0.4s var(--ease);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.lightbox.open .lightbox-img-wrap img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.lightbox-close:hover { background: var(--amber); border-color: var(--amber); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--amber); border-color: var(--amber); }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
/* Desktop links stop fitting alongside the full logo below ~960px. */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 880px) {
  .site-nav { padding: 0 20px 0 4px; gap: 12px; }

  .nav-logo { gap: 8px; }
  .nav-logo img { height: 54px; width: 54px; }
  .nav-logo-name { font-size: 1.25rem; }
  .nav-logo-sub { font-size: 0.58rem; letter-spacing: 0.08em; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-top > *:first-child { grid-column: 1 / -1; }

  /* Gallery pages */
  .project-hero-inner { grid-template-columns: 1fr; }
  .project-hero-cta { align-items: flex-start; flex-direction: row; }
  .info-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .info-item { border-right: none; padding: 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > *:first-child { grid-column: auto; }

  /* Gallery pages */
  .featured-img-wrap { height: 320px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-row: auto; }
  .info-grid { grid-template-columns: 1fr; }

  /* Marquee */
  .marquee-strip { padding: 12px 0; }
  .marquee-inner { font-size: 0.70rem; }
  .marquee-inner .sep { margin: 0 10px; }
}

@media (max-width: 480px) {
  .site-nav { padding: 0 16px 0 2px; gap: 10px; }
  .nav-logo img { height: 48px; width: 48px; }
  .nav-logo-name { font-size: 1.12rem; letter-spacing: 0.02em; }
  .nav-logo-sub { font-size: 0.52rem; letter-spacing: 0.04em; }
  .nav-actions { gap: 6px; }
  .nav-icon-btn { width: 34px; height: 34px; font-size: 0.8rem; }
}
