/* ═══════════════════════════════════════════════════════════
   MOTION 8 — MAIN STYLESHEET v2.0
   White/light design · Dark mode toggle · Trilingual (EN/中/ع)
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* WHITE THEME (default) */
  --white:       #ffffff;
  --paper:       #F8F6F2;
  --paper2:      #F2EFE9;
  --rule:        #E4E0D8;
  --rule2:       #D0CBC0;
  --ink:         #0D0D0D;
  --ink60:       rgba(13,13,13,0.6);
  --ink40:       rgba(13,13,13,0.4);
  --ink20:       rgba(13,13,13,0.12);
  --ink10:       rgba(13,13,13,0.06);
  --gold:        #8F6726;
  --gold-light:  #A67C3A;
  --gold-dim:    rgba(143,103,38,0.22);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

  /* Semantic tokens — these flip in dark mode */
  --bg:          #ffffff;
  --bg-soft:     #F8F6F2;
  --bg-soft2:    #F2EFE9;
  --border:      #E4E0D8;
  --border2:     #D0CBC0;
  --text:        #0D0D0D;
  --text60:      rgba(13,13,13,0.6);
  --text40:      rgba(13,13,13,0.4);
  --nav-bg:      rgba(255,255,255,0.96);
  --hero-grad-top:   rgba(248,246,242,0.97);
  --hero-grad-mid:   rgba(248,246,242,0.55);
  --hero-grad-low:   rgba(248,246,242,0.1);
  --hero-grad-side:  rgba(248,246,242,0.5);
  --card-grad:   rgba(255,255,255,0.97);
  --card-grad2:  rgba(255,255,255,0.5);
  --logo-filter: brightness(0);
  --img-filter:  brightness(0.92) saturate(0.85);
  --img-filter-hover: brightness(0.65) saturate(0.6);
  --btn-bg:      #0D0D0D;
  --btn-text:    #ffffff;
}

[data-theme="dark"] {
  --bg:          #080808;
  --bg-soft:     #0f0f0f;
  --bg-soft2:    #161616;
  --border:      #2e2e2e;
  --border2:     #3a3a3a;
  --text:        #f4f1ec;
  --text60:      rgba(244,241,236,0.6);
  --text40:      rgba(244,241,236,0.4);
  --gold:        #C4963C;
  --gold-light:  #ddb96a;
  --gold-dim:    rgba(196,150,60,0.25);
  --nav-bg:      rgba(8,8,8,0.94);
  --hero-grad-top:   rgba(8,8,8,0.95);
  --hero-grad-mid:   rgba(8,8,8,0.5);
  --hero-grad-low:   rgba(8,8,8,0.08);
  --hero-grad-side:  rgba(8,8,8,0.5);
  --card-grad:   rgba(8,8,8,0.95);
  --card-grad2:  rgba(8,8,8,0.4);
  --logo-filter: brightness(0) invert(1);
  --img-filter:  brightness(0.7) saturate(0.75);
  --img-filter-hover: brightness(0.45) saturate(0.5);
  --btn-bg:      #C4963C;
  --btn-text:    #080808;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}

/* ── CURSOR ───────────────────────────────── */
.cur-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}
.cur-ring {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gold);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  opacity: 0.4;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}
.cur-ring.expanded { width: 60px; height: 60px; opacity: 0.15; }

