:root {
  --ink: #0a0a0a;
  --ink-2: #151515;
  --ink-3: #1f1f1f;
  --bone: #f5f3ef;
  --bone-2: #ebe7e0;
  --concrete: #e6e2db;
  --concrete-2: #cfc9bf;
  --brass: #c9a961;
  --brass-hot: #d9b868;
  --rule: rgba(10, 10, 10, 0.12);
  --rule-dark: rgba(245, 243, 239, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bone); color: var(--ink); overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.display { font-family: 'Archivo Black', 'Archivo', sans-serif; font-weight: 900; letter-spacing: -0.02em; line-height: 0.92; text-transform: uppercase; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-variant-numeric: tabular-nums; }

.concrete-bg {
  background-color: var(--concrete);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(10,10,10,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(10,10,10,0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(10,10,10,0.02) 0%, transparent 60%);
  position: relative;
}
.concrete-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.concrete-bg > * { position: relative; z-index: 1; }

.ink-bg {
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(201,169,97,0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(245,243,239,0.03) 0%, transparent 50%);
  position: relative;
}
.ink-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
}
.ink-bg > * { position: relative; z-index: 1; }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

.rule { border: none; border-top: 1px solid var(--rule); }
.rule-dark { border: none; border-top: 1px solid var(--rule-dark); }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  border-radius: 0;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn:active { transform: translate(0, 0); }

.btn-primary { background: var(--brass); color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.btn-primary:hover { box-shadow: 8px 8px 0 var(--ink); background: var(--brass-hot); }

.btn-ink { background: var(--ink); color: var(--bone); box-shadow: 6px 6px 0 var(--brass); }
.btn-ink:hover { box-shadow: 8px 8px 0 var(--brass); }

.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }

.btn-ghost-light { background: transparent; color: var(--bone); border: 1.5px solid var(--bone); }
.btn-ghost-light:hover { background: var(--bone); color: var(--ink); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  background: transparent;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.6);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 10px 0;
  font-size: 17px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brass); }
.field input::placeholder, .field textarea::placeholder { color: rgba(10,10,10,0.3); }
.field.error input, .field.error select, .field.error textarea { border-bottom-color: #c23b22; }
.field .err-msg { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #c23b22; letter-spacing: 0.08em; text-transform: uppercase; }

@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.rise { animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track { display: inline-flex; gap: 48px; white-space: nowrap; animation: marquee 36s linear infinite; will-change: transform; }

.ph { position: relative; overflow: hidden; background: var(--concrete); display: flex; align-items: flex-end; justify-content: flex-start; }

.ph > .ph-label {
  position: relative; z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone); padding: 14px;
  display: flex; justify-content: space-between; align-items: flex-end; width: 100%;
}
.ph.dark { background: var(--ink-3); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.94);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: fade 0.25s ease both;
}
.lightbox.hidden { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: transparent;
  border: 1.5px solid var(--bone);
  color: var(--bone);
  width: 48px; height: 48px;
  font-family: 'JetBrains Mono', monospace;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all 0.15s ease;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }

.grid { display: grid; }
.flex { display: flex; }
.stack { display: flex; flex-direction: column; }

/* === Header === */
header.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 10; padding: 24px 48px; }
header.site-header .inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.wordmark { font-size: 26px; color: var(--bone); letter-spacing: -0.04em; display: flex; align-items: baseline; gap: 0; }
.wordmark .slash { color: var(--brass); }
.header-right { display: flex; align-items: center; gap: 36px; }
header.site-header nav.main-nav { display: flex; align-items: center; }
header.site-header nav.main-nav .main-nav-list { display: flex !important; flex-direction: row !important; gap: 36px; align-items: center; list-style: none !important; margin: 0 !important; padding: 0 !important; }
header.site-header nav.main-nav .main-nav-list li { display: inline-flex !important; align-items: center; list-style: none !important; margin: 0 !important; padding: 0 !important; }
header.site-header nav.main-nav .main-nav-list li a { color: var(--bone) !important; text-decoration: none !important; font-size: 12px !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; font-family: 'JetBrains Mono', monospace !important; opacity: 0.85; background: none !important; padding: 0 !important; border: none !important; }
header.site-header nav.main-nav .main-nav-list li a:hover { opacity: 1; }

/* === Hero === */
.hero { min-height: 100vh; color: var(--bone); position: relative; }
.hero-inner { padding-top: 140px; padding-bottom: 60px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; min-height: calc(100vh - 200px); }
.hero h1 { font-size: clamp(56px, 9vw, 144px); color: var(--bone); }
.hero p.lead { font-size: 20px; max-width: 520px; line-height: 1.5; opacity: 0.82; }
.hero-img { height: 520px; width: 100%; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-img { height: 320px; } }

