/* ============================================
   KAIZEN — EDITORIAL LUXURY OVERLAY
   Loaded after styles.css, overrides home page.
   Keep navy / gold / sand palette, refresh
   typography + layouts to magazine-grade.
   ============================================ */

:root {
  --paper: #F5EFE6;
  --paper-soft: #EFE7DA;
  --ink: #0E1B26;
  --ink-2: #1A2A38;
  --rule: rgba(14, 27, 38, 0.12);
  --rule-soft: rgba(14, 27, 38, 0.06);

  --gold: #C8951B;
  --gold-warm: #D4A017;
  --gold-deep: #9A7212;

  --font-edit: 'Newsreader', 'Playfair Display', Georgia, serif;
  --font-italic: 'Newsreader', 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { font-size: 17px; }
body { background: var(--paper); color: var(--ink); }

/* Custom selection */
::selection { background: var(--ink); color: var(--gold-warm); }

/* Selective scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink); border: 2px solid var(--paper); }

/* ------------ Editorial keyframes ------------ */
@keyframes editFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes maskReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0); }
  50%  { transform: translate3d(0,-8px,0); }
  100% { transform: translate3d(0,0,0); }
}

/* ------------ Reveal primitives ------------ */
.ed-mask { display: inline-block; overflow: hidden; }
.ed-mask > * { display: inline-block; transform: translateY(110%); transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ed-mask.in > * { transform: translateY(0); }

.ed-rule { display: block; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ed-rule.in { transform: scaleX(1); }

.ed-img-reveal { clip-path: inset(0 100% 0 0); transition: clip-path 1.4s cubic-bezier(0.7, 0, 0.2, 1); will-change: clip-path; }
.ed-img-reveal.in { clip-path: inset(0 0 0 0); }

.ed-fade { opacity: 0; transform: translateY(24px); transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ed-fade.in { opacity: 1; transform: translateY(0); }
.ed-d1 { transition-delay: 0.08s; }
.ed-d2 { transition-delay: 0.16s; }
.ed-d3 { transition-delay: 0.24s; }
.ed-d4 { transition-delay: 0.32s; }
.ed-d5 { transition-delay: 0.40s; }

/* ============================================
   SITE UTILITY TOP BAR — region & language
   ============================================ */
#site-topbar.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--site-topbar-height);
  background: var(--navy-deeper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  height: 100%;
  max-width: 100%;
  padding: 0 3.5%;
}

.site-topbar-contact-list {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
}

.site-topbar-contact {
  display: flex;
  min-width: 0;
  max-width: 24vw;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s;
}

.site-topbar-contact > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-topbar-contact-label {
  margin-right: 0.3rem;
  color: rgba(212, 160, 23, 0.86);
  text-transform: uppercase;
}

.site-topbar-contact:hover {
  color: rgba(255, 255, 255, 0.88);
}

.site-topbar-preferences {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.site-pref {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-pref-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.site-pref-icon {
  width: 12px;
  height: 12px;
  stroke-width: 2px;
  opacity: 0.75;
}

.site-pref-options {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.site-pref-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0.18rem 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.site-pref-option:hover {
  color: rgba(255, 255, 255, 0.88);
}

.site-pref-option.is-active {
  background: rgba(212, 160, 23, 0.18);
  color: var(--gold);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(212, 160, 23, 0.35);
}

.site-topbar-sep {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

html[dir="rtl"] .site-topbar-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .site-pref {
  flex-direction: row-reverse;
}

html[dir="rtl"] .site-topbar-contact-label {
  margin-right: 0;
  margin-left: 0.3rem;
}

@media (max-width: 1024px) {
  .site-topbar-contact-list {
    gap: 0.75rem;
  }

  .site-topbar-contact {
    max-width: 20vw;
  }

  .site-topbar-contact-label {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-topbar-inner {
    justify-content: center;
    gap: 0.75rem;
    padding: 0 4%;
  }

  .site-topbar-contact-list {
    display: none;
  }

  .site-topbar-preferences {
    gap: 0.75rem;
    margin-left: 0;
  }

  .site-pref-label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-pref {
    gap: 0.35rem;
  }

  .site-pref-option {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.35rem 0.55rem;
    font-size: 0.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================
   NAV refinement
   ============================================ */
nav#navbar {
  position: sticky;
  top: var(--site-topbar-height);
  padding: 1.1rem 3.5%;
  background: var(--navy-deeper);
  border-bottom: 1px solid rgba(212,160,23,0.18);
}
nav#navbar.scrolled {
  background: var(--navy-deeper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(212,160,23,0.18);
  box-shadow: none;
}
.nav-logo img { height: 64px; transition: height 0.4s var(--ease-out); }
nav#navbar.scrolled .nav-logo img { height: 52px; }

.desktop-nav a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  padding-bottom: 4px;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Panel links match .desktop-nav a but must not show the gold underline bar */
.nav-dropdown-panel-inner a::after {
  display: none;
}

.nav-cta {
  border-radius: 0;
  background: var(--gold-warm);
  padding: 11px 22px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nav-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  z-index: -1;
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}
.nav-cta:hover { color: var(--gold-warm); transform: none; background: var(--gold-warm); }
.nav-cta:hover::after { transform: translateY(0); }

/* ============================================
   HERO  — keep fixed video, redesign overlay
   ============================================ */
#hero { background: var(--ink); }

.hero-bg {
  background:
    radial-gradient(120% 80% at 80% 20%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.85) 100%),
    linear-gradient(180deg, rgba(14,27,38,0.55) 0%, rgba(14,27,38,0.25) 30%, rgba(14,27,38,0.75) 100%);
}

.hero-grid-overlay {
  background-image:
    linear-gradient(rgba(212,160,23,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(120% 80% at 50% 60%, #000 50%, transparent 95%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 60%, #000 50%, transparent 95%);
}

/* Editorial top metadata bar */
.hero-meta {
  position: absolute;
  top: calc(110px + var(--site-topbar-height)); left: 5%; right: 5%;
  z-index: 11;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
  padding-top: 30px;
}
.hero-meta span { display: flex; align-items: center; gap: 10px; }
.hero-meta span::before { content: ''; width: 22px; height: 1px; background: var(--gold-warm); }

/* Editorial layout: left big serif, right caption + index */
.hero-content {
  padding: calc(var(--site-topbar-height) + 8rem) 5% 5vh;
  align-items: end;
}

.hero-left { padding-bottom: 2rem; }

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold-warm);
}
.hero-tag::before { width: 24px; }

.hero-h1 {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 0;
  font-weight: 300;
  font-size: clamp(36px, 7vw, 90px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: #fff;
}
.hero-h1::after {
  content: '.';
  color: var(--gold-warm);
  font-style: italic;
  font-weight: 400;
  margin-left: 4px;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-warm);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}

/* Make middle word italic for editorial tension */
.hero-h1 .it {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-warm);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 380px;
  letter-spacing: 0.005em;
}
.hero-sub::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

/* RIGHT — editorial caption + stats */
.hero-right { gap: 2.5rem; }

.hero-stat-stack {
  max-width: 320px;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-left: none;
}
.hero-stat-item {
  background: transparent !important;
  border: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: 1px solid rgba(255,255,255,0.10) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
  padding: 1.5rem 1.25rem !important;
  display: block !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.hero-stat-item:nth-child(2n) { border-right: none !important; }
.hero-stat-item:nth-last-child(-n+2) { border-bottom: none !important; }

.hero-stat-num {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero-stat-num span {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-warm);
  margin-left: 2px;
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-align: left;
  text-transform: uppercase;
  max-width: 100%;
  line-height: 1.5;
}

/* Vertical scroll-down indicator in editorial style */
.hero-scroll-hint {
  bottom: 2rem;
  left: 5%;
  transform: none;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, var(--gold-warm), transparent);
  animation: none;
  position: relative;
  overflow: hidden;
}
.scroll-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-warm);
  animation: scrollSweep 2.4s ease-in-out infinite;
}
@keyframes scrollSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Hero corner brackets — architectural detail */
.hero-bracket {
  position: absolute;
  width: 38px; height: 38px;
  border: 1px solid rgba(212,160,23,0.4);
  pointer-events: none;
  z-index: 11;
}
.hero-bracket.tl { top: calc(96px + var(--site-topbar-height)); left: 5%; border-right: none; border-bottom: none; }
.hero-bracket.tr { top: calc(96px + var(--site-topbar-height)); right: 5%; border-left: none; border-bottom: none; }
.hero-bracket.bl { bottom: 96px; left: 5%; border-right: none; border-top: none; }
.hero-bracket.br { bottom: 96px; right: 5%; border-left: none; border-top: none; }

/* ============================================
   TRUST BAR — editorial marquee
   ============================================ */
#trust-bar {
  background: var(--ink);
  border: none;
  padding: 22px 0;
  color: var(--paper);
}
.trust-track { gap: 3rem; }
.trust-item {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(245,239,230,0.72);
  text-transform: uppercase;
}
.trust-dot {
  width: 6px; height: 6px;
  background: var(--gold-warm);
  transform: none;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-inner { max-width: 1640px; padding: 0 4%; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.section-label::before { width: 28px; background: var(--gold-warm); }

.section-h2 {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
  font-weight: 300;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-transform: none;
}
.section-h2 .it {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-warm);
  letter-spacing: -0.005em;
}
.section-h2::after {
  content: '.';
  color: var(--gold-warm);
}

/* Editorial section index — sits at top corner of section */
.sec-index {
  position: absolute;
  top: 4rem;
  right: 4%;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ink);
  opacity: 0.45;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-index::before {
  content: '';
  width: 38px; height: 1px;
  background: var(--ink);
  opacity: 0.4;
}
.dark-section .sec-index { color: rgba(255,255,255,0.55); }
.dark-section .sec-index::before { background: rgba(255,255,255,0.5); }

/* ============================================
   WHY — editorial 12-col with photo block
   ============================================ */
#why {
  padding: 9rem 0 10rem;
  background: var(--paper);
}
.why-grid {
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
}
.why-left { position: sticky; top: calc(130px + var(--site-topbar-height)); }

.why-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin-top: 2rem;
}

.why-photo {
  margin-top: 2.5rem;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.why-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s;
}
.why-photo:hover img { transform: scale(1.06); filter: grayscale(0%) contrast(1.05); }
.why-photo .why-photo-cap {
  position: absolute;
  left: 1.25rem; bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  background: rgba(14,27,38,0.55);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  text-transform: uppercase;
}
.why-photo .why-photo-cap b { color: var(--gold-warm); font-weight: 500; }

.why-founder {
  margin-top: 3rem;
  padding: 2rem 0 0 2rem;
  border-left: 1px solid var(--gold-warm);
}
.why-founder-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.why-founder-quote::before { content: '“'; color: var(--gold-warm); font-size: 2.2em; line-height: 0; vertical-align: -0.42em; margin-right: 6px; }
.why-founder-sig {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  margin-top: 1.25rem;
}

.why-card {
  padding: 2.4rem 0;
  border-top: 1px solid var(--rule);
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  align-items: baseline;
  cursor: default;
}
.why-card:last-child { border-bottom: 1px solid var(--rule); }
.why-card::before {
  background: var(--gold-warm);
  height: 1px;
}
.why-card-num {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 300;
  font-size: 2.4rem;
  letter-spacing: -0.05em;
  color: var(--gold-warm);
  -webkit-text-stroke: 0;
  border: none;
  width: auto;
}
.why-card-num::before {
  content: '— ';
  color: var(--ink);
  opacity: 0.45;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  vertical-align: middle;
  margin-right: 8px;
  font-weight: 500;
}
.why-card:hover .why-card-num { color: var(--ink); }
.why-card-title {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: -0.018em;
  margin-bottom: 0.55rem;
}
.why-card-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 540px;
}

/* ============================================
   ABOUT — dark editorial with image overlap
   ============================================ */
#about { padding: 9rem 0; background: var(--ink); position: relative; }
#about.dark-section .section-label { color: rgba(245,239,230,0.85); }
#about.dark-section .section-label::before { background: var(--gold-warm); }
#about.dark-section .section-h2 { color: var(--paper); }
#about.dark-section .section-h2::after { color: var(--gold-warm); }

.about-grid {
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,239,230,0.78);
  margin-top: 2rem;
}
.about-body p { margin-bottom: 1.4rem; }
.about-body p::first-letter {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 300;
  font-size: 3.2rem;
  float: left;
  line-height: 0.85;
  color: var(--gold-warm);
  margin: 0.15em 12px 0 -2px;
}
.about-body p + p::first-letter { font-size: 1em; float: none; margin: 0; color: inherit; font-family: inherit; line-height: inherit; }

.about-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  background: transparent;
  color: rgba(245,239,230,0.85);
  border: 1px solid rgba(245,239,230,0.18);
  padding: 9px 16px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all 0.4s;
}
.about-tag:hover { background: var(--gold-warm); color: var(--ink); border-color: var(--gold-warm); }

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: transparent;
  border: none;
  gap: 0;
  border-top: 1px solid rgba(245,239,230,0.12);
  border-left: 1px solid rgba(245,239,230,0.12);
}
.stat-cell {
  background: transparent;
  border-right: 1px solid rgba(245,239,230,0.12);
  border-bottom: 1px solid rgba(245,239,230,0.12);
  padding: 2.6rem 1.6rem;
}
.stat-big {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-weight: 300;
  font-size: 4.5rem;
  letter-spacing: -0.05em;
  color: var(--gold-warm);
  line-height: 0.95;
}
.stat-big sup {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--paper);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(245,239,230,0.55);
  margin-top: 1.5rem;
  text-transform: uppercase;
  line-height: 1.6;
}