/* ── NAV ──────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 0 60px; height: 76px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.5s var(--ease), height 0.3s var(--ease), border-color 0.5s, box-shadow 0.5s;
  border-bottom: 1px solid var(--border);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
}
nav.scrolled {
  box-shadow: 0 1px 0 var(--border);
  height: 64px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img {
  height: 30px; width: auto; display: block;
  filter: var(--logo-filter);
  transition: height 0.3s var(--ease), opacity 0.3s, filter 0.5s;
}
nav.scrolled .nav-logo img { height: 26px; }
.nav-logo img:hover { opacity: 0.6; }

.nav-centre {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.nav-menu {
  display: flex; gap: 40px; list-style: none;
}
.nav-centre a {
  text-decoration: none; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  transition: color 0.25s; position: relative; padding-bottom: 3px;
  color: var(--text60);
}
nav.scrolled .nav-centre a { color: var(--text60); }
.nav-centre a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav-centre a:hover { color: var(--text) !important; }
.nav-centre a:hover::after { right: 0; }

.nav-enquire {
  padding: 10px 28px;
  border: 1px solid var(--gold-dim);
  color: var(--gold) !important;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}
.nav-enquire:hover {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}
.nav-enquire::after { display: none !important; }

/* ── NAV RIGHT ────────────────────────────── */
.nav-right {
  display: flex; flex-direction: row; align-items: center; gap: 20px;
}
.theme-toggle {
  display: flex; gap: 10px; align-items: center;
}
.theme-dot {
  width: 13px; height: 13px; border-radius: 50%;
  cursor: pointer; padding: 0; border: 1px solid var(--border2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.theme-dot:hover { transform: scale(1.15); }
.theme-dot.light-dot { background: #ffffff; }
.theme-dot.dark-dot  { background: #0D0D0D; }
.theme-dot.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-dim);
}
.theme-dot.active::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}

/* ── LANGUAGE SELECTOR ────────────────────── */
.lang-toggle { display: flex; gap: 7px; align-items: center; flex-shrink: 0; }
.lang-dot {
  width: 30px; height: 30px; min-width: 30px; border-radius: 50%;
  cursor: pointer; padding: 0;
  border: 1px solid var(--border2);
  background: transparent; color: var(--text60);
  font-size: 11px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease), border-color 0.25s, color 0.25s, background 0.25s;
  line-height: 1;
}
#langEn { font-family: 'Montserrat', sans-serif; }
#langZh { font-family: 'Noto Serif SC', serif; font-size: 14px; }
#langAr { font-family: 'Amiri', serif; font-size: 16px; }
.lang-dot:hover { transform: scale(1.12); color: var(--text); border-color: var(--gold); }
.lang-dot.active {
  background: var(--gold); color: #fff; border-color: var(--gold);
}