/* === Stats strip === */
.stats-strip { position: relative; background: var(--bone); color: var(--ink); border-top: 1px solid var(--rule); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-cell { padding: 24px 32px; display: flex; flex-direction: column; gap: 6px; border-left: 1px solid var(--rule); }
.stat-cell:first-child { border-left: none; }
.stat-val { font-size: 40px; }
.stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Marquee === */
.marquee-wrap { background: var(--ink); color: var(--bone); padding: 18px 0; border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); overflow: hidden; }
.marquee-item { display: inline-flex; align-items: center; gap: 48px; font-size: 12px; letter-spacing: 0.14em; }
.marquee-item .dot { color: var(--brass); }

/* === Services === */
.services-section { background: var(--bone); padding: 120px 0; border-top: 1px solid var(--rule); }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 80px; align-items: end; }
.section-head h2 { font-size: clamp(48px, 7vw, 104px); }
.section-head p { font-size: 18px; line-height: 1.55; max-width: 480px; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }

.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 2fr 280px 60px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-row + .service-row { border-top: none; }
.service-row:hover { background: var(--ink); color: var(--bone); padding-left: 20px; padding-right: 20px; }
.service-row .idx { font-size: 14px; color: rgba(10,10,10,0.5); }
.service-row:hover .idx { color: var(--brass); }
.service-row h3 { font-size: 36px; }
.service-row .blurb { font-size: 16px; line-height: 1.5; opacity: 0.85; }
.service-row .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-row .tags .tag { opacity: 0.8; }
.service-row .arrow { font-size: 20px; text-align: right; color: var(--ink); }
.service-row:hover .arrow { color: var(--brass); }
@media (max-width: 900px) { .service-row { grid-template-columns: 1fr; gap: 12px; } .service-row .arrow { display: none; } }

/* === Gallery === */
.gallery-section { padding: 120px 0; color: var(--bone); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--rule-dark); }
.filters .filter-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.5; margin-right: 12px; align-self: center; }
.filter-btn {
  background: transparent; color: var(--bone);
  border: 1px solid rgba(245,243,239,0.2);
  padding: 8px 14px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all 0.15s ease;
  font-family: 'JetBrains Mono', monospace;
}
.filter-btn.active { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.filter-btn .count { margin-left: 6px; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; gap: 16px; }
.gallery-item {
  border: none; padding: 0; cursor: pointer; transition: transform 0.3s ease;
  height: 260px;
}
.gallery-item:hover { transform: scale(0.98); }
.gallery-item.size-lg { grid-column: span 2; grid-row: span 2; height: 520px; }
.gallery-item .ph-label { align-items: flex-end; }
.gallery-item .g-title { font-size: 20px; letter-spacing: -0.02em; color: var(--bone); }
.gallery-item.size-lg .g-title { font-size: 28px; }
.gallery-item .g-meta-top { font-size: 10px; opacity: 0.65; margin-bottom: 4px; }
.gallery-item .g-meta-bottom { font-size: 10px; opacity: 0.75; margin-top: 6px; text-transform: uppercase; }
.gallery-item.hide { display: none; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item.size-lg { grid-column: span 2; } }

.lightbox-meta { color: var(--bone); display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto; gap: 32px; align-items: end; padding-bottom: 20px; border-bottom: 1px solid var(--rule-dark); }
.lightbox-meta h3 { font-size: 40px; }
.meta-cell-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; margin-bottom: 4px; }
.meta-cell-value { font-size: 15px; }
@media (max-width: 900px) { .lightbox-meta { grid-template-columns: 1fr 1fr; } }

/* === Process === */
.process-section { padding: 120px 0; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--ink); border: 1px solid var(--ink); }
.process-step {
  background: var(--bone); color: var(--ink);
  padding: 40px 28px; cursor: pointer; transition: all 0.25s ease;
  min-height: 320px; display: flex; flex-direction: column; justify-content: space-between;
}
.process-step.active { background: var(--ink); color: var(--bone); }
.process-step .step-num { font-size: 56px; color: var(--ink); margin-bottom: 12px; }
.process-step.active .step-num { color: var(--brass); }
.process-step .step-detail { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin-bottom: 16px; }
.process-step h3 { font-size: 22px; margin-bottom: 12px; }
.process-step p { font-size: 14px; line-height: 1.5; opacity: 0.7; }
.process-step.active p { opacity: 0.85; }
.process-step .step-arrow { font-size: 14px; margin-top: 24px; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } .process-step { min-height: auto; } }