.about-portrait {
  margin-top: 2.5rem;
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.85);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s;
}
.about-portrait:hover img { transform: scale(1.05); filter: grayscale(10%) brightness(1); }
.about-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,27,38,0.65) 100%);
  pointer-events: none;
}
.about-portrait .ap-cap {
  position: absolute;
  left: 1.25rem; bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.85);
  z-index: 2;
}
.about-portrait .ap-cap b { color: var(--gold-warm); font-weight: 500; }

/* ============================================
   SERVICES — magazine index w/ cursor preview
   ============================================ */
#services { padding: 9rem 0; background: var(--paper-soft); position: relative; }

.services-header {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3rem;
  margin-bottom: 1rem;
  align-items: end;
}
.services-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 380px;
}

.services-grid { gap: 0; }

.service-card {
    display: grid !important;
  grid-template-columns: 70px 1.1fr 2fr 60px !important;
  padding: 2.4rem 0 !important;
  gap: 2.5rem !important;
  border-bottom: 1px solid var(--rule) !important;
  border-top: none !important;
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.service-card::after { background: var(--gold-warm) !important; height: 1px !important; }
.service-card:hover { padding-left: 0 !important; }

.service-card .service-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  opacity: 0.6;
  align-self: center;
}

.service-icon {
  display: none !important;
}