/* ── RTL (ARABIC) SUPPORT ─────────────────── */
[dir="rtl"] { direction: rtl; }
/* Keep the nav bar itself LTR so logo stays left and controls stay right — buttons never move */
[dir="rtl"] nav { direction: ltr; }
[dir="rtl"] .nav-menu { direction: rtl; }
[dir="rtl"] .hero-eyebrow,
[dir="rtl"] .sec-tag,
[dir="rtl"] .phil-services-label { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .philosophy-quote { border-left: none; border-right: 2px solid var(--gold); padding-left: 0; padding-right: 28px; }
[dir="rtl"] .service-item:hover { padding-left: 0; padding-right: 8px; }
[dir="rtl"] .spec:nth-child(even) { border-right: 1px solid var(--border); border-left: none; padding-left: 0; padding-right: 20px; }
[dir="rtl"] .spec:nth-child(odd) { padding-right: 0; padding-left: 20px; }
[dir="rtl"] .contact-row-label { width: 64px; }
[dir="rtl"] .hero-side { right: auto; left: 60px; }
[dir="rtl"] .project-num { left: auto; right: 28px; }
[dir="rtl"] .pillar-num { right: auto; left: 40px; }
[dir="rtl"] .footer-right { flex-direction: row-reverse; }
/* Arabic — elegant Amiri Naskh calligraphic style for headings */
[lang="ar"] .hero-title,
[lang="ar"] .philosophy-quote,
[lang="ar"] .section-title,
[lang="ar"] .featured-title,
[lang="ar"] .contact-title,
[lang="ar"] .pillar-title,
[lang="ar"] .project-name { font-family: 'Amiri', serif; font-weight: 400; }
[lang="ar"] .hero-title { font-weight: 400; line-height: 1.25; letter-spacing: 0; }
[lang="ar"] .hero-title em { font-style: italic; }
[lang="ar"] .philosophy-quote { font-style: italic; line-height: 1.7; }
[lang="ar"] .contact-title { line-height: 1.5; }
/* Arabic body text — clean readable Noto Sans Arabic */
[lang="ar"] .hero-sub,
[lang="ar"] .philosophy-body,
[lang="ar"] .featured-desc,
[lang="ar"] .pillar-body,
[lang="ar"] .service-item,
[lang="ar"] .hero-eyebrow,
[lang="ar"] .sec-tag,
[lang="ar"] .phil-services-label,
[lang="ar"] .spec-value,
[lang="ar"] .spec-label,
[lang="ar"] .project-type,
[lang="ar"] .nav-centre,
[lang="ar"] .contact-row,
[lang="ar"] .work-link,
[lang="ar"] .nav-enquire { font-family: 'Noto Sans Arabic', sans-serif; }
[lang="ar"] .hero-sub,
[lang="ar"] .philosophy-body,
[lang="ar"] .featured-desc,
[lang="ar"] .pillar-body { line-height: 2; font-size: 13.5px; }

/* Chinese — soft elegant Noto Serif SC for headings */
[lang="zh"] .hero-title,
[lang="zh"] .philosophy-quote,
[lang="zh"] .section-title,
[lang="zh"] .featured-title,
[lang="zh"] .contact-title,
[lang="zh"] .pillar-title,
[lang="zh"] .project-name { font-family: 'Noto Serif SC', 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: 0.04em; }
[lang="zh"] .hero-title { font-weight: 400; line-height: 1.2; }
[lang="zh"] .philosophy-quote { line-height: 1.7; }
/* Chinese body — Noto Serif SC light for softness */
[lang="zh"] .hero-sub,
[lang="zh"] .philosophy-body,
[lang="zh"] .featured-desc,
[lang="zh"] .pillar-body,
[lang="zh"] .service-item { font-family: 'Noto Serif SC', serif; font-weight: 300; line-height: 2.05; letter-spacing: 0.02em; }

/* ── HERO — keeps dark cinematic feel, white takes over below ── */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.squarespace-cdn.com/content/v1/69380607d713146bf442dc68/050e9977-0ecb-4457-9163-81622aaa4460/12+shannon+NIGHT.png');
  background-size: cover; background-position: center 30%;
  transform: scale(1.08);
  transition: transform 10s var(--ease);
  filter: brightness(1.05) saturate(0.9);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  transition: background 0.5s var(--ease);
  background:
    linear-gradient(to top, var(--hero-grad-top) 0%, var(--hero-grad-mid) 38%, var(--hero-grad-low) 70%),
    linear-gradient(to right, var(--hero-grad-side) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2; padding: 0 60px 100px; max-width: 820px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px; font-weight: 500;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease) 0.2s, transform 0.8s var(--ease) 0.2s;
}
.hero-eyebrow.in { opacity: 1; transform: translateY(0); }
.hero-eyebrow::before { content:''; width:28px; height:1px; background:var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 300; line-height: 0.92; letter-spacing: -0.025em;
  margin-bottom: 40px; overflow: hidden; color: var(--text);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner {
  display: block; opacity: 0; transform: translateY(105%);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero-title .line:nth-child(1) .line-inner { transition-delay: 0.35s; }
.hero-title .line:nth-child(2) .line-inner { transition-delay: 0.5s; }
.hero-title .line:nth-child(3) .line-inner { transition-delay: 0.65s; }
.hero-title.in .line-inner { opacity: 1; transform: translateY(0); }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 12px; letter-spacing: 0.12em; line-height: 1.9;
  color: var(--text60); max-width: 380px; margin-bottom: 52px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.85s, transform 0.8s var(--ease) 0.85s;
}
.hero-sub.in { opacity: 1; transform: translateY(0); }
.hero-actions {
  display: flex; align-items: center; gap: 40px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 1.05s, transform 0.8s var(--ease) 1.05s;
}
.hero-actions.in { opacity: 1; transform: translateY(0); }
.hero-cta {
  display: inline-flex; align-items: center;
  color: var(--btn-text); text-decoration: none;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
  padding: 16px 36px; background: var(--btn-bg);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.hero-cta:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.hero-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text60); text-decoration: none;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; transition: color 0.3s;
}
.hero-cta-ghost:hover { color: var(--text); }
.hero-cta-ghost::after { content: '↓'; font-size: 12px; }
.hero-side {
  position: absolute; right: 60px; bottom: 100px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; transition: opacity 0.8s var(--ease) 1.3s;
}
.hero-side.in { opacity: 1; }
.hero-side-label {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text40); writing-mode: vertical-rl;
}
.hero-side-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: linePulse 2.4s ease-in-out infinite;
}
@keyframes linePulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

