:root {
  --brick: #D85A2A;
  --brick-dark: #B8441C;
  --brick-ink: #6B2410;
  --olive: #8A8847;
  --olive-dark: #5E5C2E;
  --cream: #F2EBDD;
  --cream-2: #E6DCC5;
  --paper: #F7F3EA;
  --ink: #111111;
  --ink-2: #2A2824;
  --muted: #6F6A62;
  --line: #D6CBB5;
  --gold: #C8A24B;
  --display: 'Oswald', 'Archivo Narrow', Impact, sans-serif;
  --sans: 'Archivo', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.display { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.005em; }
.mono  { font-family: var(--mono); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1340px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ——— Reusable ——— */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brick-dark);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 0;
  font-family: var(--display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: 0; transition: all .2s ease;
}
.btn-primary { background: var(--brick); color: #fff; }
.btn-primary:hover { background: var(--brick-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--cream-2); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ——— Nav ——— */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: all .35s ease;
}
.nav.scrolled {
  background: rgba(247, 243, 234, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 14px 0;
}
.nav.on-hero { color: #fff; }
.nav.on-hero .nav-logo .name,
.nav.on-hero .nav-links a,
.nav.on-hero .phone-chip,
.nav.on-hero .mobile-toggle,
.nav.on-hero .nav-logo .tag { color: #fff; }
.nav.on-hero .menu-btn { color: #fff; border-color: rgba(255,255,255,0.6); }
.nav.on-hero .menu-btn:hover { background: #fff; color: var(--ink); }
/* Light hero band / cream pages: default “on-hero” white text is unreadable */
body.dcm-nav-light-top .nav.on-hero,
body.dcm-nav-light-top .nav.on-hero .nav-logo .name,
body.dcm-nav-light-top .nav.on-hero .nav-links a,
body.dcm-nav-light-top .nav.on-hero .phone-chip,
body.dcm-nav-light-top .nav.on-hero .mobile-toggle,
body.dcm-nav-light-top .nav.on-hero .nav-logo .tag {
  color: var(--ink);
}
body.dcm-nav-light-top .nav.on-hero .nav-logo .tag {
  color: var(--muted);
}
body.dcm-nav-light-top .nav.on-hero .menu-btn {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.35);
}
body.dcm-nav-light-top .nav.on-hero .menu-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.nav.scrolled .nav-logo .name,
.nav.scrolled .nav-links a,
.nav.scrolled .phone-chip,
.nav.scrolled .mobile-toggle { color: var(--ink); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo .name { font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; transition: color .3s; }
.nav-logo .tag { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 2px; transition: color .3s; }
.nav.scrolled .nav-logo .tag { color: var(--muted); }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links .dcm-primary-menu {
  display: flex; flex-wrap: wrap; gap: 2px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links .dcm-primary-menu li { list-style: none; margin: 0; padding: 0; }
.nav-links a {
  padding: 10px 14px; font-size: 12px; font-weight: 600;
  position: relative; transition: color .3s, opacity .2s;
  font-family: var(--display); letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.9;
}
.nav-links a:hover { opacity: 1; color: var(--brick) !important; }
.menu-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; background: transparent;
  border: 1px solid var(--ink); color: var(--ink);
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.menu-btn:hover { background: var(--ink); color: var(--paper); }
.nav-cta {
  display: flex; gap: 14px; align-items: center;
}
.phone-chip {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em; transition: color .3s;
}
.phone-chip .dot { width: 7px; height: 7px; background: #58d484; border-radius: 50%; box-shadow: 0 0 0 4px rgba(88,212,132,.2); }
.mobile-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: inherit; }
@media (max-width: 1100px) {
  .nav-links { display: none; }
}
@media (max-width: 980px) {
  .phone-chip { display: none; }
}
@media (max-width: 760px) {
  .menu-btn { display: none; }
  .mobile-toggle { display: block; }
}

/* ——— Hero (full-bleed cinematic) ——— */
.hero {
  position: relative; min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto auto;
  align-items: stretch;
  color: #fff; text-align: center;
  /* no horizontal padding — keeps EST bar edge-to-edge */
  padding: 120px 0 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 900px;
  grid-column: 1; grid-row: 1;
  align-self: center; justify-self: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 32px 8px;
}
@media (max-width: 720px) {
  .hero-content { padding-left: 20px; padding-right: 20px; }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 132px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero h1 .rule { display: inline-block; vertical-align: middle; width: 42px; height: 1px; background: #fff; margin: 0 18px; opacity: 0.8; }
.hero h1 em { font-style: normal; font-weight: 400; }
.hero-sub {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 16px;
}
.hero-sub::before, .hero-sub::after {
  content: ""; width: 28px; height: 1px; background: rgba(255,255,255,0.6);
}
.hero-tagline {
  margin-top: 28px; font-family: var(--sans);
  font-size: 17px; line-height: 1.5; font-weight: 400;
  color: rgba(255,255,255,0.9); max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-cta-row .hero-btn { margin-top: 0; }
.hero-btn {
  margin-top: 44px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px; background: #fff; color: var(--ink);
  font-family: var(--display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 0; cursor: pointer; transition: all .25s ease;
  text-decoration: none;
}
.hero-btn:hover { background: var(--brick); color: #fff; transform: translateY(-2px); }
.hero-btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.7); margin-left: 12px; }
.hero-btn.ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-cta-row {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px; margin-top: 40px;
}
.hero-scroll {
  position: relative; grid-column: 1; grid-row: 2;
  z-index: 2;
  margin: 20px auto 0;
  padding: 8px 20px 4px;
  box-sizing: border-box;
  width: 100%;
  color: rgba(255,255,255,0.85);
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  pointer-events: none;
}
.hero-scroll .line {
  width: 1px; height: 28px; background: rgba(255,255,255,0.45);
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.hero-scroll .line::after {
  content: ""; position: absolute; top: -28px; left: 0; width: 1px; height: 28px;
  background: #fff; animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -28px; } 100% { top: 28px; } }
.hero-meta-strip {
  position: relative; grid-column: 1; grid-row: 3;
  z-index: 3;
  margin-top: auto;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 18px 32px 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px 24px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.15);
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.35) 100%);
}
@media (max-width: 720px) {
  .hero-meta-strip { padding-left: 20px; padding-right: 20px; }
}
.hero-meta-strip > div {
  flex: 1 1 120px;
  min-width: 0;
}
.hero-meta-strip > div:nth-child(1) { text-align: left; }
.hero-meta-strip > div:nth-child(2) { text-align: center; }
.hero-meta-strip > div:nth-child(3) { text-align: right; }
@media (max-width: 900px) {
  .hero-meta-strip > div:nth-child(1),
  .hero-meta-strip > div:nth-child(2),
  .hero-meta-strip > div:nth-child(3) { text-align: center; flex-basis: 100%; }
}
@media (max-width: 760px) {
  .hero-meta-strip { display: none; }
  .hero-scroll { display: none; }
  .hero-btn.ghost { display: none; }
}

/* ——— Intro band (below hero) ——— */
.intro-band {
  padding: 120px 0;
  background: var(--paper);
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 100px; align-items: center;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }
.intro-grid h2 {
  font-family: var(--display); font-size: clamp(40px, 5.2vw, 68px);
  line-height: 0.98; font-weight: 500; letter-spacing: 0.005em;
  text-transform: uppercase;
}
.intro-grid h2 em { font-style: normal; color: var(--brick); font-weight: 400; }
  .intro-grid p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-bottom: 18px; }
  .intro-body p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-bottom: 18px; }
.intro-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--line);
}
@media (max-width: 560px) { .intro-stats { grid-template-columns: repeat(2, 1fr); } }
.intro-stats .item { display: flex; flex-direction: column; gap: 4px; }
.intro-stats .k { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.intro-stats .v { font-family: var(--display); font-size: 40px; font-weight: 500; color: var(--ink); letter-spacing: 0; }
.intro-stats .v em { font-style: normal; color: var(--brick); }

/* ——— Section shells ——— */
section { padding: 110px 0; position: relative; }
@media (max-width: 720px) { section { padding: 70px 0; } }
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  margin-bottom: 64px; align-items: end;
}
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 16px; } }
.section-head h2 {
  font-family: var(--display); font-size: clamp(44px, 6.5vw, 92px);
  line-height: 0.92; font-weight: 600; letter-spacing: 0;
  text-transform: uppercase;
}
.section-head h2 em { font-style: normal; color: var(--brick); font-weight: 400; }
.section-head .desc {
  font-size: 17px; color: var(--ink-2); max-width: 520px; line-height: 1.55;
}
.section-head .top {
  display: flex; flex-direction: column; gap: 16px;
}

/* ——— Services ——— */
.services { background: var(--paper); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
  .svc-card {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
    cursor: pointer; background: var(--ink);
    transition: transform .35s ease;
  }
  a.svc-card { color: inherit; text-decoration: none; display: block; }
.svc-card:hover { transform: translateY(-4px); }
.svc-media { position: absolute; inset: 0; }
.svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.85) 100%);
}
.svc-num-overlay {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.9); letter-spacing: .14em;
  text-transform: uppercase;
}
.svc-arrow-overlay {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.svc-card:hover .svc-arrow-overlay { background: var(--brick); color: #fff; border-color: var(--brick); transform: rotate(-45deg); }
.svc-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 10px;
  color: #fff;
}
.svc-card h3 {
  font-family: var(--display); font-size: 28px; font-weight: 600;
  line-height: 1.05; letter-spacing: 0.01em;
  text-transform: uppercase; color: #fff;
}
.svc-card p {
  font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.55;
  max-width: 32ch;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .35s ease, margin-top .3s ease;
}
.svc-card:hover p { max-height: 200px; opacity: 1; margin-top: 4px; }

/* Services archive listing — same atmosphere as Projects archive */
.services.services-archive {
  background: var(--ink);
  color: var(--cream);
  padding-top: 120px;
  padding-bottom: 80px;
}
.services.services-archive .eyebrow { color: var(--brick); }
.services.services-archive .section-head h2 { color: var(--cream); }
.services.services-archive .section-head h2 em { color: var(--brick); }
.services.services-archive .section-head .desc { color: #b8b0a2; }

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.services-cta { margin-top: 56px; }
.projects-cta { margin-top: 44px; }
.projects-cta .btn-light {
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.story-cta-wrap { margin-top: 28px; }

/* ——— About / Story ——— */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }
.story-img-stack {
  position: relative; aspect-ratio: 1; 
}
.story-img-a {
  position: absolute; inset: 0 30% 20% 0;
  background: var(--cream-2); overflow: hidden;
}
.story-img-a img { width: 100%; height: 100%; object-fit: cover; }
.story-img-b {
  position: absolute; inset: 35% 0 0 35%;
  background: var(--brick); overflow: hidden;
  box-shadow: -20px -20px 0 var(--paper);
}
.story-img-b img { width: 100%; height: 100%; object-fit: cover; }
.story-stamp {
  position: absolute; top: 10%; right: -10px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--olive); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  font-family: var(--display);
  transform: rotate(-8deg);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  border: 2px solid var(--cream);
  outline: 1px solid var(--olive);
  outline-offset: 4px;
}
.story-stamp .big { font-size: 56px; font-weight: 700; line-height: 1; display: block; }
.story-stamp .sm { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-family: var(--mono); font-weight: 500; margin-top: 4px; display: block; }
.story-text h2 {
  font-family: var(--display); font-size: clamp(42px, 5.5vw, 72px);
  line-height: 0.95; font-weight: 600; letter-spacing: 0;
  margin-bottom: 28px; text-transform: uppercase;
}
.story-text h2 em { font-style: normal; color: var(--brick); font-weight: 400; }
  .story-text p {
    font-size: 16px; color: var(--ink-2); line-height: 1.7; margin-bottom: 18px;
  }
  .story-body p {
    font-size: 16px; color: var(--ink-2); line-height: 1.7; margin-bottom: 18px;
  }
.story-sig {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; gap: 20px; align-items: center;
}
.story-sig .sig-name { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--ink); text-transform: uppercase; letter-spacing: 0.03em; }
.story-sig .sig-role { font-size: 11px; color: var(--muted); font-family: var(--mono); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }

/* ——— Projects ——— */
.projects { background: var(--ink); color: var(--cream); }
.projects .eyebrow { color: var(--brick); }
.projects .section-head h2 { color: var(--cream); }
.projects .section-head h2 em { color: var(--brick); }
.projects .section-head .desc { color: #b8b0a2; }
/* Archive listing pages — consistent vertical rhythm */
body.post-type-archive-dcm_project .projects {
  padding-bottom: 80px;
}
.proj-tabs {
  display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 40px;
  padding-bottom: 20px; border-bottom: 1px solid #2d2722;
}
.proj-tab {
  padding: 10px 18px; font-size: 12px; font-weight: 600;
  background: transparent; border: 1px solid #2d2722; color: #b8b0a2;
  border-radius: 0; cursor: pointer; transition: all .2s;
  font-family: var(--display); letter-spacing: 0.12em; text-transform: uppercase;
}
.proj-tab:hover { color: var(--cream); border-color: #4a3f36; }
.proj-tab.active { background: var(--brick); color: #fff; border-color: var(--brick); }
.proj-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  align-items: start;
  gap: 16px;
}
@media (max-width: 980px) {
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .proj-card:nth-child(1) { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card:nth-child(1) { grid-column: auto; }
}
.proj-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: #2a241e;
  height: 320px;
}
a.proj-card { color: inherit; text-decoration: none; display: block; }
.proj-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.proj-card:hover img { transform: scale(1.04); }
.proj-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7));
}
.proj-card .info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; z-index: 2; color: #fff;
}
.proj-card .info .tag {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: #ffb58a; margin-bottom: 8px; display: block;
}
.proj-card .info h3 {
  font-family: var(--display); font-size: 24px;
  font-weight: 600; letter-spacing: 0.005em; line-height: 1.05;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .proj-card { height: 300px; }
}
.projects-loadmore { margin-top: 34px; justify-content: flex-start; }
.projects-loadmore .next.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--cream);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .2s ease;
}
.projects-loadmore .next.page-numbers:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ——— Process ——— */
.process-rail {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .process-rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-rail { grid-template-columns: 1fr; } }
.p-step {
  background: var(--paper); padding: 40px 28px; position: relative;
}
.p-step .n {
  font-family: var(--display); font-size: 88px; font-weight: 700;
  line-height: 1; color: var(--brick); font-style: normal;
  margin-bottom: 24px; display: block;
  letter-spacing: -0.01em;
}
.p-step h4 {
  font-family: var(--display); font-size: 22px; font-weight: 600;
  margin-bottom: 10px; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.p-step p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ——— Process page template (timeline — not homepage process-rail) ——— */
.process-page-panel {
  padding: 100px 0 120px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .process-page-panel { padding: 64px 0 80px; }
}
.process-page-inner { max-width: 920px; margin: 0 auto; }
.process-page-head {
  margin-bottom: 56px;
  text-align: center;
}
.process-page-head .eyebrow { justify-content: center; }
.process-page-head .eyebrow::before { display: none; }
.process-page-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 16px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.process-page-title em { font-style: normal; color: var(--brick); font-weight: 500; }
.process-page-lead {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-timeline__step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px 36px;
  align-items: stretch;
  padding-bottom: 40px;
}
.process-timeline__step:last-child {
  padding-bottom: 0;
}
.process-timeline__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 88px;
  flex-shrink: 0;
  min-height: 0;
  height: 100%;
}
.process-timeline__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--brick);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brick-dark);
  flex-shrink: 0;
}
.process-timeline__line {
  flex: 1 1 auto;
  width: 2px;
  min-height: 32px;
  margin-top: 10px;
  background: var(--line);
}
.process-timeline__step:last-child .process-timeline__line {
  display: none;
}
.process-timeline__body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 30px 30px;
}
.process-timeline__title {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.15;
}
.process-timeline__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.process-page-editor {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .process-page-editor { padding: 56px 0; }
  .process-timeline__step {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px 20px;
    padding-bottom: 32px;
  }
  .process-timeline__rail { width: 64px; }
  .process-timeline__marker {
    width: 46px;
    height: 46px;
    font-size: 11px;
  }
}