.service-title {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400;
  font-size: 2.4rem !important;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  transition: color 0.4s, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-width: 0;
}
.service-card:hover .service-title {
  color: var(--gold-warm);
  transform: translateX(20px);
  font-style: italic;
  font-family: var(--font-italic);
  font-weight: 400;
}

.service-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-2);
  opacity: 0.7;
  max-width: 540px;
  min-width: 0;
}

.service-arrow {
  width: 44px !important; height: 44px !important;
  border: 1px solid var(--rule) !important;
  border-radius: 0 !important;
  background: transparent;
  transition: all 0.4s;
}
.service-arrow svg { width: 16px; height: 16px; }
.service-card:hover .service-arrow {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
}

/* Cursor-following preview image */
#service-preview {
  position: fixed;
  top: 0; left: 0;
  width: 380px;
  aspect-ratio: 4 / 5;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
#service-preview.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
#service-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
}
#service-preview img.active { opacity: 1; }
#service-preview .sp-label {
  position: absolute;
  left: 14px; bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(14,27,38,0.55);
  padding: 6px 10px;
  z-index: 2;
}
@media (max-width: 1024px) { #service-preview { display: none !important; } }

/* ============================================
   SIGNATURE PROJECTS — image-driven editorial
   replaces the SVG line-drawing cards
   ============================================ */
#projects { padding: 9rem 0; background: var(--paper); position: relative; }

.projects-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2.5rem;
}
.projects-filters { margin-top: 0; gap: 0.4rem; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem !important;
  font-weight: 500;
  letter-spacing: 0.18em;
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  padding: 9px 18px;
  text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Override mosaic with editorial layout */
.projects-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem 1.5rem;
}
.proj-card {
  height: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible;
  margin-top: 0 !important;
  position: relative;
  display: block;
}
.proj-card .proj-bg {
  position: relative !important;
  inset: auto !important;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.proj-card .proj-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s;
}
.proj-card:hover .proj-bg img { transform: scale(1.05); filter: grayscale(0%); }
.proj-card .proj-bg svg { display: none; }

.proj-card .proj-overlay { display: none; }
.proj-card .proj-hover-detail {
  top: 1rem; right: 1rem;
}
.proj-card .proj-hover-detail span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  padding: 6px 12px;
  text-transform: uppercase;
}

/* Layout: alternating editorial sizing */
.proj-card:nth-child(1) { grid-column: span 7; }
.proj-card:nth-child(2) { grid-column: span 5; padding-top: 4rem; }
.proj-card:nth-child(3) { grid-column: span 4; }
.proj-card:nth-child(4) { grid-column: span 8; }
.proj-card:nth-child(5) { grid-column: span 6; }
.proj-card:nth-child(6) { grid-column: span 6; padding-top: 3rem; }

.proj-card .proj-info {
  position: relative !important;
  background: transparent !important;
  padding: 1.5rem 0 0 !important;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: baseline;
}
.proj-card .proj-cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  background: transparent;
  color: var(--gold-deep);
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 500;
  align-self: center;
}
.proj-card .proj-name {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0;
}
.proj-card .proj-loc {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  opacity: 0.65;
  text-transform: uppercase;
  align-self: center;
}
.proj-card .proj-loc svg { width: 11px; height: 11px; stroke: var(--gold-warm); }

.proj-meta {
  margin-top: 0.6rem;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--rule);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--ink-2);
  opacity: 0.55;
  text-transform: uppercase;
}

/* ============================================
   GALLERY — editorial photo wall
   ============================================ */
#gallery {
  background: var(--ink) !important;
  padding: 9rem 0 !important;
  position: relative;
}
.gallery-header { text-align: left !important; margin-bottom: 4rem !important; }
#gallery .section-h2 { color: var(--paper); }
#gallery .section-label { color: rgba(245,239,230,0.85); }
#gallery .section-label::before { background: var(--gold-warm); }

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  grid-auto-rows: 110px;
  gap: 14px !important;
}
.gallery-grid .gallery-item {
  border-radius: 0 !important;
  border: none !important;
  aspect-ratio: auto !important;
  position: relative;
  overflow: hidden !important;
  background: rgba(255,255,255,0.04);
}
.gallery-grid .gallery-item img {
  filter: grayscale(15%) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s !important;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.06) !important;
  filter: grayscale(0%) contrast(1.05);
}
.gallery-grid .gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.gallery-grid .gallery-item .gi-cap {
  position: absolute;
  left: 14px; bottom: 12px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  z-index: 2;
}
.gallery-grid .gallery-item .gi-cap b { color: var(--gold-warm); font-weight: 500; }

/* Editorial mosaic sizing */
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 4; }
.gallery-grid .gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 3; }
.gallery-grid .gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 3; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 4; }
.gallery-grid .gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 4; }
.gallery-grid .gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 4; }
.gallery-grid .gallery-item:nth-child(7) { grid-column: span 8; grid-row: span 3; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr !important; grid-auto-rows: 180px; }
  .gallery-grid .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

/* ============================================
   PROCESS — editorial timeline (light bg)
   ============================================ */
#process {
  background: var(--paper-soft) !important;
  color: var(--ink) !important;
  padding: 9rem 0 !important;
}
#process .section-h2 { color: var(--ink) !important; }
#process .section-label { color: var(--ink) !important; }
#process .section-label::before { background: var(--gold-warm) !important; }

.process-header { margin-bottom: 6rem !important; align-items: end; }
.process-intro { color: var(--ink-2) !important; opacity: 0.75; font-family: 'Inter',sans-serif !important; font-weight: 300; font-size: 1rem !important; }

.process-steps { gap: 0 !important; }
.process-line { display: none; }
.process-step {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0 !important;
  display: grid !important;
  grid-template-columns: 90px 1fr 1.6fr !important;
  grid-template-areas: "num title desc" !important;
  gap: 3rem !important;
  align-items: baseline !important;
}
.process-step:last-child { border-bottom: 1px solid var(--rule); }

.step-num-wrap {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  width: auto !important; height: auto !important;
}
.step-num {
  font-family: var(--font-mono) !important;
  font-size: 0.78rem !important;
  font-weight: 500;
  letter-spacing: 0.22em !important;
  color: var(--gold-deep) !important;
}
.process-step:hover .step-num-wrap { background: transparent !important; border: none !important; }
.process-step:hover .step-num { color: var(--ink) !important; }

.step-title {
  font-family: var(--font-edit) !important;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400 !important;
  font-size: 2rem !important;
  letter-spacing: -0.02em !important;
  color: var(--ink) !important;
  line-height: 1.1;
}
.process-step:hover .step-title { font-style: italic; font-family: var(--font-italic) !important; color: var(--gold-warm) !important; }
.step-desc {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300;
  font-size: 0.95rem !important;
  color: var(--ink-2) !important;
  opacity: 0.75;
  line-height: 1.65;
  max-width: 480px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  background: var(--paper) !important;
  padding: 9rem 0 !important;
  overflow-x: clip;
}
#testimonials .section-inner {
  overflow-x: clip;
}
.testi-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.testi-slider .swiper-slide {
  box-sizing: border-box;
}

