/* ============================================================
   VOID ARCHITECT / style.css
   Aesthetic: drawn architectural minimalism. Bone paper, ink,
   concrete duotone, a single amber daylight accent.
   ============================================================ */

:root {
  /* palette */
  --paper:      #f4f1ea;   /* bone / drawing paper */
  --paper-2:    #ebe7de;   /* recessed paper */
  --ink:        #2a2a28;   /* near-black, soft */
  --ink-2:      #5a564d;   /* secondary text */
  --ink-3:      #8b867a;   /* muted captions */
  --line:       #d8d3c8;   /* hairlines */
  --concrete-a: #bdb8ad;
  --concrete-b: #9c978c;
  --light:      #d8a93f;   /* amber daylight accent */
  --light-soft: #f7d98a;

  /* type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --grotesk: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* metrics */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --rule: 1px solid var(--line);
}

* { box-sizing: border-box; }

/* the hidden attribute must always beat layout display values */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* faint blueprint grid wash, very low contrast */
  background-image:
    linear-gradient(to right, rgba(42,42,40,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(42,42,40,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--ink); color: var(--paper);
  padding: 0.6rem 1rem; z-index: 1000;
  text-decoration: none; font: 500 0.85rem/1 var(--grotesk);
  transition: top 0.18s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1.1rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

.section-head { max-width: 30ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: var(--rule);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--ink);
}
.brand-mark { width: 26px; height: 26px; color: var(--ink); }
.brand-name {
  font-family: var(--grotesk);
  font-weight: 500; font-size: 1.05rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.brand-name-light { color: var(--ink-3); font-weight: 400; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }
.site-nav a {
  text-decoration: none; color: var(--ink-2);
  font-size: 0.86rem; letter-spacing: 0.02em;
  position: relative; padding: 0.3rem 0;
  transition: color 0.18s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid var(--ink); color: var(--ink) !important;
  padding: 0.4rem 1rem !important; border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--ink); color: var(--paper) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: 500 0.9rem/1 var(--grotesk);
  letter-spacing: 0.02em;
  padding: 0.95rem 1.6rem;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--ink); border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(3rem, 7vw, 6rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-statement {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 1.6rem;
}
.void-word {
  font-style: italic;
  position: relative;
  color: var(--ink);
}
.void-word::after {
  content: ""; position: absolute; left: -0.05em; right: -0.05em;
  bottom: 0.12em; height: 0.42em;
  background: var(--light-soft);
  z-index: -1; opacity: 0.55;
}
.hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-2); max-width: 46ch;
  margin: 0 0 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-visual { position: relative; }
.axo { width: 100%; height: auto; }
.axo-caption {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); text-align: right;
  margin: 0.5rem 0 0;
}
.axo-note { font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; }

.hero-meta {
  list-style: none; margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 2rem var(--gutter) 0;
  max-width: var(--shell);
  display: flex; flex-wrap: wrap; gap: clamp(2rem, 6vw, 5rem);
  border-top: var(--rule);
}
.hero-meta li { display: flex; flex-direction: column; gap: 0.25rem; }
.meta-num {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; line-height: 1; letter-spacing: -0.02em;
}
.meta-label {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ============================================================
   SELECTED WORKS
   ============================================================ */
.works { padding: clamp(5rem, 10vw, 9rem) 0; }
.works-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.work-tile {
  border: var(--rule); background: var(--paper);
  display: flex; flex-direction: column;
}
.work-open {
  display: flex; flex-direction: column; text-align: left;
  background: none; border: 0; padding: 0; margin: 0;
  cursor: pointer; color: inherit; width: 100%; font: inherit;
}
/* image slot: drawn now, photo-ready later (swap background + remove .work-figure) */
.work-figure {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--paper-2);
}
.work-figure svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.work-figure::after { /* light sweep on hover */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(247,217,138,0.25) 50%, transparent 65%);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.work-open:hover .work-figure::after,
.work-open:focus-visible .work-figure::after { transform: translateX(100%); }
.work-figure .work-index {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em;
  color: var(--ink-2);
}
.work-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 1.1rem 1.2rem 0.4rem; gap: 1rem;
}
.work-name {
  font-family: var(--serif); font-weight: 500; font-size: 1.3rem;
  line-height: 1.15; margin: 0;
}
.work-year { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3); }
.work-sub {
  padding: 0 1.2rem 1.3rem;
  font-size: 0.85rem; color: var(--ink-2);
  display: flex; gap: 0.6rem; align-items: center;
}
.work-sub .dot { width: 3px; height: 3px; background: var(--ink-3); border-radius: 50%; display: inline-block; }
.work-open:hover .work-name { text-decoration: underline; text-underline-offset: 4px; }