/* === Quote Form Modal === */
.quote-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(10,10,10,0.85); display: flex; align-items: flex-start; justify-content: center; padding: 40px; overflow: auto; }
.quote-overlay.hidden { display: none; }
.quote-modal { background: var(--bone); max-width: 960px; width: 100%; box-shadow: 16px 16px 0 var(--brass); }
.quote-header { background: var(--ink); color: var(--bone); padding: 24px 40px; display: flex; justify-content: space-between; align-items: center; }
.quote-header .q-tag { font-size: 11px; letter-spacing: 0.14em; color: var(--brass); margin-bottom: 4px; }
.quote-header .q-title { font-size: 22px; }
.quote-close { background: transparent; border: 1.5px solid var(--bone); color: var(--bone); width: 44px; height: 44px; cursor: pointer; font-size: 16px; }
.stepper { display: flex; border-bottom: 1px solid var(--rule); }
.stepper-item { flex: 1; padding: 18px 24px; border-left: 1px solid var(--rule); display: flex; align-items: center; gap: 12px; opacity: 0.35; font-size: 11px; letter-spacing: 0.12em; }
.stepper-item:first-child { border-left: none; }
.stepper-item.current { background: var(--brass); opacity: 1; }
.stepper-item.done { opacity: 1; }
.quote-body { padding: 48px 40px; min-height: 420px; }
.quote-body .q-step { display: none; }
.quote-body .q-step.active { display: block; }
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: transparent; color: var(--ink); border: 1.5px solid rgba(10,10,10,0.25);
  padding: 10px 16px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all 0.15s ease; font-family: 'JetBrains Mono', monospace;
}
.chip.selected { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.field-block { margin-bottom: 36px; }
.field-block-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(10,10,10,0.6); margin-bottom: 14px; }
.quote-footer { border-top: 1px solid var(--rule); padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
.q-back { background: transparent; border: none; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; color: var(--ink); padding: 8px 0; font-family: 'JetBrains Mono', monospace; }
.summary-box { grid-column: span 2; background: var(--bone-2); padding: 20px; border-left: 3px solid var(--brass); margin-top: 12px; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; font-size: 14px; }
.summary-grid strong { display: block; font-size: 11px; letter-spacing: 0.12em; opacity: 0.6; }
.q-success { text-align: center; padding: 40px 0; }
.q-success .check { font-size: 120px; color: var(--brass); margin-bottom: 20px; }
.q-success h3 { font-size: 56px; margin-bottom: 20px; }
.q-success p { font-size: 18px; max-width: 520px; margin: 0 auto 32px; line-height: 1.55; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } .summary-box { grid-column: span 1; } }

/* === Footer === */
.footer-section { padding: 120px 0 60px; color: var(--bone); border-top: 1px solid var(--rule-dark); }
.footer-cta-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; padding-bottom: 80px; border-bottom: 1px solid var(--rule-dark); margin-bottom: 48px; }
.footer-cta-grid h2 { font-size: clamp(48px, 9vw, 140px); }
.footer-cta-grid .accent { color: var(--brass); }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 60px; }
.footer-col-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; }
.footer-section .footer-menu { list-style: none !important; margin: 0 !important; padding: 0 !important; display: flex !important; flex-direction: column !important; gap: 8px; }
.footer-section .footer-menu li { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.footer-section .footer-menu li a { font-size: 14px !important; opacity: 0.75; color: var(--bone) !important; text-decoration: none !important; display: block !important; background: none !important; padding: 0 !important; border: none !important; }
.footer-section .footer-menu li a:hover { opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--rule-dark); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.5; }
@media (max-width: 900px) { .footer-cta-grid, .footer-cols { grid-template-columns: 1fr; } }

/* === Services Page === */
.services-hero { min-height: 60vh; color: var(--bone); position: relative; padding-top: 140px; padding-bottom: 60px; }
.services-hero .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; min-height: 40vh; }
.services-hero h1 { font-size: clamp(48px, 8vw, 120px); color: var(--bone); }
.services-hero .lead { font-size: 18px; line-height: 1.6; opacity: 0.8; max-width: 500px; }
.services-hero .hero-stat { margin-top: 24px; display: flex; gap: 32px; }
.services-hero .hero-stat .num { font-size: 32px; color: var(--brass); font-family: 'Archivo Black', sans-serif; font-weight: 900; line-height: 1; }
.services-hero .hero-stat .label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }
@media (max-width: 900px) { .services-hero .hero-content { grid-template-columns: 1fr; gap: 32px; } .services-hero { min-height: 50vh; padding-top: 100px; } }