#video-gallery .video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: transparent !important;
  border: none !important;
  border-top: 1px solid var(--rule) !important;
  padding: 2.5rem 0 !important;
  border-radius: 0 !important;
}
.testi-card:hover { background: transparent !important; transform: none !important; }
.testi-quote {
  font-family: var(--font-italic) !important;
  font-style: italic;
  font-weight: 400 !important;
  font-size: 1.4rem !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
}
.testi-quote::before { content: '“'; color: var(--gold-warm); font-size: 1.4em; line-height: 0; vertical-align: -0.25em; margin-right: 4px; }
.testi-stars svg { width: 12px !important; height: 12px !important; }
.testi-gold-bar {
  width: 24px; height: 1px;
  background: var(--gold-warm);
  margin: 1.5rem 0;
}
.testi-avatar {
  background: var(--ink) !important;
  border-radius: 0 !important;
  font-family: var(--font-mono) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em;
}
.testi-name {
  font-family: var(--font-edit) !important;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400 !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.012em !important;
}
.testi-role {
  font-family: var(--font-mono) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2) !important;
  opacity: 0.65;
}

/* ============================================
   FAQ — editorial accordion
   ============================================ */
#faq {
  background: var(--paper-soft) !important;
  padding: 9rem 0 !important;
}
.faq-layout { gap: 5rem !important; }
.faq-q {
  font-family: var(--font-edit) !important;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400 !important;
  font-size: 1.4rem !important;
  letter-spacing: -0.018em;
  padding: 1.8rem 0 !important;
}
.faq-q:hover { color: var(--gold-warm) !important; font-style: italic; font-family: var(--font-italic) !important; }
.faq-icon { border-radius: 0 !important; width: 36px !important; height: 36px !important; }
.faq-a-inner {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300;
  font-size: 0.95rem !important;
  color: var(--ink-2) !important;
}
.faq-contact-prompt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  margin-top: 2rem;
  border-radius: 0;
  transition: background 0.4s;
}
.faq-contact-prompt:hover { background: var(--gold-warm); color: var(--ink); }
.faq-contact-prompt svg { width: 16px; height: 16px; }

.faq-left p {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300;
  font-size: 1rem !important;
  color: var(--ink-2) !important;
  margin-top: 1.5rem;
  line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
#cta {
  background: var(--gold-warm) !important;
  padding: 10rem 0 !important;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,27,38,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,27,38,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.cta-label {
  font-family: var(--font-mono) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.32em !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
}
.cta-label::before, .cta-label::after { background: var(--ink) !important; height: 1px !important; }

.cta-h2 {
  font-family: var(--font-edit) !important;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
  font-weight: 300 !important;
  font-size: clamp(3rem, 7vw, 6.5rem) !important;
  letter-spacing: -0.04em !important;
  color: var(--ink) !important;
  text-transform: none !important;
  position: relative;
  z-index: 2;
}
.cta-h2 em, .cta-h2 .it {
  font-family: var(--font-italic) !important;
  font-style: italic;
  font-weight: 400 !important;
  color: var(--paper) !important;
}

.cta-sub {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300 !important;
  font-size: 1.05rem !important;
  color: rgba(14,27,38,0.78) !important;
  position: relative;
  z-index: 2;
}
.btn-cta-gold, .btn-cta-ghost {
  border-radius: 0 !important;
  font-family: var(--font-mono) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.22em !important;
  font-weight: 500 !important;
  padding: 16px 28px !important;
  position: relative;
  z-index: 2;
}
.btn-cta-gold {
  background: var(--ink) !important;
  color: var(--paper) !important;
}
.btn-cta-gold:hover { background: var(--paper) !important; color: var(--ink) !important; transform: translateY(-3px) !important; box-shadow: none !important; }
.btn-cta-ghost {
  border: 1px solid var(--ink) !important;
  color: var(--ink) !important;
}
.btn-cta-ghost:hover { background: var(--ink) !important; color: var(--paper) !important; transform: translateY(-3px) !important; }

.cta-contact-row { gap: 2rem !important; }
.cta-contact-item {
  font-family: var(--font-mono) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  overflow-wrap: anywhere;
  text-align: center;
  max-width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink) !important;
  padding: 5rem 4% 3rem !important;
}
.footer-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start !important;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,239,230,0.1);
}
.footer-logo-img { height: 60px !important; }
.footer-copy {
  font-family: var(--font-mono) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  color: rgba(245,239,230,0.55) !important;
  line-height: 2 !important;
  text-align: left !important;
  text-transform: uppercase;
}
.footer-tagline {
  font-family: var(--font-italic) !important;
  font-style: italic;
  font-size: 1.4rem !important;
  color: rgba(245,239,230,0.75) !important;
  text-align: right;
}

/* ============================================
   PROJECT SHOWCASE — featured strip section
   between trust bar & why
   ============================================ */
#feature-strip {
  background: var(--paper);
  padding: 6rem 0 0;
  position: relative;
}
.feature-strip-inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 4%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.fs-cell {
  background: var(--paper);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fs-num {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-weight: 300;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.fs-num em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-warm);
  margin-left: 4px;
}
.fs-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--ink-2);
  opacity: 0.65;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.fs-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-2);
  opacity: 0.75;
  max-width: 320px;
}
@media (max-width: 1024px) { .feature-strip-inner { grid-template-columns: 1fr; } }

/* ============================================
   CRAFT STRIP — full-bleed image marquee
   between services & projects
   ============================================ */
#craft-strip {
  background: var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.craft-marquee {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  width: max-content;
  animation: craftMarquee 60s linear infinite;
}
.craft-marquee:hover { animation-play-state: paused; }
.craft-marquee img {
  height: 320px;
  width: auto;
  object-fit: cover;
  filter: grayscale(35%) contrast(1.05);
  flex-shrink: 0;
}
@keyframes craftMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.craft-strip-head {
  padding: 4rem 4% 2rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--paper);
}
.craft-strip-head .section-label { color: rgba(245,239,230,0.85); margin-bottom: 0.8rem; }
.craft-strip-head .section-label::before { background: var(--gold-warm); }
.craft-strip-head h2 {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.craft-strip-head h2 .it { font-family: var(--font-italic); font-style: italic; color: var(--gold-warm); }
.craft-strip-head .csh-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(245,239,230,0.55);
  text-transform: uppercase;
  text-align: right;
  line-height: 2;
}
.craft-strip-foot {
  padding: 1.5rem 4% 4rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(245,239,230,0.5);
  text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
  .nav-cta { display: none; }
  .nav-logo img { height: 48px !important; }
  .sec-index {
    position: static;
    display: block;
    margin-bottom: 1.25rem;
    padding-right: 0;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn-cta-gold,
  .cta-buttons .btn-cta-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cta-contact-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem !important;
  }
  #video-gallery .video-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1024px) {
  .hero-meta { display: none; }
  .hero-bracket { display: none; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: calc(var(--site-topbar-height) + 6rem);
    padding-bottom: 12vh;
  }
  .hero-stat-stack { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 4rem; }
  .why-left { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { grid-template-columns: 1fr 1fr; }
  .projects-mosaic { grid-template-columns: 1fr; }
  .proj-card:nth-child(n) { grid-column: span 1 !important; padding-top: 0 !important; }
  .process-step { grid-template-columns: 1fr !important; grid-template-areas: "num" "title" "desc" !important; gap: 1rem !important; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-tagline { text-align: center; }
  .footer-copy { text-align: center; }
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  .service-card { grid-template-columns: 50px 1fr !important; gap: 1rem !important; padding: 2rem 0 !important; }
  .service-card .service-desc, .service-card .service-arrow { grid-column: 2; }
  .service-title { font-size: 1.8rem !important; }
  .service-card:hover .service-title { transform: none; }
  .projects-header { grid-template-columns: 1fr; }
}

/* =========================================================
   LAYOUT VARIANTS — applied per-page via partial $data['variant']
   Default (Oman) keeps the existing layout. PK uses these.
   ========================================================= */

/* --- HERO: centered variant --- */
.hero--centered .hero-content--centered {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--site-topbar-height) + 8rem) 6vw 0;
  gap: 0px;
}
.hero--centered .hero-tag { justify-content: center; margin-bottom: 1.6rem; }
.hero--centered .hero-h1--centered {
  line-height: .95;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin: 0 auto 1.4rem;
}
.hero--centered .hero-sub--centered {
  max-width: 60ch;
  margin: 0 auto 3rem;
  text-align: center;
  color: rgba(255,255,255,0.78);
}
.hero--centered .hero-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 2rem;
}
.hero--centered .hero-stat-row .hero-stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 0 1rem;
}
.hero--centered .hero-stat-row .hero-stat-item:last-child { border-right: none; }
.hero--centered .hero-stat-row .hero-stat-num {
  font-family: var(--font-edit);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 0.4rem;
}
.hero--centered .hero-stat-row .hero-stat-num span { color: var(--gold-warm); }
.hero--centered .hero-stat-row .hero-stat-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .hero--centered .hero-content--centered {
    padding-top: calc(var(--site-topbar-height) + 6rem);
  }
  .hero--centered .hero-h1--centered { font-size: 36px; max-width: 16ch; }
  .hero--centered .hero-stat-row { grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,0.18); }
  .hero--centered .hero-stat-row .hero-stat-item:nth-child(2) { border-right: none; }
  .hero--centered .hero-stat-row .hero-stat-item:nth-child(1),
  .hero--centered .hero-stat-row .hero-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 1.2rem; margin-bottom: 1.2rem; }
}