/* ============================================================
   APPROACH
   ============================================================ */
.approach { padding: clamp(5rem, 10vw, 9rem) 0; border-top: var(--rule); }
.approach-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.approach-head { position: sticky; top: 100px; }
.approach-lede { color: var(--ink-2); max-width: 38ch; margin-top: 1.4rem; }
.principles { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(2rem, 4vw, 3rem); }
.principle {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem;
  align-items: start; padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: var(--rule);
}
.principle:last-child { border-bottom: 0; padding-bottom: 0; }
.principle-num { font-family: var(--mono); font-size: 0.85rem; color: var(--light); padding-top: 0.5rem; }
.principle h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin: 0 0 0.6rem; }
.principle p { margin: 0; color: var(--ink-2); max-width: 46ch; }
.principle-fig { width: 110px; height: auto; }

/* ============================================================
   SIGNATURE INTERACTION / PLAN / SECTION REVEAL
   ============================================================ */
.reveal { padding: clamp(5rem, 10vw, 9rem) 0; border-top: var(--rule); }
.reveal-lede { color: var(--ink-2); max-width: 48ch; margin-top: 1.2rem; }
.reveal-stage {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  max-height: 70vh; overflow: hidden;
  border: 1px solid var(--ink); background: var(--paper-2);
  cursor: ew-resize; user-select: none;
  touch-action: pan-y;
}
.reveal-layer { position: absolute; inset: 0; }
.reveal-layer svg { width: 100%; height: 100%; }
/* section sits on top, revealed from the right by clip */
.reveal-section { clip-path: inset(0 0 0 50%); }
.reveal-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--ink);
  transform: translateX(-1px);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize; z-index: 5;
}
.reveal-handle-grip {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(42,42,40,0.3);
}
.reveal-handle-grip svg { width: 16px; height: 24px; }
.reveal-handle:focus-visible { outline: none; }
.reveal-handle:focus-visible .reveal-handle-grip { outline: 2px solid var(--light); outline-offset: 3px; }
.reveal-tag {
  position: absolute; bottom: 1rem; z-index: 4;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em;
  padding: 0.35rem 0.6rem; background: color-mix(in srgb, var(--paper) 80%, transparent);
  color: var(--ink-2);
}
.reveal-tag-a { left: 1rem; }
.reveal-tag-b { right: 1rem; }
.reveal-hint {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--ink-3); margin-top: 1rem; text-align: center;
}
.dwg-label { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; fill: var(--ink-2); }
.dwg-label-light { fill: var(--paper); }
.dwg-title { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; fill: var(--ink); }

/* ============================================================
   STUDIO
   ============================================================ */
.studio { padding: clamp(5rem, 10vw, 9rem) 0; border-top: var(--rule); }
.studio-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.concrete-panel {
  aspect-ratio: 1; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 30% 20%, #4a4742 0%, #34322e 55%, #232220 100%);
}
/* concrete grain via layered noise gradients */
.concrete-panel::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 5px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.06) 0 3px, transparent 3px 7px);
  mix-blend-mode: overlay;
}
.studio-fig { position: relative; width: 78%; height: auto; margin: 11% auto; }
.studio-caption {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin: 0.7rem 0 0;
}
.studio-copy p { color: var(--ink-2); margin: 0 0 1.2rem; max-width: 54ch; }
.studio-facts {
  list-style: none; margin: 2rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
  border-top: var(--rule); padding-top: 1.8rem;
}
.studio-facts li { display: flex; flex-direction: column; gap: 0.3rem; }
.studio-facts span {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}
.studio-facts strong { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(5rem, 10vw, 9rem) 0; border-top: var(--rule); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact-intro p { color: var(--ink-2); max-width: 40ch; }
.contact-details {
  font-style: normal; margin-top: 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  border-top: var(--rule); padding-top: 1.6rem;
}
.contact-details a {
  font-family: var(--serif); font-size: 1.25rem; text-decoration: none;
  border-bottom: 1px solid var(--line); width: max-content; padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.contact-details a:hover { border-color: var(--ink); }
.contact-details span { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-3); }

.contact-form { display: grid; gap: 1.4rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-2);
}
.field input, .field textarea, .select-wrap select {
  font: 400 1rem var(--grotesk); color: var(--ink);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 0; padding: 0.85rem 0.9rem; width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus, .field textarea:focus, .select-wrap select:focus {
  outline: none; border-color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--light);
}
.field textarea { resize: vertical; min-height: 120px; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 1rem; top: 50%;
  width: 8px; height: 8px; border-right: 1.5px solid var(--ink-2);
  border-bottom: 1.5px solid var(--ink-2); transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem; }