/* Jump Nav */
.service-jumpnav { position: sticky; top: 0; z-index: 40; background: var(--bone); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.service-jumpnav .wrap { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.service-jumpnav .wrap::-webkit-scrollbar { display: none; }
.jump-link { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 16px 22px; color: var(--ink); text-decoration: none; white-space: nowrap; border-right: 1px solid var(--rule); opacity: 0.6; transition: all 0.15s ease; flex-shrink: 0; }
.jump-link:hover, .jump-link.active { opacity: 1; background: var(--ink); color: var(--bone); }
.service-detail-section { scroll-margin-top: 60px; }

/* Service Detail Sections */
.service-detail-section { padding: 80px 0; background: var(--bone); }
.service-detail-section:nth-child(even) { background: var(--bone-2); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-grid .service-img { height: 420px; width: 100%; }
.service-detail-grid .service-content { display: flex; flex-direction: column; gap: 24px; }
.service-detail-grid .service-content .number { font-size: 48px; color: var(--brass); font-family: 'Archivo Black', sans-serif; font-weight: 900; line-height: 1; }
.service-detail-grid .service-content h2 { font-size: clamp(32px, 4vw, 56px); }
.service-detail-grid .service-content p { font-size: 17px; line-height: 1.6; opacity: 0.8; max-width: 480px; }
.service-detail-grid .service-content .feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 8px; list-style: none !important; padding: 0 !important; }
.service-detail-grid .service-content .feature-list li { font-size: 14px; display: flex !important; align-items: center; gap: 8px; list-style: none !important; }
.service-detail-grid .service-content .feature-list li::before { content: '◆'; color: var(--brass); font-size: 8px; }
.service-detail-grid .service-content .price-tag { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.08em; padding: 12px 20px; background: var(--ink); color: var(--bone); display: inline-block; margin-top: 4px; }
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr !important; direction: ltr !important; gap: 32px; } .service-detail-grid .service-img { height: 280px; } .service-detail-grid .service-content .feature-list { grid-template-columns: 1fr; } }

/* Process Mini */
.process-mini-section { padding: 80px 0; background: var(--ink); color: var(--bone); }
.process-mini-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; border: 1px solid rgba(245,243,239,0.08); }
.process-mini-step { background: rgba(245,243,239,0.04); padding: 32px 20px; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(245,243,239,0.06); cursor: pointer; transition: background 0.25s ease; }
.process-mini-step:last-child { border-right: none; }
.process-mini-step.active { background: rgba(201,169,97,0.12); }
.process-mini-step .num { font-size: 40px; color: var(--brass); font-family: 'Archivo Black', sans-serif; font-weight: 900; line-height: 1; }
.process-mini-step h4 { font-size: 16px; margin: 12px 0 6px; color: var(--bone); }
.process-mini-step p { font-size: 13px; opacity: 0.7; line-height: 1.5; transition: opacity 0.25s ease; color: var(--bone); }
.process-mini-step.active p { opacity: 0.95; }
@media (max-width: 900px) { .process-mini-grid { grid-template-columns: 1fr 1fr; } .process-mini-step { border-right: none; border-bottom: 1px solid rgba(245,243,239,0.06); min-height: 140px; } }
@media (max-width: 500px) { .process-mini-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--bone); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--rule); padding-bottom: 20px; }
.faq-item .q { font-weight: 600; font-size: 17px; margin-bottom: 6px; display: flex; align-items: flex-start; gap: 12px; }
.faq-item .q .marker { color: var(--brass); font-size: 14px; flex-shrink: 0; }
.faq-item .a { font-size: 15px; opacity: 0.75; line-height: 1.6; }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; gap: 24px; } }

/* CTA Banner */
.cta-banner { padding: 80px 0; background: var(--brass); color: var(--ink); }
.cta-banner .cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta-banner h2 { font-size: clamp(40px, 6vw, 80px); }
.cta-banner p { font-size: 18px; opacity: 0.8; max-width: 440px; margin-top: 12px; }
.cta-banner .cta-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
@media (max-width: 800px) { .cta-banner .cta-inner { grid-template-columns: 1fr; text-align: center; } .cta-banner p { margin: 12px auto 0; } .cta-banner .cta-actions { justify-content: center; } }

/* === Projects Page === */
.projects-hero { padding-top: 140px; padding-bottom: 60px; color: var(--bone); position: relative; }
.projects-hero .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.projects-hero h1 { font-size: clamp(48px, 8vw, 120px); color: var(--bone); }
.projects-hero .lead { font-size: 18px; line-height: 1.6; opacity: 0.8; max-width: 480px; }
.projects-hero .hero-stats { display: flex; gap: 40px; margin-top: 24px; }
.projects-hero .hero-stats .stat-item .num { font-size: 32px; color: var(--brass); font-family: 'Archivo Black', sans-serif; font-weight: 900; line-height: 1; }
.projects-hero .hero-stats .stat-item .label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }
.projects-hero .hero-image { height: 380px; width: 100%; }
@media (max-width: 900px) { .projects-hero .hero-content { grid-template-columns: 1fr; gap: 32px; } .projects-hero { padding-top: 120px; } }