/* ── WHITE WAVE TRANSITION ─────────────────── */
.hero-wave {
  position: relative; background: var(--bg); z-index: 2;
  height: 80px; margin-top: -80px;
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── COMMON ───────────────────────────────── */
.sec-tag {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 28px; font-weight: 500;
}
.sec-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

/* ── PHILOSOPHY ───────────────────────────── */
.philosophy {
  padding: 140px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
  max-width: 1440px; margin: 0 auto;
  background: var(--bg);
}
.phil-big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px; font-weight: 300; line-height: 1;
  color: var(--border); letter-spacing: -0.04em;
  margin-bottom: -60px; display: block; user-select: none;
}
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 300; font-style: italic; line-height: 1.45; color: var(--text);
  border-left: 2px solid var(--gold); padding-left: 28px; margin-bottom: 40px;
}
.philosophy-body { font-size: 13px; line-height: 2.1; color: var(--text60); margin-bottom: 24px; }
.philosophy-right { padding-top: 20px; }
.phil-services-label {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px; font-weight: 500;
  display: flex; align-items: center; gap: 14px;
}
.phil-services-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.service-item {
  border-bottom: 1px solid var(--border); padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: 0.08em; color: var(--text60);
  transition: color 0.25s, padding-left 0.25s var(--ease); cursor: default;
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-item:hover { color: var(--text); padding-left: 8px; }
.service-item .arrow { color: var(--gold); font-size: 13px; opacity: 0; transition: opacity 0.25s; }
.service-item:hover .arrow { opacity: 1; }

/* ── PROJECTS ─────────────────────────────── */
.projects-section { padding: 0 60px 140px; background: var(--bg); }
.section-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 56px; padding-bottom: 20px; border-bottom: 1px solid var(--border2);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; letter-spacing: 0.04em; color: var(--text);
}
.section-link {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; font-weight: 500;
  display: flex; align-items: center; gap: 8px; transition: gap 0.25s var(--ease);
}
.section-link:hover { gap: 14px; }

.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; }
.project-card { position: relative; overflow: hidden; cursor: pointer; background: var(--bg-soft2); }
.project-card:nth-child(1) { grid-column: 1 / 8; }
.project-card:nth-child(2) { grid-column: 8 / 13; }
.project-card:nth-child(3) { grid-column: 1 / 5; }
.project-card:nth-child(4) { grid-column: 5 / 9; }
.project-card:nth-child(5) { grid-column: 9 / 13; }
.project-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s var(--ease), filter 0.6s;
  filter: var(--img-filter);
}
.project-card:nth-child(1) img,
.project-card:nth-child(2) img { height: 540px; }
.project-card:nth-child(3) img,
.project-card:nth-child(4) img,
.project-card:nth-child(5) img { height: 360px; }
.project-card:hover img { transform: scale(1.06); filter: var(--img-filter-hover); }
.project-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s var(--ease); z-index: 3;
}
.project-card:hover::before { width: 100%; }
.project-num {
  position: absolute; top: 24px; left: 28px;
  font-size: 10px; letter-spacing: 0.3em; color: var(--gold);
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.4s, transform 0.4s var(--ease); z-index: 2;
}
.project-card:hover .project-num { opacity: 1; transform: translateY(0); }
.project-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 28px 28px;
  background: linear-gradient(to top, var(--card-grad) 0%, var(--card-grad2) 60%, transparent 100%);
  transform: translateY(12px); transition: transform 0.5s var(--ease);
}
.project-card:hover .project-info { transform: translateY(0); }
.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; letter-spacing: 0.03em; color: var(--text);
}
.project-type { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-top: 7px; font-weight: 500; }