/* --- ABOUT: inverted variant (portrait left, copy right) --- */
.about--inverted .about-grid {
  grid-template-columns: 1fr 1.1fr;
}
.about--inverted .about-left { order: 2; }
.about--inverted .about-right-wrap { order: 1; }
.about--inverted .about-portrait { margin-right: 2rem; margin-left: 0; }
@media (max-width: 900px) {
  .about--inverted .about-grid { grid-template-columns: 1fr; }
  .about--inverted .about-left { order: 2; }
  .about--inverted .about-right-wrap { order: 1; }
}

/* --- PROJECTS: stacked case-study variant --- */
.projects--stacked .projects-filters { display: none; }
.projects--stacked .projects-stacked {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  margin-top: 4rem;
}
.projects--stacked .proj-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.projects--stacked .proj-row--reverse { grid-template-columns: 1fr 1.35fr; }
.projects--stacked .proj-row--reverse .proj-row-figure { order: 2; }
.projects--stacked .proj-row--reverse .proj-row-body   { order: 1; padding-right: 2rem; padding-left: 0; }
.projects--stacked .proj-row-body { padding-left: 2rem; }
.projects--stacked .proj-row-figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}
.projects--stacked .proj-row-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.projects--stacked .proj-row:hover .proj-row-figure img { transform: scale(1.04); }
.projects--stacked .proj-row-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  background: rgba(10,14,26,0.7);
  padding: .35rem .6rem;
  border: 1px solid rgba(212,175,106,.35);
}
.projects--stacked .proj-row-cat {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}
.projects--stacked .proj-row-title {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .6rem;
}
.projects--stacked .proj-row-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-2);
  opacity: .75;
  margin-bottom: 1.4rem;
}
.projects--stacked .proj-row-loc {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  margin-bottom: 2rem;
}
.projects--stacked .proj-row-loc i { width: 14px; height: 14px; color: var(--gold-warm); }
.projects--stacked .proj-row-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 1.4rem;
  margin: 0;
}
.projects--stacked .proj-row-meta div { display: flex; flex-direction: column; gap: .3rem; }
.projects--stacked .proj-row-meta dt {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: .5;
  margin: 0;
}
.projects--stacked .proj-row-meta dd {
  font-family: var(--font-edit);
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 900px) {
  .projects--stacked .proj-row,
  .projects--stacked .proj-row--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .projects--stacked .proj-row-body,
  .projects--stacked .proj-row--reverse .proj-row-body { padding: 0; }
  .projects--stacked .proj-row--reverse .proj-row-figure { order: 1; }
  .projects--stacked .proj-row--reverse .proj-row-body { order: 2; }
  .projects--stacked .projects-stacked { gap: 4rem; }
}

/* --- PROCESS: horizontal connected timeline --- */
.process--horizontal .process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
}
.process--horizontal .process-track-line {
  position: absolute;
  top: 3.4rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--gold-warm) 8%, var(--gold-warm) 92%, transparent 100%);
  opacity: .5;
}
.process--horizontal .process-node {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process--horizontal .process-node-num {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.process--horizontal .process-node-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold-warm);
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}
.process--horizontal .process-node-title {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: .8rem;
  max-width: 18ch;
}
.process--horizontal .process-node-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: .82rem;
  line-height: 1.55;
  color: var(--ink-2);
  opacity: .8;
  max-width: 24ch;
}
@media (max-width: 900px) {
  .process--horizontal .process-track {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding-top: 1rem;
  }
  .process--horizontal .process-track-line { display: none; }
  .process--horizontal .process-node { text-align: left; align-items: flex-start; }
  .process--horizontal .process-node-title,
  .process--horizontal .process-node-desc { max-width: none; }
  .process--horizontal .process-node-dot { display: none; }
}