/* Projects Filter Bar */
.proj-filter-bar { padding: 20px 0; background: rgba(245,243,239,0.96); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); }
.proj-filter-inner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.proj-filter-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.5; margin-right: 8px; }
.proj-filter-btn { background: transparent; color: var(--ink); border: 1px solid rgba(10,10,10,0.18); padding: 8px 16px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.15s ease; font-family: 'JetBrains Mono', monospace; border-radius: 0; }
.proj-filter-btn:hover { border-color: var(--ink); }
.proj-filter-btn.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.proj-filter-btn .count { margin-left: 4px; opacity: 0.55; font-size: 10px; }
.proj-filter-btn.active .count { opacity: 0.8; color: var(--brass); }
@media (max-width: 600px) { .proj-filter-bar { padding: 12px 0; } .proj-filter-btn { padding: 6px 12px; font-size: 10px; } }

/* Projects Grid */
.projects-grid-section { padding: 48px 0 80px; background: var(--bone); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { background: var(--bone-2); border: 1px solid var(--rule); transition: all 0.3s ease; cursor: pointer; overflow: hidden; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,10,10,0.08); }
.project-card .card-image { height: 260px; width: 100%; position: relative; }
.project-card .card-image .ph-label { align-items: flex-start; padding: 16px; }
.project-card .card-image .ph-badge { position: absolute; top: 12px; right: 12px; z-index: 3; }
.project-card .card-body { padding: 20px 24px 24px; }
.project-card .card-meta { display: flex; gap: 16px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; font-family: 'JetBrains Mono', monospace; margin-bottom: 8px; }
.project-card .card-meta .dot { color: var(--brass); }
.project-card .card-body h3 { font-size: 22px; margin-bottom: 6px; }
.project-card .card-body .card-loc { font-size: 14px; opacity: 0.6; }
.project-card .card-body .card-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.project-card .card-body .card-tags .tag { font-size: 9px; padding: 4px 10px; border-color: rgba(10,10,10,0.15); }
.project-card .card-footer { padding: 16px 24px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-family: 'JetBrains Mono', monospace; }
.project-card .card-footer .budget { opacity: 0.6; }
.project-card .card-footer .arrow { color: var(--brass); font-size: 16px; }
.project-card.hide { display: none; }
@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } .project-card .card-image { height: 200px; } }

/* Featured Section */
.featured-section { padding: 80px 0; background: var(--ink); color: var(--bone); }
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.featured-image { height: 480px; width: 100%; }
.featured-content .eyebrow { color: var(--brass); margin-bottom: 8px; }
.featured-content h2 { font-size: clamp(36px, 5vw, 64px); margin: 12px 0; }
.featured-content p { font-size: 17px; line-height: 1.6; opacity: 0.8; max-width: 460px; }
.featured-details { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin: 24px 0 32px; }
.featured-details .detail-item .label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; }
.featured-details .detail-item .value { font-size: 16px; margin-top: 2px; }
@media (max-width: 900px) { .featured-inner { grid-template-columns: 1fr; gap: 32px; } .featured-image { height: 320px; } .featured-details { grid-template-columns: 1fr 1fr; } }