/* ── FEATURED ─────────────────────────────── */
.featured {
  background: var(--bg-soft); padding: 140px 0 140px 60px; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.featured-inner { display: grid; grid-template-columns: 460px 1fr; gap: 80px; align-items: center; }
.featured-content { padding-right: 60px; }
.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 64px); font-weight: 300; line-height: 1.1; margin-bottom: 28px; color: var(--text);
}
.featured-desc { font-size: 13px; line-height: 2.1; color: var(--text60); margin-bottom: 44px; }
.featured-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--border); margin-bottom: 48px;
}
.spec { padding: 18px 0; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.spec:nth-child(even) { border-right: none; padding-left: 20px; }
.spec:nth-child(odd)  { padding-right: 20px; }
.spec-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.spec-value { font-size: 12px; color: var(--text60); }
.featured-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 4px; }
.fi { overflow: hidden; background: var(--border); }
.fi:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.fi:nth-child(2) { grid-column: 2; grid-row: 1; }
.fi:nth-child(3) { grid-column: 2; grid-row: 2; }
.fi img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease), filter 0.5s; filter: var(--img-filter);
}
.fi:nth-child(1) img { height: 600px; }
.fi:nth-child(2) img, .fi:nth-child(3) img { height: 298px; }
.fi:hover img { transform: scale(1.04); filter: var(--img-filter-hover); }

/* ── APPROACH PILLARS ─────────────────────── */
.approach { display: grid; grid-template-columns: repeat(3,1fr); background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pillar {
  padding: 80px 60px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background 0.4s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--bg-soft2); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px; font-weight: 300; line-height: 1;
  color: var(--border2); letter-spacing: -0.03em;
  position: absolute; top: 20px; right: 40px; user-select: none; transition: color 0.4s;
}
.pillar:hover .pillar-num { color: var(--gold-dim); }
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; margin-bottom: 20px; margin-top: 40px;
  color: var(--text); transition: color 0.3s;
}
.pillar:hover .pillar-title { color: var(--gold); }
.pillar-body { font-size: 12px; line-height: 2; color: var(--text60); }

/* ── CONTACT — SPLIT ──────────────────────── */
.contact { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.contact-left {
  padding: 120px 80px; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  border-top: 1px solid var(--border);
}
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 60px); font-weight: 300; font-style: italic;
  line-height: 1.1; margin-bottom: 48px; color: var(--text);
}
.contact-details { margin-bottom: 52px; }
.contact-row {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text60);
}
.contact-row:first-child { border-top: 1px solid var(--border); }
.contact-row a { color: inherit; text-decoration: none; transition: color 0.25s; }
.contact-row a:hover { color: var(--gold); }
.contact-row-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); width: 64px; flex-shrink: 0; font-weight: 500;
}
.btn-primary {
  display: inline-block; padding: 16px 52px;
  background: var(--btn-bg); color: var(--btn-text);
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, transform 0.2s var(--ease);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-3px); }
.contact-right { position: relative; overflow: hidden; }
.contact-right img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.75) saturate(0.7);
  transition: transform 8s var(--ease);
}
.contact-right:hover img { transform: scale(1.04); }
.contact-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--card-grad2) 0%, transparent 50%);
}

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--bg-soft2); border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 40px;
}
.footer-logo img {
  height: 22px; width: auto; filter: var(--logo-filter); opacity: 0.4; display: block;
}
.footer-centre { text-align: center; font-size: 10px; letter-spacing: 0.12em; color: var(--text40); }
.footer-right { display: flex; gap: 32px; align-items: center; }
.footer-right a {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text40); text-decoration: none; transition: color 0.25s;
}
.footer-right a:hover { color: var(--gold); }