.field-err {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.04em;
  color: #a4452f; min-height: 0.9rem;
}
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #a4452f; }
/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.04em;
  margin: 0.4rem 0 0; min-height: 1.2rem;
}
.form-status.ok { color: #3a6b46; }
.form-status.err { color: #a4452f; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: var(--rule); padding: clamp(3rem, 6vw, 5rem) 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem 4rem; align-items: start; }
.footer-brand p { color: var(--ink-2); max-width: 40ch; margin: 0.8rem 0 0; font-size: 0.92rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start; }
.footer-nav a { text-decoration: none; color: var(--ink-2); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.footer-legal {
  grid-column: 1 / -1; border-top: var(--rule); padding-top: 1.6rem;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--ink-3); margin: 1rem 0 0;
}

/* ============================================================
   PROJECT DIALOG
   ============================================================ */
.dialog-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,20,18,0.55); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.25s ease;
}
.dialog-backdrop.show { opacity: 1; }
.project-dialog {
  position: fixed; z-index: 210; inset: 0;
  display: grid; place-items: center; padding: var(--gutter);
  pointer-events: none;
}
.dialog-inner {
  position: relative; width: min(960px, 100%); max-height: 90vh; overflow: auto;
  background: var(--paper); border: 1px solid var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  pointer-events: auto;
  transform: translateY(16px) scale(0.99); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.project-dialog.show .dialog-inner { transform: none; opacity: 1; }
.dialog-visual { position: relative; min-height: 320px; background: var(--paper-2); overflow: hidden; }
.dialog-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.dialog-body { padding: clamp(1.8rem, 3vw, 2.8rem); }
.dialog-eyebrow {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3); margin: 0 0 0.8rem;
}
.dialog-title {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1; margin: 0 0 1rem; outline: none;
}
.dialog-desc { color: var(--ink-2); margin: 0 0 1.8rem; }
.dialog-facts { margin: 0; border-top: var(--rule); padding-top: 1.4rem; display: grid; gap: 0.9rem; }
.dialog-facts div { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; }
.dialog-facts dt {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.dialog-facts dd { margin: 0; color: var(--ink); font-size: 0.95rem; }
.dialog-close {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 3;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line); cursor: pointer;
  color: var(--ink); transition: background 0.2s ease, color 0.2s ease;
}
.dialog-close:hover { background: var(--ink); color: var(--paper); }
body.dialog-open { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid,
  .approach-grid,
  .studio-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .approach-head { position: static; }
  .hero-visual { order: -1; max-width: 460px; }
  .studio-visual { max-width: 460px; }
  .dialog-inner { grid-template-columns: 1fr; }
  .dialog-visual { min-height: 220px; aspect-ratio: 16/9; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .site-nav { gap: 0.9rem; }
  .site-nav a:not(.nav-cta) { display: none; }  /* keep Enquire visible on small screens */
  .works-grid { grid-template-columns: 1fr; }
  .principle { grid-template-columns: auto 1fr; }
  .principle-fig { display: none; }
  .studio-facts { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .reveal-stage { aspect-ratio: 4 / 3; }
}

/* ============================================================
   MOTION / entrance reveals, disabled for reduced motion
   ============================================================ */
.reveal-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-on-scroll.in { opacity: 1; transform: none; }

.axo-piece { transform-box: fill-box; transform-origin: center; }
.axo.assemble .axo-piece { animation: axoIn 0.7s cubic-bezier(.2,.7,.2,1) backwards; }
.axo.assemble .axo-piece:nth-child(1) { animation-delay: 0.05s; }
.axo.assemble .axo-piece:nth-child(2) { animation-delay: 0.15s; }
.axo.assemble .axo-piece:nth-child(3) { animation-delay: 0.25s; }
.axo.assemble .axo-piece:nth-child(4) { animation-delay: 0.35s; }
.axo.assemble .axo-piece:nth-child(5) { animation-delay: 0.45s; }
@keyframes axoIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.axo .axo-light { opacity: 0; }
.axo.assemble .axo-light { animation: lightIn 1s ease 0.6s forwards; }
@keyframes lightIn { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
  .work-figure::after { display: none; }
  .axo.assemble .axo-piece { animation: none; }
  .axo .axo-light { opacity: 1; }
  .dialog-inner, .dialog-backdrop { transition: none; }
  .nav-cta, .btn, .site-nav a::after { transition: none; }
}

/* ---- Photographic imagery (renders) ---- */
.work-figure--photo { background-size: cover; background-position: center; }
.work-figure--photo svg { display: none; }
.dialog-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo {
  width: 100%; height: auto; display: block;
  border: 1px solid rgba(42,42,40,.14);
  box-shadow: 0 30px 60px -28px rgba(20,18,14,.5);
}