/* Testimonials */
.testimonials-section { padding: 80px 0; background: var(--bone-2); }
.testimonials-section .section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.testimonials-section .section-head h2 { font-size: clamp(36px, 5vw, 72px); }
.testimonials-section .section-head p { font-size: 17px; opacity: 0.7; max-width: 440px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bone); padding: 32px 28px; border: 1px solid var(--rule); }
.testimonial-card .stars { color: var(--brass); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 16px; line-height: 1.6; font-style: italic; opacity: 0.85; border: none; padding: 0; margin: 0; }
.testimonial-card .attribution { margin-top: 16px; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.testimonial-card .attribution .name { font-weight: 600; }
.testimonial-card .attribution .role { opacity: 0.5; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
@media (max-width: 900px) { .testimonials-section .section-head { grid-template-columns: 1fr; } .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* === Process Page === */
.process-hero { padding-top: 140px; padding-bottom: 60px; color: var(--bone); position: relative; }
.process-hero .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.process-hero h1 { font-size: clamp(48px, 8vw, 120px); color: var(--bone); }
.process-hero .lead { font-size: 18px; line-height: 1.6; opacity: 0.8; max-width: 480px; }
.process-hero .hero-stats { display: flex; gap: 40px; margin-top: 24px; }
.process-hero .hero-stats .stat-item .num { font-size: 32px; color: var(--brass); font-family: 'Archivo Black', sans-serif; font-weight: 900; line-height: 1; }
.process-hero .hero-stats .stat-item .label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }
.process-hero .hero-image { height: 380px; width: 100%; }
@media (max-width: 900px) { .process-hero .hero-content { grid-template-columns: 1fr; gap: 32px; } .process-hero { padding-top: 120px; } }

/* Timeline */
.timeline-section { padding: 80px 0; background: var(--bone); }
.timeline-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.timeline-head h2 { font-size: clamp(36px, 5vw, 72px); }
.timeline-head p { font-size: 17px; opacity: 0.7; max-width: 440px; }
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--brass); }
.timeline-step { position: relative; padding: 0 0 48px 40px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step .step-dot { position: absolute; left: -32px; top: 4px; width: 16px; height: 16px; background: var(--brass); border: 3px solid var(--bone); border-radius: 50%; box-shadow: 0 0 0 3px var(--brass); }
.timeline-step .step-number { font-size: 48px; color: var(--brass); font-family: 'Archivo Black', sans-serif; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.timeline-step .step-duration { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; }
.timeline-step .step-label { font-size: 28px; margin-bottom: 8px; }
.timeline-step .step-desc { font-size: 16px; line-height: 1.6; opacity: 0.75; max-width: 520px; }
.timeline-step .step-details { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 12px; max-width: 560px; }
.timeline-step .step-details .detail-item { background: var(--bone-2); padding: 12px 16px; font-size: 12px; }
.timeline-step .step-details .detail-item .label { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; font-family: 'JetBrains Mono', monospace; display: block; margin-bottom: 2px; }
@media (max-width: 768px) { .timeline-head { grid-template-columns: 1fr; } .timeline-step .step-details { grid-template-columns: 1fr 1fr; } }

/* What to Expect */
.expect-section { padding: 80px 0; background: var(--bone-2); }
.expect-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.expect-head h2 { font-size: clamp(36px, 5vw, 72px); }
.expect-head p { font-size: 17px; opacity: 0.7; max-width: 440px; }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.expect-card { background: var(--bone); padding: 32px 28px; border: 1px solid var(--rule); transition: all 0.3s ease; }
.expect-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,10,10,0.08); }
.expect-card .icon { font-size: 32px; margin-bottom: 12px; }
.expect-card h4 { font-size: 20px; margin-bottom: 6px; }
.expect-card p { font-size: 15px; opacity: 0.75; line-height: 1.6; }
@media (max-width: 900px) { .expect-head { grid-template-columns: 1fr; } .expect-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .expect-grid { grid-template-columns: 1fr; } }

/* Guarantee */
.guarantee-section { padding: 80px 0; }
.guarantee-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.guarantee-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 16px; list-style: none !important; padding: 0 !important; }
.guarantee-list li { list-style: none !important; font-size: 14px; display: flex !important; align-items: center; gap: 10px; }
.guarantee-list li::before { content: '◆'; color: var(--brass); font-size: 8px; }
@media (max-width: 900px) { .guarantee-inner { grid-template-columns: 1fr; gap: 32px; } .guarantee-list { grid-template-columns: 1fr; } }

/* Pricing */
.pricing-section { padding: 80px 0; background: var(--bone); }
.pricing-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.pricing-head h2 { font-size: clamp(36px, 5vw, 72px); }
.pricing-head p { font-size: 17px; opacity: 0.7; max-width: 440px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pricing-card { background: var(--bone-2); padding: 32px 24px; border: 1px solid var(--rule); text-align: center; transition: all 0.3s ease; position: relative; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(10,10,10,0.06); }
.pricing-card .pricing-type { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.5; }
.pricing-card .pricing-price { font-size: 32px; font-weight: 700; margin: 8px 0 4px; }
.pricing-card .pricing-price small { font-size: 16px; font-weight: 400; opacity: 0.5; }
.pricing-card .pricing-desc { font-size: 14px; opacity: 0.7; margin-bottom: 12px; }
.pricing-card .pricing-features { text-align: left; font-size: 13px; line-height: 2; opacity: 0.8; list-style: none !important; padding: 0 !important; }
.pricing-card .pricing-features li { list-style: none !important; display: flex !important; align-items: center; gap: 8px; }
.pricing-card .pricing-features li::before { content: '◆'; color: var(--brass); font-size: 7px; }
.pricing-card.featured { background: var(--ink); color: var(--bone); border-color: var(--brass); }
.pricing-card.featured .pricing-price { color: var(--brass); }
.pricing-card.featured .pricing-features li::before { color: var(--brass); }
.featured-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--brass); color: var(--ink); padding: 4px 16px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; white-space: nowrap; }
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-head { grid-template-columns: 1fr; } }