/* ── REVEALS ──────────────────────────────── */
.reveal { opacity:0; transform:translateY(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ── MOBILE ───────────────────────────────── */
@media (max-width: 960px) {
  .cur-dot, .cur-ring { display: none; }
  nav { padding: 0 16px; }
  .nav-centre { position: static; transform: none; flex-direction: row; }
  .nav-menu { display: none; }
  .nav-enquire { display: none; }
  .lang-dot { width: 28px; height: 28px; min-width: 28px; }
  .hero-content { padding: 0 24px 80px; }
  .hero-side { right: 24px; }
  .philosophy { grid-template-columns: 1fr; gap: 60px; padding: 100px 24px; }
  .phil-big-num { font-size: 120px; margin-bottom: -40px; }
  .projects-section { padding: 0 24px 100px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:nth-child(1),
  .project-card:nth-child(2) { grid-column: span 2; }
  .project-card:nth-child(1) img,
  .project-card:nth-child(2) img { height: 360px; }
  .project-card:nth-child(3) img,
  .project-card:nth-child(4) img,
  .project-card:nth-child(5) img { height: 260px; }
  .featured { padding: 80px 24px; }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-content { padding-right: 0; }
  .fi:nth-child(2), .fi:nth-child(3) { display: none; }
  .fi:nth-child(1) img { height: 380px; }
  .approach { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); padding: 60px 24px; }
  .pillar:last-child { border-bottom: none; }
  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 80px 24px; }
  .contact-right { height: 400px; }
  footer { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; gap: 20px; }
  .footer-logo { display: flex; justify-content: center; }
  .footer-right { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   WORDPRESS — MOBILE MENU + HAMBURGER
═══════════════════════════════════════════════════════════ */
}
.nav-enquire:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px; background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 499;
  background: rgba(8,8,8,0.97); backdrop-filter: blur(20px);
  padding: 0; max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu.open { max-height: 400px; padding: 24px 0; }
.nav-mobile-menu ul { list-style: none; }
.nav-mobile-menu li a {
  display: block; padding: 16px 32px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text60); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-menu li:last-child a { border-bottom: none; }
.nav-mobile-menu li a:hover { color: var(--gold); padding-left: 40px; }

/* ── HERO ─────────────────────────────────────── */
.hero {


/* ═══════════════════════════════════════════════════════════
   WORDPRESS — ARCHIVE & SINGLE PROJECT PAGES + CONTACT FORM
═══════════════════════════════════════════════════════════ */
}
.no-projects {
  grid-column: 1 / -1; padding: 80px; text-align: center;
  color: var(--text60); font-size: 14px;
}
.no-projects a { color: var(--gold); }

/* ── FEATURED ─────────────────────────────────── */
.featured {
  background: var(--near-black);
  padding: 160px 0 160px 60px; overflow: hidden;
}
.featured-inner {
  display: grid; grid-template-columns: 460px 1fr;
  gap: 80px; align-items: center;
}
.featured-content { padding-right: 60px; }
.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.1; margin-bottom: 28px;
}
.featured-desc { font-size: 13px; line-height: 2.1; color: var(--text60); margin-bottom: 44px; }
.featured-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-top: 1px solid var(--border); margin-bottom: 48px;
}
.spec { padding: 18px 0; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.spec:nth-child(even) { border-right: none; padding-left: 20px; }
.spec:nth-child(odd)  { padding-right: 20px; }
.spec-label {
  font-size: 8px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.spec-value { font-size: 12px; color: var(--text60); }
.featured-images {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 4px;
}
.fi { overflow: hidden; background: var(--bg-soft); }
.fi:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.fi:nth-child(2) { grid-column: 2; grid-row: 1; }
.fi:nth-child(3) { grid-column: 2; grid-row: 2; }
.fi img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease); filter: brightness(0.85);
}
.fi:nth-child(1) img { height: 600px; }
.fi:nth-child(2) img, .fi:nth-child(3) img { height: 298px; }
.fi:hover img { transform: scale(1.04); }

/* ── APPROACH ─────────────────────────────────── */
.approach {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
}
.pillar {
  padding: 80px 60px; border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background 0.4s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--bg-soft); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px; font-weight: 300; line-height: 1;
  color: var(--border2); letter-spacing: -0.03em;
  position: absolute; top: 20px; right: 40px; user-select: none;
  transition: color 0.4s;
}
.pillar:hover .pillar-num { color: var(--gold-dim); }
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; margin-bottom: 20px; margin-top: 40px;
  transition: color 0.3s;
}
.pillar:hover .pillar-title { color: var(--gold-light); }
.pillar-body { font-size: 12px; line-height: 2; color: var(--text60); }

/* ── CONTACT ──────────────────────────────────── */
.contact { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.contact-left {
  padding: 120px 80px;
  background: var(--bg-soft);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 300; font-style: italic; line-height: 1.1; margin-bottom: 40px;
}

/* Contact Form */
.contact-form { margin-bottom: 48px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.cf-full { grid-column: 1 / -1; }
.cf-field label {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: var(--bg-soft2); border: 1px solid var(--border2);
  color: var(--text); font-family: 'Montserrat', sans-serif; font-weight: 300;
  font-size: 13px; padding: 12px 14px;
  transition: border-color 0.25s; outline: none; width: 100%;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--gold); }
.cf-field select option { background: var(--bg-soft2); }
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cf-status {
  font-size: 12px; color: var(--gold); letter-spacing: 0.05em;
}
.cf-status.error { color: #e05555; }

.contact-details { margin-top: 40px; }
.contact-row {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text60);
}
.contact-row:first-child { border-top: 1px solid var(--border); }
.contact-row a { text-decoration: none; transition: color 0.25s; }
.contact-row a:hover { color: var(--gold); }
.contact-row-label {
  font-size: 8px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); width: 60px; flex-shrink: 0;
}
.btn-primary {
  display: inline-block; padding: 16px 52px;
  background: var(--gold); color: var(--bg);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, transform 0.2s var(--ease); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); }