/* ——— Content only page template (privacy, terms) ——— */
.page-simple-head {
  padding: 150px 0 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
  .page-simple-head { padding: 120px 0 24px; }
}
.page-simple-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 20ch;
}
.page-simple-body {
  padding: 40px 0 100px;
  background: var(--paper);
}
@media (max-width: 720px) {
  .page-simple-body { padding: 28px 0 72px; }
}
.page-simple-prose {
  max-width: 720px;
  margin: 0 auto;
}
.page-simple-prose > *:first-child { margin-top: 0; }

/* ——— Testimonials ——— */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--paper); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid var(--line);
}
.testi .stars { color: var(--brick); letter-spacing: 3px; font-size: 14px; }
.testi blockquote {
  font-family: var(--sans); font-size: 18px; line-height: 1.5;
  color: var(--ink); font-weight: 400; flex: 1;
  letter-spacing: -0.005em;
}
.testi blockquote::before { content: "“"; font-family: var(--display); font-weight: 700; font-size: 72px; line-height: 0; vertical-align: -28px; color: var(--brick); margin-right: 6px; }
.testi .who {
  padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.testi .who .n { font-weight: 600; font-size: 13px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; }
.testi .who .l { font-size: 11px; color: var(--muted); font-family: var(--mono); font-weight: 500; letter-spacing: .1em; }

/* ——— FAQ ——— */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; padding: 28px 0; background: none; border: 0; cursor: pointer;
  font-family: var(--display); font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600; color: var(--ink); text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  letter-spacing: 0.005em; text-transform: uppercase;
}
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
  transition: all .3s;
}
.faq-item.open .faq-q .plus { background: var(--brick); color: #fff; border-color: var(--brick); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease;
  font-size: 16px; line-height: 1.6; color: var(--ink-2);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }

/* ——— FAQ page template ——— */
.hero.hero--faq {
  min-height: 48vh;
  padding: 140px 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--brick);
}
@media (max-width: 720px) {
  .hero.hero--faq { min-height: 40vh; padding: 120px 0 48px; }
}
.hero.hero--faq.faq-hero--brick { background: var(--brick); }
.hero.hero--faq.faq-hero--ink { background: var(--ink); }
.hero.hero--faq.faq-hero--olive { background: var(--olive-dark); }
.hero.hero--faq .hero-content {
  grid-row: auto;
  grid-column: auto;
}
.hero.hero--faq h1 {
  font-size: clamp(38px, 6vw, 84px);
  line-height: 0.98;
  margin-bottom: 0;
}
.hero.hero--faq h1 em { font-style: normal; font-weight: 400; color: rgba(255, 255, 255, 0.92); }
.faq-page-hero-lead {
  margin-top: 18px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
  font-weight: 400;
}
.faq-page-section {
  padding: 72px 0 96px;
  background: var(--paper);
}
@media (max-width: 720px) {
  .faq-page-section { padding: 48px 0 72px; }
}
.faq-list--page {
  max-width: 900px;
  margin: 0 auto;
}
.faq-page-section .faq-item.open .faq-a {
  max-height: 2400px;
}
.faq-page-editor {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .faq-page-editor { padding: 56px 0; }
}