/* Process FAQ heading area */
.faq-page-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.faq-page-head h2 { font-size: clamp(36px, 5vw, 72px); }
.faq-page-head p { font-size: 17px; opacity: 0.7; max-width: 440px; }
@media (max-width: 800px) { .faq-page-head { grid-template-columns: 1fr; } }

/* === Contact Page === */
.contact-hero { padding-top: 140px; padding-bottom: 60px; color: var(--bone); position: relative; }
.contact-hero .hero-content { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: end; }
.contact-hero h1 { font-size: clamp(48px, 8vw, 120px); color: var(--bone); }
.contact-hero .lead { font-size: 18px; line-height: 1.6; opacity: 0.8; max-width: 480px; }
.contact-hero .hero-stats { display: flex; gap: 40px; margin-top: 24px; flex-wrap: wrap; }
.contact-hero .hero-stats .stat-item .num { font-size: 32px; color: var(--brass); font-family: 'Archivo Black', sans-serif; font-weight: 900; line-height: 1; }
.contact-hero .hero-stats .stat-item .label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }
.contact-hero .hero-image { height: 360px; width: 100%; }
@media (max-width: 900px) { .contact-hero .hero-content { grid-template-columns: 1fr; gap: 32px; } .contact-hero { padding-top: 120px; } }

/* Contact Main */
.contact-main-section { padding: 80px 0; background: var(--bone); }
.contact-main-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.contact-form-panel { background: var(--bone-2); padding: 48px; border: 1px solid var(--rule); }
.contact-form-panel .panel-title { font-size: 32px; margin-bottom: 8px; }
.contact-form-panel .panel-sub { font-size: 15px; opacity: 0.7; margin-bottom: 32px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.contact-form-row.full { grid-template-columns: 1fr; }
.contact-success { text-align: center; padding: 40px 0; display: none; }
.contact-success.show { display: block; }
.contact-success .check { font-size: 80px; color: var(--brass); margin-bottom: 16px; font-family: 'Archivo Black', sans-serif; }
.contact-success h3 { font-size: 32px; margin-bottom: 12px; }
.contact-success p { font-size: 15px; opacity: 0.75; max-width: 420px; margin: 0 auto; line-height: 1.6; }
@media (max-width: 900px) { .contact-main-grid { grid-template-columns: 1fr; } .contact-form-panel { padding: 32px 24px; } .contact-form-row { grid-template-columns: 1fr; gap: 20px; } }

/* Info Sidebar */
.info-sidebar { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--ink); color: var(--bone); padding: 28px; }
.info-card.brass-card { background: var(--brass); color: var(--ink); }
.info-card .info-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin-bottom: 8px; }
.info-card.brass-card .info-label { opacity: 0.7; }
.info-card .info-value { margin-bottom: 4px; }
.info-card .info-value a { color: inherit; text-decoration: none; }
.info-card .info-value a:hover { text-decoration: underline; }
.info-card .info-sub { font-size: 13px; opacity: 0.6; }
.info-card.brass-card .info-sub { opacity: 0.75; }
.hours-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(245,243,239,0.08); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 8px 0; }
.hours-table td:first-child { opacity: 0.6; }
.hours-table td:last-child { text-align: right; font-family: 'JetBrains Mono', monospace; }
.areas-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.areas-list .tag { font-size: 9px; padding: 4px 9px; border-color: rgba(245,243,239,0.25); color: var(--bone); }

/* Map */
.map-section { padding: 0 0 80px; background: var(--bone); }
.map-frame { height: 420px; width: 100%; }
.map-frame .ph-label { align-items: center; justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
.map-iframe { height: 420px; width: 100%; border: none; display: block; }

/* === New Builds Page === */
.nb-hero { padding-top: 140px; padding-bottom: 60px; color: var(--bone); position: relative; }
.nb-hero .hero-content { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: end; }
.nb-hero h1 { font-size: clamp(48px, 8vw, 120px); color: var(--bone); }
.nb-hero .lead { font-size: 18px; line-height: 1.6; opacity: 0.8; max-width: 480px; }
.nb-hero .hero-stats { display: flex; gap: 40px; margin-top: 24px; }
.nb-hero .hero-stats .stat-item .num { font-size: 32px; color: var(--brass); font-family: 'Archivo Black', sans-serif; font-weight: 900; line-height: 1; }
.nb-hero .hero-stats .stat-item .label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }
.nb-hero .hero-image { height: 420px; width: 100%; position: relative; }
.nb-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 12px; }
.nb-hero-actions .tag-light { background: rgba(245,243,239,0.1); border-color: rgba(245,243,239,0.2); color: var(--bone); }