.contact-right { position: relative; overflow: hidden; }
.contact-right img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.55) saturate(0.7);
  transition: transform 8s var(--ease);
}
.contact-right:hover img { transform: scale(1.04); }
.contact-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(22,22,22,0.5) 0%, transparent 60%);
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--near-black); border-top: 1px solid var(--border);
  padding: 48px 60px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 40px;
}
.footer-logo img {
  height: 24px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.3; display: block;
}
.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--text40);
}
.footer-centre { text-align: center; font-size: 10px; letter-spacing: 0.12em; color: var(--text40); }
.footer-right { display: flex; gap: 32px; align-items: center; }
.footer-right a {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text40); text-decoration: none; transition: color 0.25s;
}
.footer-right a:hover { color: var(--gold); }

/* ── ARCHIVE PAGE ─────────────────────────────── */
.archive-page { padding-top: 76px; }
.archive-hero {
  padding: 100px 60px 60px;
  border-bottom: 1px solid var(--border);
}
.archive-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300; line-height: 0.92; letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.archive-sub {
  font-size: 13px; line-height: 1.9; color: var(--text60); max-width: 600px;
}

.filter-bar {
  padding: 32px 60px; display: flex; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 9px 22px; background: none;
  border: 1px solid var(--border2);
  color: var(--text60); font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
}

.archive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  padding: 1px;
}
.archive-card { background: var(--bg); }
.archive-card.hidden { display: none; }
.archive-card-link { display: block; text-decoration: none; color: inherit; }
.archive-card-img { position: relative; overflow: hidden; height: 340px; background: var(--bg-soft); }
.archive-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: var(--img-filter);
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.archive-card-placeholder { width: 100%; height: 100%; background: var(--bg-soft2); }
.archive-card-hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--card-grad2);
  opacity: 0; transition: opacity 0.3s;
}
.archive-card-hover span {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.archive-card-link:hover .archive-card-img img { transform: scale(1.06); filter: var(--img-filter-hover); }
.archive-card-link:hover .archive-card-hover { opacity: 1; }
.archive-card-link::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease); z-index: 3;
}
.archive-card { position: relative; }
.archive-card:hover::before { transform: scaleX(1); }

.archive-card-meta {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
}
.archive-card-info { display: flex; gap: 16px; align-items: flex-start; }
.archive-card-num {
  font-size: 10px; letter-spacing: 0.2em; color: var(--gold);
  margin-top: 4px; flex-shrink: 0;
}
.archive-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; margin-bottom: 5px;
}
.archive-card-type {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.archive-card-year { font-size: 11px; color: var(--text40); flex-shrink: 0; }

/* ── SINGLE PROJECT ──────────────────────────── */
.project-hero {
  height: 92vh; min-height: 600px;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
  margin-top: 0; padding-top: 0;
}
.project-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.project-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--hero-grad-top) 0%, var(--hero-grad-mid) 50%, var(--hero-grad-low) 100%);
}
.project-hero-content {
  position: relative; z-index: 2; padding: 0 60px 80px; width: 100%;
}
.project-back {
  display: inline-block; margin-bottom: 32px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text60); text-decoration: none;
  transition: color 0.25s;
}
.project-back:hover { color: var(--gold); }
.project-hero-type {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.project-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300; line-height: 0.92; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.project-hero-loc { font-size: 13px; color: var(--text60); letter-spacing: 0.1em; }

.project-body { max-width: 1400px; margin: 0 auto; padding: 80px 60px; }

.project-specs-bar {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border); margin-bottom: 80px;
}
.project-spec-item {
  padding: 24px 32px; border-right: 1px solid var(--border);
  flex: 1; min-width: 140px;
}
.project-spec-item:last-child { border-right: none; }
.project-spec-label {
  font-size: 8px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: block;
}
.project-spec-value { font-size: 13px; color: var(--text60); }