/* --- GALLERY: cinematic asymmetric variant --- */
.gallery--cinematic .gallery-cinematic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.gallery--cinematic .gallery-hero {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}
.gallery--cinematic .gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.gallery--cinematic .gallery-hero:hover img { transform: scale(1.04); }
.gallery--cinematic .gallery-hero .gi-cap {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10,14,26,0.6);
  padding: .5rem .8rem;
}
.gallery--cinematic .gallery-cinematic-rest {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.gallery--cinematic .gallery-cinematic-rest .gallery-item { aspect-ratio: 1 / 1; }
@media (max-width: 900px) {
  .gallery--cinematic .gallery-cinematic { grid-template-columns: 1fr; }
  .gallery--cinematic .gallery-hero { aspect-ratio: 4 / 3; }
}

/* --- FEATURE STRIP: vertical stacked variant --- */
.fs--vertical .feature-strip-inner {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 880px;
}
.fs--vertical .fs-cell {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  border-right: none;
  text-align: left;
}
.fs--vertical .fs-cell:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.fs--vertical .fs-cell:last-child  { border-bottom: 1px solid rgba(0,0,0,0.1); }
.fs--vertical .fs-num {
  font-size: clamp(4.5rem, 8vw, 7rem);
  line-height: 1;
  text-align: left;
}
.fs--vertical .fs-text {
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.55;
}
.fs--vertical .fs-eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
@media (max-width: 720px) {
  .fs--vertical .fs-cell { grid-template-columns: 1fr; gap: 1rem; padding: 2.4rem 0; }
  .fs--vertical .fs-eyebrow { margin-bottom: 0; }
}

/* --- TESTIMONIALS: editorial pull-quote columns --- */
.testi--editorial .testi-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 3rem;
  margin-top: 4rem;
}
.testi--editorial .testi-pullquote {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.testi--editorial .testi-pullquote-num {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.testi--editorial .testi-pullquote-text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.testi--editorial .testi-pullquote-text::before { content: '\201C'; margin-right: 0.1em; color: var(--gold-warm); }
.testi--editorial .testi-pullquote-text::after  { content: '\201D'; margin-left: 0.05em; color: var(--gold-warm); }
.testi--editorial .testi-pullquote-cap {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: .6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.testi--editorial .testi-pullquote-name {
  font-family: var(--font-edit);
  font-variation-settings: 'opsz' 144;
  font-size: 1rem;
  color: var(--ink);
}
.testi--editorial .testi-pullquote-role {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: .65;
}
@media (max-width: 900px) {
  .testi--editorial .testi-columns { grid-template-columns: 1fr; gap: 3rem; }
}

/* --- CTA: dark variant (navy bg with gold accents) ---
   The default #cta uses !important on most properties (legacy CSS), so we mirror that
   on #cta.cta--dark (ID + class) to win specificity AND the !important contest. */
#cta.cta--dark { background: var(--ink) !important; color: var(--paper); }
#cta.cta--dark::before {
  background-image:
    linear-gradient(rgba(245,239,230,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,239,230,0.05) 1px, transparent 1px);
}
#cta.cta--dark .cta-geo,
#cta.cta--dark .cta-shape { opacity: .15; mix-blend-mode: screen; }
#cta.cta--dark .cta-label { color: var(--gold-warm) !important; }
#cta.cta--dark .cta-label::before,
#cta.cta--dark .cta-label::after { background: var(--gold-warm) !important; }
#cta.cta--dark .cta-h2 { color: var(--paper) !important; }
#cta.cta--dark .cta-h2 em,
#cta.cta--dark .cta-h2 .it { color: var(--gold-warm) !important; }
#cta.cta--dark .cta-sub { color: rgba(245,239,230,0.72) !important; }
#cta.cta--dark .btn-cta-gold {
  background: var(--gold-warm) !important;
  color: var(--ink) !important;
  border: 1px solid var(--gold-warm);
}
#cta.cta--dark .btn-cta-gold:hover { background: transparent !important; color: var(--gold-warm) !important; }
#cta.cta--dark .btn-cta-ghost {
  border: 1px solid rgba(245,239,230,0.4) !important;
  color: var(--paper) !important;
}
#cta.cta--dark .btn-cta-ghost:hover { background: var(--paper) !important; color: var(--ink) !important; }
#cta.cta--dark .cta-contact-row { border-top-color: rgba(245,239,230,0.12); }
#cta.cta--dark .cta-contact-item { color: rgba(245,239,230,0.78) !important; }
#cta.cta--dark .cta-contact-item:hover { color: var(--gold-warm) !important; }
#cta.cta--dark .cta-contact-item i { color: var(--gold-warm); }

/* ============================================
   BLOG — archive, single, home grid
   ============================================ */
.home-blog {
  position: relative;
  padding: clamp(4rem, 10vw, 7.5rem) 0;
  background: var(--paper-soft);
  color: var(--ink);
}
.home-blog-header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
  max-width: 52rem;
}
.home-blog-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(14, 27, 38, 0.72);
  max-width: 40rem;
}
.home-blog-actions {
  margin-top: 0.25rem;
}
.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.blog-post-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  color: rgba(14, 27, 38, 0.55);
}
.blog-post-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}
.blog-post-card:hover {
  border-color: rgba(200, 149, 27, 0.45);
  box-shadow: 0 22px 48px rgba(14, 27, 38, 0.1);
  transform: translateY(-3px);
}
.blog-post-card__media {
  aspect-ratio: 16 / 10;
  background: var(--ink);
  overflow: hidden;
}
.blog-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-post-card:hover .blog-post-card__media img {
  transform: scale(1.04);
}
.blog-post-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(200, 149, 27, 0.12), rgba(14, 27, 38, 0.35)),
    var(--ink);
}
.blog-post-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.blog-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14, 27, 38, 0.5);
}
.blog-post-card__cat {
  color: var(--gold-deep);
}
.blog-post-card__title {
  font-family: var(--font-edit);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.blog-post-card__excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(14, 27, 38, 0.68);
  margin: 0;
}
.blog-archive {
  padding: clamp(3rem, 8vw, 5rem) 0 6rem;
  background: var(--paper);
  color: var(--ink);
}

/* Projects archive (DB projects) */
.project-archive {
  padding: clamp(3rem, 8vw, 5rem) 0 6rem;
  background: var(--paper);
  color: var(--ink);
}
.project-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.project-archive-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  color: rgba(14, 27, 38, 0.55);
}
.project-archive-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}
.project-archive-card:hover {
  border-color: rgba(200, 149, 27, 0.45);
  box-shadow: 0 22px 48px rgba(14, 27, 38, 0.1);
  transform: translateY(-3px);
}
.project-archive-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  overflow: hidden;
}
.project-archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.project-archive-card:hover .project-archive-card__media img {
  transform: scale(1.04);
}
.project-archive-card__status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  background: rgba(14, 27, 38, 0.88);
  color: var(--gold-warm);
  border: 1px solid rgba(212, 160, 23, 0.35);
}
.project-archive-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.project-archive-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14, 27, 38, 0.5);
}
.project-archive-card__cat {
  color: var(--gold-deep);
}
.project-archive-card__svc {
  color: rgba(14, 27, 38, 0.45);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-archive-card__title {
  font-family: var(--font-edit);
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.project-archive-card__sub {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(14, 27, 38, 0.62);
}
.project-archive-card__foot {
  margin-top: auto;
  padding-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14, 27, 38, 0.55);
  border-top: 1px solid var(--rule-soft);
}
.project-archive-card__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.project-archive-card__loc i {
  width: 14px;
  height: 14px;
  color: var(--gold-deep);
}
@media (max-width: 900px) {
  .project-archive-grid {
    grid-template-columns: 1fr;
  }
}

.blog-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 3.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.blog-pager__link {
  color: var(--ink);
  border-bottom: 1px solid var(--gold-warm);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.blog-pager__link:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.blog-pager__disabled {
  color: rgba(14, 27, 38, 0.35);
  cursor: default;
}
.blog-pager__meta {
  color: rgba(14, 27, 38, 0.55);
}
.blog-detail-hero--plain {
  min-height: 48vh !important;
}
.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.blog-detail-meta__cats {
  color: var(--gold-warm);
}
.blog-detail-body-wrap {
  padding: clamp(3rem, 8vw, 5rem) 0 6rem;
  background: var(--paper);
}
.blog-detail-lede {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(14, 27, 38, 0.78);
  margin: 0 0 2.5rem;
}
.blog-detail-content {
  margin-bottom: 2.5rem;
}
.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.blog-detail-tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--rule);
  color: rgba(14, 27, 38, 0.75);
}
.blog-detail-back {
  margin: 0;
}

/* Blog detail: main + sticky sidebar */
.blog-detail-shell {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-detail-layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
.blog-detail-main {
  min-width: 0;
  order: 1;
}
.blog-detail-main .blog-detail-content {
  max-width: 720px;
}
.blog-detail-sidebar {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .blog-detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: 2.5rem 3rem;
  }
  .blog-detail-sidebar {
    position: sticky;
    top: 7rem;
    order: 2;
  }
  .blog-detail-main {
    order: 1;
  }
}
.blog-sidebar-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.1rem 1.25rem;
}
.blog-sidebar-card__label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.45rem;
}
.blog-sidebar-card__value {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
}
.blog-sidebar-list {
  margin: 0;
  padding-left: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(14, 27, 38, 0.85);
  line-height: 1.55;
}
.blog-sidebar-card--author .blog-sidebar-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.blog-sidebar-author__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.blog-sidebar-author__name {
  font-family: var(--font-edit);
  font-size: 1.05rem;
  color: var(--ink);
}
.blog-sidebar-author__hint {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14, 27, 38, 0.45);
  margin-top: 0.2rem;
}
.blog-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blog-sidebar-nav a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.blog-sidebar-nav a:hover {
  color: var(--gold-deep);
  border-bottom-color: rgba(200, 149, 27, 0.45);
}
.blog-sidebar-seo {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(14, 27, 38, 0.68);
}