/* Build Types */
.nb-types-section { padding: 80px 0; }
.nb-types-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.nb-types-head h2 { font-size: clamp(36px, 5vw, 72px); }
.nb-types-head p { font-size: 17px; opacity: 0.7; max-width: 440px; }
.nb-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nb-type-card { background: var(--bone); border: 1px solid var(--rule); overflow: hidden; }
.nb-type-card .card-img { height: 240px; width: 100%; position: relative; }
.nb-type-card .card-body { padding: 28px; }
.nb-type-card .card-body h3 { font-size: 24px; margin-bottom: 10px; line-height: 1.1; }
.nb-type-card .card-body p { font-size: 15px; opacity: 0.75; line-height: 1.6; }
.nb-type-card .card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }

/* Design & Construct */
.nb-dc-section { padding: 80px 0; }
.nb-dc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.nb-dc-content h2 { font-size: clamp(32px, 4vw, 60px); margin: 12px 0 20px; }
.nb-dc-content p { font-size: 17px; line-height: 1.6; opacity: 0.8; }
.nb-dc-benefits { list-style: none !important; padding: 0 !important; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.nb-dc-benefits li { list-style: none !important; font-size: 15px; display: flex !important; align-items: center; gap: 10px; }
.nb-dc-benefits li::before { content: '◆'; color: var(--brass); font-size: 8px; flex-shrink: 0; }
.nb-dc-img { height: 440px; width: 100%; position: relative; }

/* Inclusions */
.nb-incl-section { padding: 80px 0; background: var(--bone); }
.nb-incl-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.nb-incl-head h2 { font-size: clamp(36px, 5vw, 72px); }
.nb-incl-head p { font-size: 17px; opacity: 0.7; max-width: 440px; }
.nb-incl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nb-incl-group { background: var(--bone-2); padding: 28px; border: 1px solid var(--rule); }
.nb-incl-group .incl-cat { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; }
.nb-incl-group ul { list-style: none !important; padding: 0 !important; display: flex; flex-direction: column; gap: 8px; }
.nb-incl-group ul li { font-size: 14px; display: flex !important; align-items: center; gap: 8px; list-style: none !important; }
.nb-incl-group ul li::before { content: '◆'; color: var(--brass); font-size: 7px; flex-shrink: 0; }

/* Gallery */
.nb-gallery-section { padding: 80px 0; background: var(--bone-2); }
.nb-gallery-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.nb-gallery-head h2 { font-size: clamp(36px, 5vw, 72px); }
.nb-gallery-head p { font-size: 17px; opacity: 0.7; max-width: 440px; }
.nb-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nb-gallery-card { background: var(--bone); border: 1px solid var(--rule); overflow: hidden; }
.nb-gallery-card .card-img { height: 300px; width: 100%; position: relative; }
.nb-gallery-card .card-body { padding: 20px 24px 24px; border-top: 1px solid var(--rule); }
.nb-gallery-card .card-title { font-size: 20px; margin-bottom: 4px; }
.nb-gallery-card .card-loc { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; margin-bottom: 8px; }
.nb-gallery-card .card-details { font-size: 13px; opacity: 0.7; }

@media (max-width: 1024px) {
  .nb-incl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nb-hero .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .nb-hero { padding-top: 120px; }
  .nb-types-head, .nb-incl-head, .nb-gallery-head { grid-template-columns: 1fr; }
  .nb-types-grid, .nb-gallery-grid { grid-template-columns: 1fr 1fr; }
  .nb-dc-inner { grid-template-columns: 1fr; gap: 32px; }
  .nb-dc-img { height: 280px; }
}
@media (max-width: 600px) {
  .nb-types-grid, .nb-incl-grid, .nb-gallery-grid { grid-template-columns: 1fr; }
}

/* === Mobile Hamburger Nav === */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
body.nav-open { overflow: hidden; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-open header.site-header { z-index: 201; }

@media (max-width: 768px) {
  header.site-header { padding: 20px; }
  .nav-toggle { display: flex; }
  header.site-header nav.main-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 40px 60px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  body.nav-open header.site-header nav.main-nav {
    opacity: 1;
    pointer-events: all;
  }
  header.site-header nav.main-nav .main-nav-list {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100%;
  }
  header.site-header nav.main-nav .main-nav-list li {
    display: block !important;
    border-bottom: 1px solid rgba(245,243,239,0.1);
  }
  header.site-header nav.main-nav .main-nav-list li a {
    font-size: 32px !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    font-family: 'Archivo Black', sans-serif !important;
    padding: 18px 0 !important;
    display: block !important;
    opacity: 1 !important;
    color: var(--bone) !important;
    background: none !important;
    border: none !important;
  }
  header.site-header nav.main-nav .main-nav-list li a:hover { color: var(--brass) !important; }
}

@media (max-width: 480px) {
  .nav-phone { padding: 10px 12px !important; font-size: 10px !important; }
}