.project-description {
  display: grid; grid-template-columns: 1fr 280px; gap: 80px;
  margin-bottom: 80px; align-items: start;
}
.project-desc-text {
  font-size: 15px; line-height: 1.95; color: var(--text60);
}
.project-desc-text p { margin-bottom: 20px; }
.project-desc-text h2,
.project-desc-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--text);
  margin: 32px 0 16px;
}
.project-desc-feature {
  border-top: 1px solid var(--border); padding-top: 24px;
}
.project-feature-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; font-style: italic;
  color: var(--text); margin-top: 12px; line-height: 1.4;
}

.project-gallery {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 4px;
  margin-bottom: 80px;
}
.gallery-item { overflow: hidden; background: var(--bg-soft); }
.gallery-item:first-child { grid-column: 1 / -1; }
.gallery-item img {
  width: 100%; object-fit: cover; display: block;
  filter: brightness(0.85);
  transition: transform 0.8s var(--ease), filter 0.4s;
}
.gallery-item:first-child img { height: 640px; }
.gallery-item img { height: 420px; }
.gallery-item:hover img { transform: scale(1.03); filter: brightness(1); }

.project-nav {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 32px; padding: 60px;
  border-top: 1px solid var(--border);
  align-items: center;
}
.project-nav-item { text-decoration: none; }
.project-nav-next { text-align: right; }
.pn-dir {
  display: block; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.pn-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; color: var(--text60);
  transition: color 0.25s;
}
.project-nav-item:hover .pn-title { color: var(--text); }
.project-nav-all {
  text-align: center; display: block;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text40); text-decoration: none;
  padding: 14px 28px; border: 1px solid var(--border);
  transition: all 0.25s;
}
.project-nav-all:hover { border-color: var(--gold); color: var(--gold); }

/* ── REVEALS ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 960px) {
  .cur-dot, .cur-ring { display: none; }

  nav { padding: 0 16px; }
  .nav-centre { display: none; }
  .nav-enquire { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right { gap: 14px; }
  .lang-dot { width: 28px; height: 28px; min-width: 28px; }

  .hero-content { padding: 0 24px 80px; }
  .hero-side { right: 24px; }

  .philosophy { grid-template-columns: 1fr; gap: 60px; padding: 100px 24px; }
  .phil-big-num { font-size: 120px; margin-bottom: -40px; }

  .projects-section { padding: 0 24px 100px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid .project-card:nth-child(n) { grid-column: span 1; }
  .projects-grid .project-card:nth-child(1),
  .projects-grid .project-card:nth-child(2) { grid-column: span 2; }
  .projects-grid .project-card:nth-child(1) img,
  .projects-grid .project-card:nth-child(2) img { height: 360px; }
  .projects-grid .project-card:nth-child(n+3) img { height: 260px; }

  .featured { padding: 80px 24px; }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-content { padding-right: 0; }
  .fi:nth-child(1) { grid-column: auto; grid-row: auto; }
  .fi:nth-child(1) img { height: 380px; }
  .fi:nth-child(2), .fi:nth-child(3) { display: none; }

  .approach { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); padding: 60px 24px; }
  .pillar:last-child { border-bottom: none; }

  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 80px 24px; }
  .contact-right { height: 400px; }
  .cf-row { grid-template-columns: 1fr; }

  footer { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; gap: 20px; }
  .footer-logo { display: flex; justify-content: center; }
  .footer-right { justify-content: center; }

  .archive-hero { padding: 80px 24px 40px; }
  .filter-bar { padding: 24px; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .archive-card-img { height: 260px; }

  .project-hero-content { padding: 0 24px 60px; }
  .project-body { padding: 60px 24px; }
  .project-description { grid-template-columns: 1fr; }
  .project-gallery { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; }
  .gallery-item:first-child img { height: 360px; }
  .gallery-item img { height: 260px; }
  .project-nav { grid-template-columns: 1fr; padding: 40px 24px; gap: 16px; text-align: center; }
  .project-nav-all { order: -1; }
  .project-nav-next { text-align: left; }
}

@media (max-width: 600px) {
  .archive-grid { grid-template-columns: 1fr; }
}