/* ——— CTA / Contact ——— */
.contact {
  background: var(--brick);
  color: #fff; overflow: hidden;
  position: relative;
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background-image: 
    repeating-linear-gradient(90deg, rgba(0,0,0,.06) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.06) 0 1px, transparent 1px 60px);
  opacity: .5;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; position: relative;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-left h2 {
  font-family: var(--display); font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.9; font-weight: 600; letter-spacing: 0;
  color: #fff; text-transform: uppercase;
}
.contact-left h2 em { font-style: normal; font-weight: 400; color: #ffd9c2; }
.contact-left .lead {
  margin-top: 24px; font-size: 17px; line-height: 1.55; max-width: 440px;
  color: #fff1e8;
}
.contact-details {
  margin-top: 40px; display: flex; flex-direction: column; gap: 20px;
}
.cd-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,.2);
}
.cd-row:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.cd-row .k {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: #ffd9c2; width: 80px; flex-shrink: 0;
}
.cd-row .v { font-size: 16px; font-weight: 500; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em; }
.form {
  background: var(--paper); color: var(--ink);
  padding: 40px; display: flex; flex-direction: column; gap: 20px;
}
.form h3 {
  font-family: var(--display); font-size: 28px; font-weight: 600;
  letter-spacing: 0.01em; margin-bottom: 4px; text-transform: uppercase;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 0; background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--brick);
}
.field textarea { min-height: 80px; resize: vertical; }
.field.error input, .field.error select, .field.error textarea { border-bottom-color: #d64545; }
.field .err-msg {
  font-size: 11px; color: #d64545; margin-top: 6px; display: none;
  font-family: var(--mono); font-weight: 500;
}
.field.error .err-msg { display: block; }
.chip-group { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 14px; font-size: 13px; border: 1px solid var(--line);
  background: transparent; cursor: pointer; transition: all .2s;
  font-family: inherit;
}
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.form-success {
  background: var(--olive); color: var(--cream); padding: 40px; text-align: center;
}
.form-success h3 { font-family: var(--display); font-size: 32px; margin-bottom: 12px; color: #fff; text-transform: uppercase; letter-spacing: 0.01em; }

/* ——— Fluent Forms (contact column) — matches theme “mock” form: underline fields, chip radios, brick CTA ——— */
.contact .fluent-form-wrap {
  background: #f9f4eb;
  border-radius: 0;
}
.contact .fluent-form-wrap .fluentform.ff-default {
  --fluentform-primary: var(--brick);
  --fluentform-danger: #d64545;
  --fluentform-border-color: var(--line);
  --fluentform-border-radius: 0;
  --fluentform-secondary: var(--ink);
  font-family: var(--sans);
}
.contact .fluent-form-wrap .ff-el-group {
  margin-bottom: 20px;
}
.contact .fluent-form-wrap .ff-el-input--label {
  margin-bottom: 8px;
}
/* Labels = same as static .field mockup (mono caps, muted) */
.contact .fluent-form-wrap .ff-el-input--label label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
.contact .fluent-form-wrap .ff-el-input--label.ff-el-is-required.asterisk-right label:after,
.contact .fluent-form-wrap .ff-el-input--label.ff-el-is-required.asterisk-left label:before {
  color: #d64545;
}
/* Text inputs: underline only (no boxed fields) */
.contact .fluent-form-wrap input.ff-el-form-control,
.contact .fluent-form-wrap select.ff-el-form-control,
.contact .fluent-form-wrap textarea.ff-el-form-control {
  width: 100%;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  padding: 12px 0 !important;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  box-shadow: none !important;
  transition: border-color 0.2s;
}
.contact .fluent-form-wrap .ff-el-form-control::placeholder {
  color: var(--muted);
  opacity: 1;
}
.contact .fluent-form-wrap textarea.ff-el-form-control {
  min-height: 120px;
  resize: vertical;
}
.contact .fluent-form-wrap input.ff-el-form-control:focus,
.contact .fluent-form-wrap select.ff-el-form-control:focus,
.contact .fluent-form-wrap textarea.ff-el-form-control:focus {
  outline: none !important;
  border-bottom-color: var(--brick) !important;
  box-shadow: none !important;
}
.contact .fluent-form-wrap .ff-el-is-error .ff-el-form-control {
  border: 0 !important;
  border-bottom: 1px solid #d64545 !important;
}
.contact .fluent-form-wrap .frm-fluent-form .ff-t-container {
  gap: 16px 24px;
}
@media (max-width: 767px) {
  .contact .fluent-form-wrap .frm-fluent-form .ff-t-container.mobile .ff-t-cell {
    padding-left: 0;
    padding-right: 0;
  }
}
/* Service / radio: pill chips — selected = dark fill like .chip.on */
.contact .fluent-form-wrap .ff-el-group .ff-el-input--content > .ff-el-form-check:first-child {
  margin-top: 0;
}
.contact .fluent-form-wrap .ff-el-input--content:has(.ff-el-form-check + .ff-el-form-check) {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  justify-content: flex-start;
}
.contact .fluent-form-wrap .ff-el-group.ff_list_inline .ff-el-input--content,
.contact .fluent-form-wrap .ff-el-group.ff_list_2col .ff-el-input--content,
.contact .fluent-form-wrap .ff-el-group.ff_list_3col .ff-el-input--content {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  justify-content: flex-start;
}
/* Button-style radios often pick up wide % widths from Fluent — keep chips snug */
.contact .fluent-form-wrap .ff-el-group.ff_list_buttons .ff-el-input--content,
.fluent-form-wrap .ff-el-group.ff_list_buttons .ff-el-input--content {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px 8px !important;
  align-items: stretch;
  justify-content: flex-start !important;
}
.contact .fluent-form-wrap .ff-el-group.ff_list_buttons .ff-el-form-check:not(.ff-el-tc),
.fluent-form-wrap .ff-el-group.ff_list_buttons .ff-el-form-check:not(.ff-el-tc) {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
}
/* Override Fluent’s 641px+ inline radio margins (0 15px 10px 0) — spacing = parent gap only */
@media only screen and (min-width: 641px) {
  .contact .fluent-form-wrap .ff-el-group.ff_list_inline .ff-el-form-check:not(.ff-el-tc),
  .contact .fluent-form-wrap .ff-el-group.ff_list_buttons .ff-el-form-check:not(.ff-el-tc),
  .fluent-form-wrap .ff-el-group.ff_list_inline .ff-el-form-check:not(.ff-el-tc),
  .fluent-form-wrap .ff-el-group.ff_list_buttons .ff-el-form-check:not(.ff-el-tc) {
    margin: 0 !important;
  }
  .contact .fluent-form-wrap .ff-el-group.ff_list_2col .ff-el-form-check:not(.ff-el-tc),
  .contact .fluent-form-wrap .ff-el-group.ff_list_3col .ff-el-form-check:not(.ff-el-tc),
  .fluent-form-wrap .ff-el-group.ff_list_2col .ff-el-form-check:not(.ff-el-tc),
  .fluent-form-wrap .ff-el-group.ff_list_3col .ff-el-form-check:not(.ff-el-tc) {
    margin: 0 !important;
  }
}
.contact .fluent-form-wrap .ff-el-form-check:not(.ff-el-tc) {
  margin-bottom: 0 !important;
}
.contact .fluent-form-wrap .ff-el-form-check:not(.ff-el-tc) .ff-el-form-check-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.contact .fluent-form-wrap .ff-el-form-check:not(.ff-el-tc) .ff-el-form-check-label span {
  color: inherit;
}
.contact .fluent-form-wrap .ff-el-form-check:not(.ff-el-tc) .ff-el-form-check-label:has(.ff-el-form-check-input:checked) {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.contact .fluent-form-wrap .ff-el-form-check:not(.ff-el-tc) .ff-el-form-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.contact .fluent-form-wrap .ff-el-form-check:not(.ff-el-tc) .ff-el-form-check-label:focus-within {
  outline: 2px solid var(--brick);
  outline-offset: 2px;
}
/* Fluent “display as buttons” preset — align with chip look */
.contact .fluent-form-wrap .ff-el-group.ff_list_buttons .ff-el-form-check label > span {
  border-radius: 0 !important;
  padding: 10px 18px !important;
  border-color: var(--line) !important;
}
.contact .fluent-form-wrap .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label > span {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #fff !important;
}
/* Terms / GDPR checkbox — keep normal inline checkbox */
.contact .fluent-form-wrap .ff-el-tc .ff-el-form-check-label {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}
.contact .fluent-form-wrap .ff-el-tc input[type="checkbox"] {
  position: static;
  opacity: 1;
  width: auto;
  height: auto;
  margin-right: 8px;
  accent-color: var(--brick);
}
.contact .fluent-form-wrap .ff_submit_btn_wrapper,
.contact .fluent-form-wrap .ff_submit_btn_wrapper_custom {
  text-align: left;
  margin-top: 12px;
}
/* Submit = terracotta / brick, sharp corners, caps — like theme .btn-primary */
.contact .fluent-form-wrap .ff-btn.ff-btn-primary:not(.ff_btn_no_style),
.contact .fluent-form-wrap button.ff-btn.ff-btn-primary {
  background-color: var(--brick) !important;
  border-color: var(--brick) !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  padding: 16px 28px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.contact .fluent-form-wrap .ff-btn.ff-btn-primary:not(.ff_btn_no_style):hover,
.contact .fluent-form-wrap button.ff-btn.ff-btn-primary:hover {
  background-color: var(--brick-dark) !important;
  border-color: var(--brick-dark) !important;
  opacity: 1;
}
.contact .fluent-form-wrap .ff_message-success,
.contact .fluent-form-wrap .ff-errors-in-stack {
  border-radius: 0;
  font-family: var(--sans);
}

/* Contact page template — same grid + form, cream/paper (no brick band) */
.contact.contact--page {
  background: var(--cream);
  color: var(--ink);
}
.contact.contact--page::before {
  opacity: 0.1;
}
.contact.contact--page .contact-left h2 {
  color: var(--ink);
}
.contact.contact--page .contact-left h2 em {
  color: var(--brick);
}
.contact.contact--page .contact-left .lead {
  color: var(--ink-2);
}
.contact.contact--page .cd-row {
  border-top-color: var(--line);
}
.contact.contact--page .cd-row:last-child {
  border-bottom-color: var(--line);
}
.contact.contact--page .cd-row .k {
  color: var(--brick-dark);
}
.contact.contact--page .cd-row .v {
  color: var(--ink);
}
.contact.contact--page .fluent-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
}
.contact-page-editor {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
@media (max-width: 720px) {
  .contact-page-editor { padding: 56px 0; }
}

/* ——— Footer ——— */
.footer {
  background: var(--ink); color: #b8b0a2;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: #ffd9c2; margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--brick); }
.footer .brandblock p { font-size: 14px; margin-top: 16px; max-width: 300px; line-height: 1.55; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid #2d2722;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-family: var(--mono); font-weight: 500; letter-spacing: .1em;
  flex-wrap: wrap; gap: 16px;
}
/* ——— Mobile nav sheet ——— */
.msheet {
  position: fixed; inset: 0; background: var(--paper); z-index: 200;
  padding: 20px 32px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s ease;
}
.msheet.open { transform: translateX(0); }
.msheet .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.msheet-close {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; min-width: 48px; min-height: 48px;
  padding: 0; border: 0; border-radius: 50%;
  background: var(--ink); color: #fff; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  transition: background .2s, transform .2s;
}
.msheet-close:hover { background: var(--brick); }
.msheet-close:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 3px;
}
.msheet-close:active { transform: scale(0.96); }
.msheet-close svg { display: block; }
.msheet .links { display: block; }
.msheet .links .dcm-primary-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.msheet .links .dcm-primary-menu li {
  list-style: none; margin: 0; padding: 0;
  border-bottom: 1px solid var(--line);
}
.msheet .links .dcm-primary-menu a {
  display: block;
  font-family: var(--display); font-size: 44px; font-weight: 600;
  letter-spacing: 0.01em; padding: 14px 0; line-height: 1; color: var(--ink);
  text-transform: uppercase;
}
.msheet .links .dcm-primary-menu a em { color: var(--brick); font-style: normal; }
.msheet .bottom {
  margin-top: auto; padding-top: 40px;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
}

/* ——— Single service (compact homepage-style hero) ——— */
.hero.hero--service {
  min-height: 58vh;
  padding-bottom: 64px;
}
@media (max-width: 720px) {
  .hero.hero--service { min-height: 52vh; padding-bottom: 48px; }
}
.hero.hero--service .hero-content {
  max-width: 920px;
}
.hero.hero--service .service-hero-back {
  margin-bottom: 20px;
  text-align: center;
}
.hero.hero--service .service-back-link {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px; display: inline-block;
  transition: color .2s, border-color .2s;
}
.hero.hero--service .service-back-link:hover { color: #fff; border-bottom-color: #fff; }
.service-features { background: var(--paper); }
.service-feature {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.service-feature:first-child { border-top: 0; }
.service-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 901px) {
  .service-feature--img-right .service-feature-media { order: 2; }
  .service-feature--img-right .service-feature-text { order: 1; }
}
@media (max-width: 900px) {
  .service-feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-feature-media { order: 0 !important; }
  .service-feature-text { order: 1 !important; }
}
.service-feature-frame {
  position: relative;
  background: var(--cream-2);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 12px 12px 0 var(--cream);
}
.service-feature-frame img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.service-feature-frame--placeholder {
  background: linear-gradient(145deg, var(--cream-2), var(--line));
  min-height: 240px;
}
.service-feature-heading {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1; font-weight: 600; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 16px;
}
.service-feature-heading em { font-style: normal; color: var(--brick); font-weight: 400; }
.service-feature-desc { margin-bottom: 18px; }
.service-feature-bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.service-feature-bullets li {
  position: relative; padding-left: 22px;
  font-size: 15px; line-height: 1.5; color: var(--ink-2);
}
.service-feature-bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brick);
}
.service-page { background: var(--paper); }
.service-prose { font-size: 16px; line-height: 1.7; color: var(--ink-2); }
.service-prose p { margin-bottom: 16px; }
.service-prose p:last-child { margin-bottom: 0; }
.service-prose ul, .service-prose ol { margin: 0 0 16px 1.2em; padding: 0; }
.service-prose li { margin-bottom: 8px; }
.service-prose li:last-child { margin-bottom: 0; }
.service-prose h3 {
  font-family: var(--display); font-size: 22px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin: 28px 0 12px; color: var(--ink);
}
.service-prose--wide { max-width: 800px; margin: 0 auto; }
.service-main-copy {
  padding: 64px 0 80px;
  border-top: 1px solid var(--line);
}
.service-fallback-lead {
  font-size: 17px; line-height: 1.65; color: var(--ink-2); max-width: 720px;
}

/* ——— Single project ——— */
.project-hero {
  position: relative;
  width: 100%;
  background: var(--ink);
}
.project-hero-viewport {
  position: relative;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 720px) {
  .project-hero-viewport { height: 350px; }
}
.project-hero-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1px;
  height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.project-hero-track::-webkit-scrollbar { display: none; }
.project-hero-track img {
  height: 100%;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.project-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.38);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.project-hero-nav:hover {
  background: var(--brick);
  border-color: var(--brick);
}
.project-hero-nav:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 3px;
}
.project-hero-nav--prev { left: 16px; }
.project-hero-nav--next { right: 16px; }
@media (max-width: 600px) {
  .project-hero-nav { width: 40px; height: 40px; font-size: 22px; }
  .project-hero-nav--prev { left: 8px; }
  .project-hero-nav--next { right: 8px; }
}
.project-body-shell {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  padding-bottom: 28px;
}
.project-content-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  padding: 44px 40px 52px;
  border: 1px solid var(--line);
}
@media (max-width: 720px) {
  .project-content-card { padding: 32px 22px 40px; border-radius: 10px 10px 0 0; }
  .project-body-shell { margin-top: -52px; }
}
.project-content-header { text-align: center; margin-bottom: 28px; }
.project-content-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brick);
}
.project-content-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 14px 0 10px;
}
.project-content-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.project-single-body h2,
.project-single-body h3,
.project-single-body h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 2em 0 0.65em;
  font-size: clamp(20px, 2.2vw, 28px);
}
.project-single-body h2:first-child,
.project-single-body h3:first-child,
.project-single-body h4:first-child { margin-top: 0; }
.project-related {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 88px;
}
.project-related-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.project-related-title {
  display: flex;
  align-items: stretch;
  gap: 14px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
  line-height: 1.15;
}
.project-related-accent {
  display: inline-block;
  width: 4px;
  flex-shrink: 0;
  background: var(--brick);
  border-radius: 2px;
}
.project-related-all.btn-ghost {
  border-color: rgba(255,255,255,0.45);
  color: var(--cream);
}
.project-related-all.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.project-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 900px) {
  .project-related-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .project-related-grid { grid-template-columns: 1fr; }
}
.project-related .proj-card { min-height: 260px; }