/* Related posts carousel (blog detail) */
.blog-related {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  max-width: 100%;
}
.blog-related__title {
  font-family: var(--font-edit);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.blog-related-swiper {
  position: relative;
  padding-bottom: 2.75rem;
  overflow: hidden;
}
.blog-related-swiper .swiper-slide {
  height: auto;
}
.blog-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease-out);
}
.blog-related-card:hover {
  border-color: rgba(200, 149, 27, 0.4);
  box-shadow: 0 16px 36px rgba(14, 27, 38, 0.08);
  transform: translateY(-2px);
}
.blog-related-card__media {
  aspect-ratio: 16 / 10;
  background: var(--ink);
  overflow: hidden;
}
.blog-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.blog-related-card:hover .blog-related-card__media img {
  transform: scale(1.04);
}
.blog-related-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 149, 27, 0.12), rgba(14, 27, 38, 0.35));
}
.blog-related-card__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.blog-related-card__cat {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.blog-related-card__title {
  font-family: var(--font-edit);
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
.blog-related-card__excerpt {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(14, 27, 38, 0.62);
}
.blog-related-swiper__nav {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 0.35rem;
  z-index: 3;
}
.blog-related-swiper__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.blog-related-swiper__btn:hover {
  background: var(--ink);
  color: var(--gold-warm);
  border-color: var(--ink);
}
.blog-related-swiper__btn i {
  width: 20px;
  height: 20px;
}
.blog-related-swiper__pagination {
  bottom: 0 !important;
}
.blog-related-swiper__pagination .swiper-pagination-bullet {
  background: var(--ink);
  opacity: 0.2;
}
.blog-related-swiper__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold-warm);
}
@media (max-width: 640px) {
  .blog-related-swiper__nav {
    position: static;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
  }
  .blog-related-swiper {
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .blog-post-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   INTERNAL PAGES — align About, Services, Contact
   with the editorial home system.
   ============================================ */
.page-hero {
  min-height: 74vh;
  padding: 12rem 4% 7rem !important;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(14,27,38,0.88), rgba(14,27,38,0.96)),
    var(--ink) !important;
  color: var(--paper) !important;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  background-image:
    linear-gradient(rgba(212,160,23,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.055) 1px, transparent 1px) !important;
  background-size: 96px 96px !important;
  mask-image: radial-gradient(90% 70% at 50% 45%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(90% 70% at 50% 45%, #000 35%, transparent 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 3rem;
  height: 1px;
  background: rgba(245,239,230,0.16);
}
.page-hero-title {
  max-width: 11ch;
  margin: 0 auto 1.8rem;
  font-family: var(--font-edit) !important;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 300 !important;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--paper) !important;
}
.page-hero-title em,
.page-hero-title .it {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-warm) !important;
}
.page-hero-title::after {
  content: '.';
  color: var(--gold-warm);
}
.page-hero-sub {
  max-width: 680px;
  margin: 0 auto 2.6rem;
  font-family: 'Inter', sans-serif !important;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245,239,230,0.72) !important;
}
.page-hero .cta-buttons {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.page-hero .btn-cta-gold {
  background: var(--gold-warm) !important;
  color: var(--ink) !important;
  border: 1px solid var(--gold-warm) !important;
}
.page-hero .btn-cta-gold:hover {
  background: transparent !important;
  color: var(--gold-warm) !important;
}
.page-hero .btn-cta-ghost {
  border: 1px solid rgba(245,239,230,0.4) !important;
  color: var(--paper) !important;
}
.page-hero .btn-cta-ghost:hover {
  background: var(--paper) !important;
  color: var(--ink) !important;
}

.sticky-cta-bar {
  top: 86px;
  padding: 0;
  gap: 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sticky-cta-link {
  padding: 1rem 1.6rem;
  border-right: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.sticky-cta-link:first-child { border-left: 1px solid var(--rule); }
.sticky-cta-link:hover {
  background: var(--ink);
  color: var(--paper);
}

.about-page-main,
.contact-main {
  background: var(--paper) !important;
}
.story-section,
.values-section,
.contact-why {
  background: var(--paper) !important;
  padding: 9rem 4% !important;
}
.story-section {
  max-width: 1160px;
  text-align: left;
}
.story-section .section-label,
.values-section .section-label,
.contact-why .section-label,
.contact-main .section-label {
  color: var(--ink) !important;
}
.story-text {
  max-width: 860px;
  margin-top: 2.4rem;
  font-family: 'Inter', sans-serif !important;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.story-text p:first-child::first-letter {
  font-family: var(--font-edit);
  font-size: 4rem;
  line-height: 0.82;
  float: left;
  margin: 0.12em 14px 0 0;
  color: var(--gold-warm);
}
.story-highlight {
  max-width: 760px;
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-warm);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  color: var(--ink);
}

.vm-section,
.team-section {
  background: var(--ink) !important;
  color: var(--paper);
  padding: 9rem 4% !important;
}
.vm-grid,
.values-grid {
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.vm-card,
.value-card {
  padding: 3rem;
  background: var(--paper) !important;
  border: none;
  color: var(--ink);
  transition: background 0.35s, color 0.35s;
}
.vm-card {
  background: rgba(245,239,230,0.04) !important;
  color: var(--paper);
  border-top: 1px solid rgba(245,239,230,0.12);
}
.vm-card h3,
.value-card h4,
.leader-name,
.info-block-title {
  font-family: var(--font-edit) !important;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
}
.vm-card h3 {
  color: var(--gold-warm);
}
.vm-card p,
.value-card p,
.leader-bio,
.why-list-content p,
.info-block-content,
.form-micro {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300;
  line-height: 1.7;
}
.values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1640px;
  margin-top: 4rem;
}
.value-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.value-card:hover {
  background: var(--ink) !important;
  color: var(--paper);
}
.value-card h4 {
  font-size: 1.35rem;
}
.value-card:hover h4,
.why-list-content h4 {
  color: var(--gold-warm);
}

.leadership-section {
  padding: 9rem 4% !important;
  background: var(--paper-soft) !important;
}
.leadership-grid {
  max-width: 1340px;
  align-items: start;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 3rem 0;
}
.leader-name {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--ink);
}
.leader-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
}
.leader-bio {
  border-left: 1px solid var(--rule);
  color: var(--ink-2);
}

.team-section .section-h2,
.team-section .section-label {
  color: var(--paper) !important;
}
.team-section .section-label::before {
  background: var(--gold-warm) !important;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 4rem auto 0;
  gap: 0;
  border-top: 1px solid rgba(245,239,230,0.12);
  border-left: 1px solid rgba(245,239,230,0.12);
}
.team-stat {
  min-width: 0;
  border: none;
  border-right: 1px solid rgba(245,239,230,0.12);
  border-bottom: 1px solid rgba(245,239,230,0.12);
}
.team-stat-num {
  font-family: var(--font-edit);
  font-weight: 300;
  color: var(--gold-warm);
}
.team-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(245,239,230,0.64);
}

.contact-grid {
  max-width: 1640px;
  padding: 9rem 4%;
  gap: 5rem;
}
.form-wrap {
  background: transparent;
  border-top: 1px solid var(--gold-warm);
  border-bottom: 1px solid var(--rule);
  padding: 3rem 0;
  box-shadow: none;
}
.form-title {
  font-family: var(--font-edit) !important;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.form-control {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.form-control:focus {
  border-color: var(--gold-warm);
}
.btn-submit {
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
}
.btn-submit:hover {
  background: var(--gold-warm);
  color: var(--ink);
}
.info-wrap {
  gap: 0;
  border-top: 1px solid var(--rule);
}
.info-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}
.info-block-title {
  color: var(--ink);
}
.info-block-title i,
.info-link i {
  color: var(--gold-warm);
}
.info-link {
  border-radius: 0;
  border-color: var(--rule);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.info-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.map-embed {
  filter: grayscale(80%) contrast(1.05);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.contact-why {
  background: var(--paper-soft) !important;
}
.why-list {
  max-width: 1180px;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.why-list-item {
  padding: 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.why-list-icon {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--gold-warm);
}
.why-list-content h4 {
  font-family: var(--font-edit) !important;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.018em;
}

@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-stats { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .page-hero {
    min-height: 68vh;
    padding: 9rem 6% 5rem !important;
  }
  .page-hero-title {
    width: 100%;
    max-width: calc(100vw - 2rem);
    font-size: clamp(1.75rem, 7.2vw, 2.25rem);
    line-height: 1;
    overflow-wrap: normal;
    text-wrap: balance;
  }
  .page-hero-sub {
    width: min(15rem, calc(100vw - 4rem));
    max-width: min(15rem, calc(100vw - 4rem));
    font-size: 0.94rem;
  }
  .sticky-cta-bar {
    top: 64px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .sticky-cta-link {
    white-space: nowrap;
  }
  .story-section,
  .values-section,
  .contact-why,
  .vm-section,
  .team-section,
  .leadership-section {
    padding: 6rem 6% !important;
  }
  .contact-grid {
    padding: 6rem 6%;
  }
  .values-grid,
  .why-list,
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .vm-card,
  .value-card,
  .why-list-item {
    padding: 2rem;
  }
  .service-card {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }
  .service-card .service-num,
  .service-card .service-title,
  .service-card .service-desc,
  .service-card .service-arrow {
    grid-column: 1 !important;
  }
  .service-title {
    font-size: clamp(1.75rem, 9vw, 2.35rem) !important;
    line-height: 1.05;
    overflow-wrap: break-word;
  }
  .service-desc {
    max-width: min(16rem, calc(100vw - 3rem));
  }
  .service-arrow {
    margin-top: 0.4rem;
  }
  .hero-stat-item {
    min-width: 0;
  }
  .hero-stat-label {
    max-width: none;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    overflow-wrap: anywhere;
  }
}

/* ===== PROPERTIES ARCHIVE ===== */
.property-archive {
  padding: clamp(2rem, 6vw, 4rem) 0 6rem;
  background: var(--paper);
  color: var(--ink);
}

/* Property Filters */
.property-filters {
  margin-bottom: 2.5rem;
}
.property-filters__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.property-filters__search {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
.property-filters__search-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.property-filters__search-icon {
  position: absolute;
  left: 1rem;
  width: 18px;
  height: 18px;
  color: rgba(14, 27, 38, 0.45);
  pointer-events: none;
}
.property-filters__search-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.property-filters__search-input:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}
.property-filters__search-input::placeholder {
  color: rgba(14, 27, 38, 0.4);
}
.property-filters__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.property-filters__toggle:hover,
.property-filters__toggle[aria-expanded="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.property-filters__toggle i {
  width: 16px;
  height: 16px;
}

/* Advanced Filters */
.property-filters__advanced {
  display: none;
  padding: 1.5rem;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
}
.property-filters__advanced.is-open {
  display: block;
}
.property-filters__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.property-filters__row:last-child {
  margin-bottom: 0;
}
.property-filters__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.property-filters__label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14, 27, 38, 0.65);
}
.property-filters__select,
.property-filters__input {
  padding: 0.65rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.3s ease;
}
.property-filters__select:focus,
.property-filters__input:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.property-filters__range {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.property-filters__range-sep {
  color: rgba(14, 27, 38, 0.4);
  font-size: 0.85rem;
}
.property-filters__input--number {
  flex: 1;
  min-width: 0;
}
.property-filters__group--checkbox {
  justify-content: flex-end;
  padding-bottom: 0.4rem;
}
.property-filters__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--ink);
}
.property-filters__checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.property-filters__checkbox-box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--rule);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.property-filters__checkbox-box::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold-deep);
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}
.property-filters__checkbox input:checked + .property-filters__checkbox-box {
  border-color: var(--gold-deep);
}
.property-filters__checkbox input:checked + .property-filters__checkbox-box::after {
  opacity: 1;
  transform: scale(1);
}
.property-filters__actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  margin-top: 1rem;
}
.property-filters__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-deep);
  border: 1px solid var(--gold-deep);
  color: var(--paper);
  cursor: pointer;
  transition: all 0.3s ease;
}
.property-filters__submit:hover {
  background: #b88a14;
  border-color: #b88a14;
}
.property-filters__submit i {
  width: 14px;
  height: 14px;
}
.property-filters__reset {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--rule);
  color: rgba(14, 27, 38, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}
.property-filters__reset:hover {
  background: var(--paper);
  border-color: var(--ink);
  color: var(--ink);
}
.property-filters__reset i {
  width: 14px;
  height: 14px;
}

/* Active Filters */
.property-filters__active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule-soft);
}
.property-filters__active-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14, 27, 38, 0.55);
}
.property-filters__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.property-filters__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
}
.property-filters__tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 1rem;
  line-height: 1;
  color: rgba(14, 27, 38, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.property-filters__tag-remove:hover {
  color: #c41e3a;
}
.property-filters__results {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(14, 27, 38, 0.65);
}

/* Property Grid */
.property-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.property-archive-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  color: rgba(14, 27, 38, 0.55);
}
.property-archive-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}
.property-archive-card:hover {
  border-color: rgba(200, 149, 27, 0.45);
  box-shadow: 0 22px 48px rgba(14, 27, 38, 0.1);
  transform: translateY(-3px);
}
.property-archive-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  overflow: hidden;
}
.property-archive-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.property-archive-card:hover .property-archive-card__media img {
  transform: scale(1.04);
}
.property-archive-card__type {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  background: var(--gold-deep);
  color: var(--paper);
}
.property-archive-card__featured {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  background: rgba(14, 27, 38, 0.88);
  color: var(--gold-warm);
  border: 1px solid rgba(212, 160, 23, 0.35);
}
.property-archive-card__featured i {
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.property-archive-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.property-archive-card__price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.property-archive-card__price {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-deep);
}
.property-archive-card__title {
  font-family: var(--font-edit);
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.property-archive-card__location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(14, 27, 38, 0.6);
}
.property-archive-card__location i {
  width: 14px;
  height: 14px;
  color: var(--gold-deep);
}
.property-archive-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.75rem;
  margin-top: auto;
  border-top: 1px solid var(--rule-soft);
}
.property-archive-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(14, 27, 38, 0.65);
}
.property-archive-card__meta-item i {
  width: 14px;
  height: 14px;
  color: var(--gold-deep);
}

/* Responsive */
@media (max-width: 1024px) {
  .property-filters__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .property-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .property-filters__search {
    flex-wrap: wrap;
  }
  .property-filters__toggle {
    flex: 1;
    justify-content: center;
  }
  .property-filters__row {
    grid-template-columns: 1fr;
  }
  .property-archive-grid {
    grid-template-columns: 1fr;
  }
  .property-filters__actions {
    flex-direction: column;
  }
}