/* ——— About page template ——— */
.hero.hero--about { min-height: 58vh; padding-bottom: 64px; }
@media (max-width: 720px) {
  .hero.hero--about { min-height: 52vh; }
}
.about-story-section { padding: 80px 0; }
@media (max-width: 900px) {
  .about-story-section { padding: 56px 0; }
}
/* About: stats-only band (no intro grid above). */
.intro-band.about-page-intro-stats {
  border-top: 1px solid var(--line);
}
.intro-band.about-page-intro-stats .intro-stats {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.about-features { background: var(--paper); }
.about-main-copy { border-top: 1px solid var(--line); }
.about-editor-content .alignwide { margin-left: auto; margin-right: auto; }

/* ——— Tweaks panel ——— */
.tweaks {
  position: fixed; bottom: 20px; right: 20px; z-index: 300;
  background: var(--ink); color: #fff;
  padding: 20px; border-radius: 4px; width: 280px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  display: none;
  font-size: 13px;
}
.tweaks.open { display: block; }
.tweaks h4 { font-family: var(--display); font-weight: 600; font-size: 16px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.tweaks .row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-top: 1px solid #2d2722; }
.tweaks select, .tweaks input {
  background: #2d2722; color: #fff; border: 0; padding: 6px 8px; font-size: 12px;
  font-family: inherit;
}

/* ——— WordPress / a11y ——— */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute !important; width: 1px;
  word-wrap: normal !important;
}
.skip-link:focus {
  background: var(--paper); clip: auto !important; clip-path: none;
  color: var(--ink); display: block; font-size: 14px; height: auto;
  left: 8px; line-height: 1.5; padding: 12px 16px; text-decoration: none;
  top: 8px; width: auto; z-index: 100001;
}
a.phone-chip { color: inherit; text-decoration: none; }
main#main-content { display: block; }
