/* =========================================================
   [COMPANY NAME] — Gallery mockup stylesheet
   Cleaner, brighter, artist-targeted alternative.
   Same class hooks as the bold version; entirely re-skinned.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Inter:wght@400;500&display=swap');

:root {
  /* Cream paper / gallery wall palette */
  --ink:           #FCFAF5;   /* "dark" sections invert to gallery-wall off-white */
  --ink-soft:      #FFFFFF;
  --line-dark:     #E8E2D3;   /* soft warm divider on white sections */
  --paper:         #F5EFE3;   /* main body cream */
  --paper-soft:    #ECE3D0;   /* deeper cream for variety */
  --line-light:    #D5CCB7;   /* warm tan border on cream */

  /* Single warm accent + cool secondary */
  --accent:        #C56B47;   /* terracotta — clay, ceramic studio */
  --accent-soft:   #EBD3BC;
  --accent-warm:   #6B8FA3;   /* dusty slate-blue — overcast studio light */

  /* Text */
  --text-light:    #1B1A17;   /* dark ink — readable on white "ink" sections */
  --text-mute-light: #6B6862;
  --text-mute-dark:  #88847C;

  --radius: 2px;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 64px);
  --display: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:    ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
a.inline-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: var(--accent);
  transition: text-decoration-color 0.2s ease;
}
a.inline-link:hover { text-decoration-color: var(--text-light); }

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(72px, 10vw, 160px) 0; }
.section--ink { background: var(--ink); color: var(--text-light); }
.section--paper { background: var(--paper); }
.section--soft { background: var(--paper-soft); }
.divider { border: 0; border-top: 1px solid var(--line-light); margin: 0; }
.section--ink .divider { border-top: 1px solid var(--line-dark); }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  color: var(--text-light);
  border-bottom: 1px solid var(--line-light);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 22px; height: 22px;
  background: transparent;
  border: 1.25px solid var(--text-light);
  border-radius: 50%;
  position: relative;
  box-shadow: none;
}
.brand__mark::after {
  content: "";
  position: absolute; inset: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.brand__lockup {
  display: block;
  height: 96px;
  width: auto;
}
@media (max-width: 720px) {
  .brand__lockup { height: 64px; }
}
.nav { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.nav a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text-light);
  opacity: 0.7;
  position: relative;
}
.nav a:hover { opacity: 1; color: var(--accent); }
.nav a[aria-current="page"] { opacity: 1; color: var(--accent); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
}

.nav a.btn--primary,
.nav a.btn--primary:hover,
.nav a.btn--primary[aria-current="page"] {
  color: var(--ink);
  opacity: 1;
}
.nav a.btn--primary[aria-current="page"]::after { display: none; }
.nav a.btn--ghost-light,
.nav a.btn--ghost-light:hover,
.nav a.btn--ghost-light[aria-current="page"] {
  color: var(--text-light);
  opacity: 1;
}

/* ---------- Buttons (outlined, minimal) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--body);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 15px;
  border-radius: 999px;
  border: 1.25px solid var(--text-light);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn--primary {
  background: var(--text-light);
  color: var(--ink);
  border-color: var(--text-light);
}
.btn--primary:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn--ghost-light {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}
.btn--ghost-light:hover {
  background: var(--text-light);
  color: var(--ink);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}
.btn--ghost-dark:hover { background: var(--text-light); color: var(--ink); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px; background: var(--accent);
}
.section--paper .eyebrow,
.section--soft .eyebrow,
.section--ink .eyebrow { color: var(--accent); }
.section--paper .eyebrow::before,
.section--soft .eyebrow::before,
.section--ink .eyebrow::before { background: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--display);
  margin: 0 0 0.4em;
  letter-spacing: -0.015em;
  line-height: 1.08;
  font-weight: 400;
  color: var(--text-light);
}
.h-hero {
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.h-display { font-size: clamp(36px, 5vw, 64px); font-variation-settings: "opsz" 96; }
.h-section { font-size: clamp(28px, 3.4vw, 44px); font-variation-settings: "opsz" 64; }
.h-card    { font-size: clamp(20px, 2.1vw, 26px); font-variation-settings: "opsz" 32; font-weight: 500; }

p.lead {
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.65;
  max-width: 60ch;
  color: var(--text-light);
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-light);
  padding: clamp(100px, 14vw, 200px) 0 clamp(100px, 13vw, 180px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}
.hero__inner { position: relative; z-index: 3; }
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  white-space: nowrap;
}
.hero__sub {
  margin-top: 32px;
  max-width: 56ch;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text-mute-light);
  line-height: 1.6;
}
.hero__ctas { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Line-art motif: subtle topographic / hatching texture, fading from one corner */
.pointcloud {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 22px, rgba(27,26,23,0.05) 22px, rgba(27,26,23,0.05) 22.6px),
    repeating-linear-gradient(135deg, transparent 0, transparent 30px, rgba(27,26,23,0.04) 30px, rgba(27,26,23,0.04) 30.6px);
  mask-image: radial-gradient(ellipse at 78% 38%, black 0%, black 22%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 78% 38%, black 0%, black 22%, transparent 70%);
}

/* Line-art vessel illustration in hero — purely decorative, on top of pointcloud */
.hero::after,
.pageheader::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-48%);
  width: clamp(180px, 24vw, 300px);
  aspect-ratio: 7 / 10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 400' fill='none' stroke='%231B1A17' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'><path d='M118 32 L162 32 L162 54 Q174 64 178 84 Q188 124 196 174 Q204 232 198 282 Q192 332 174 360 L106 360 Q88 332 82 282 Q76 232 84 174 Q92 124 102 84 Q106 64 118 54 Z'/><ellipse cx='140' cy='86' rx='36' ry='4' opacity='0.6'/><ellipse cx='140' cy='140' rx='50' ry='5' opacity='0.6'/><ellipse cx='140' cy='196' rx='60' ry='5.5' opacity='0.6'/><ellipse cx='140' cy='256' rx='60' ry='5.5' opacity='0.6'/><ellipse cx='140' cy='316' rx='52' ry='5' opacity='0.6'/><line x1='30' y1='196' x2='76' y2='196' stroke-dasharray='3 5'/><line x1='204' y1='196' x2='250' y2='196' stroke-dasharray='3 5'/><circle cx='25' cy='196' r='2.4' fill='%23C56B47' stroke='none'/><circle cx='255' cy='196' r='2.4' fill='%23C56B47' stroke='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
  opacity: 0.92;
}
@media (max-width: 880px) {
  .hero::after, .pageheader::after { display: none; }
}

/* ---------- Stats row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}
.stats__item {
  padding: 40px var(--pad);
  border-right: 1px solid var(--line-dark);
}
.stats__item:last-child { border-right: 0; }
.stats__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.025em;
  color: var(--text-light);
  line-height: 1;
  font-variation-settings: "opsz" 96;
}
.stats__label {
  margin-top: 12px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute-dark);
}

/* ---------- Grids ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
@media (max-width: 880px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--ink-soft);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: border-color 0.2s ease;
}
.card:hover { border-color: var(--accent); }
.section--ink .card {
  background: var(--paper);
  border-color: var(--line-light);
}
.card__num {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}
.card p { color: var(--text-mute-light); }

/* ---------- Pull quote ---------- */
.pullquote {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.015em;
  line-height: 1.22;
  max-width: 22ch;
  font-variation-settings: "opsz" 96;
}
.pullquote span { color: var(--accent); font-style: italic; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--text-light);
  padding: 90px 0 40px;
  border-top: 1px solid var(--line-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
.footer h4 {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; }
.footer a { color: var(--text-mute-light); font-size: 15px; }
.footer a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-mute-dark);
}
.footer__legal {
  max-width: 60ch;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mute-light);
}

/* ---------- Long-form / legal pages ---------- */
.legal-shell {
  background: var(--paper);
  padding: clamp(72px, 10vw, 140px) 0;
}
.legal { max-width: 720px; margin: 0 auto; }
.legal .eyebrow { color: var(--accent); }
.legal .eyebrow::before { background: var(--accent); }
.legal h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 14px;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.legal .updated {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute-dark);
  margin-bottom: 56px;
}
.legal h2 {
  font-size: 18px;
  margin: 52px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  font-family: var(--body);
  color: var(--text-light);
}
.legal h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 16px;
}
.legal h3 { font-size: 18px; margin: 32px 0 10px; font-weight: 500; font-family: var(--display); font-style: italic; }
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: #2a2823; }
.legal ul { padding-left: 24px; }
.legal a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent); }

/* ---------- Page header (non-home) ---------- */
.pageheader {
  background: var(--ink);
  color: var(--text-light);
  padding: clamp(90px, 12vw, 160px) 0 clamp(56px, 8vw, 110px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}
.pageheader .pointcloud { opacity: 0.6; }
.pageheader .container { position: relative; z-index: 3; }
.pageheader h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 18ch;
  font-variation-settings: "opsz" 144;
}
.pageheader h1 em { font-style: italic; color: var(--accent); }
.pageheader p {
  margin-top: 22px;
  max-width: 56ch;
  font-size: clamp(17px, 1.55vw, 21px);
  color: var(--text-mute-light);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--ink-soft);
  color: var(--text-light);
  padding: clamp(36px, 4vw, 56px);
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  position: relative;
}
.contact-card h3 {
  font-size: clamp(26px, 2.5vw, 34px);
  margin-bottom: 26px;
  font-style: italic;
  font-family: var(--display);
  font-weight: 400;
}
.contact-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  flex: 0 0 110px;
  padding-top: 4px;
  font-weight: 500;
}
.contact-row .value { flex: 1; line-height: 1.6; color: var(--text-light); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  color: var(--text-mute-dark);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line-light);
  background: var(--ink-soft);
  font-family: var(--body);
  font-size: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--text-light);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}
.consent {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mute-light);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.consent input { width: auto; }

/* ---------- FAQ ---------- */
.faq details {
  border-top: 1px solid var(--line-light);
  padding: 26px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line-light); }
.faq summary {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-light);
  font-style: italic;
}
.faq summary::after {
  content: "+";
  font-family: var(--body);
  color: var(--accent);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.2s ease;
  font-style: normal;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary::-webkit-details-marker { display: none; }
.faq .answer { padding-top: 16px; max-width: 70ch; color: var(--text-mute-light); }

/* ---------- Product page specifics ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) 0;
  border-top: 1px solid var(--line-light);
}
.feature-row:first-of-type { border-top: 0; }
.feature-row:nth-child(even) .feature-row__media { order: -1; }
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-row__media { order: 0; }
}
/* Media boxes: clean line-art frame instead of gradient swatch */
.feature-row__media {
  aspect-ratio: 4 / 3;
  background: var(--ink-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  position: relative;
  overflow: hidden;
}
.feature-row__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(27,26,23,0.04) 18px 18.6px);
}
.feature-row__media::after {
  content: "device sketch";
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute-dark);
  background: var(--ink-soft);
  padding: 6px 10px;
  border: 1px solid var(--line-light);
  border-radius: 99px;
}
/* When an image fills the slot, drop placeholder background, stripes, and caption */
.feature-row__media:has(img) { background: transparent; border-color: transparent; }
.feature-row__media:has(img)::before,
.feature-row__media:has(img)::after { content: none; }
.feature-row__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .team { grid-template-columns: 1fr; } }
.team__card {
  background: var(--ink-soft);
  border: 1px solid var(--line-light);
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}
.team__card:hover { border-color: var(--accent); }
.team__avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 1.25px solid var(--line-light);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.team__avatar::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.team__avatar img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__avatar--lg {
  width: 140px;
  height: 140px;
}
.team__avatar--lg::before {
  font-size: 46px;
}
.team__name { font-family: var(--display); font-weight: 500; font-size: 19px; }
.team__role { font-family: var(--body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 6px 0 10px; font-weight: 500; }
.team__bio { font-size: 14px; line-height: 1.6; color: var(--text-mute-light); }

/* ---------- Press ---------- */
.press-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.press-list__item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid var(--line-light);
  font-size: 16px;
  transition: background 0.18s ease;
}
.press-list__item:last-child { border-bottom: 1px solid var(--line-light); }
.press-list__item:hover { background: var(--paper); padding-left: 12px; padding-right: 12px; }
.press-list__date { font-family: var(--body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute-dark); }
.press-list__arrow { font-family: var(--display); font-style: italic; color: var(--accent); font-weight: 400; font-size: 22px; }
@media (max-width: 720px) {
  .press-list__item { grid-template-columns: 1fr; gap: 6px; }
  .press-list__arrow { display: none; }
}

.brand-lockup {
  display: block;
  width: 100%;
  max-width: 880px;
  height: auto;
  margin: 0 auto;
}
.brand-lockup--spaced { margin-bottom: 56px; }

.workflow-diagram {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto clamp(56px, 8vw, 96px);
}
@media (max-width: 720px) {
  .brand-lockup--spaced { margin-bottom: 36px; }
  .workflow-diagram { margin-bottom: 48px; }
}

/* ---------- Misc ---------- */
.skip {
  position: absolute; left: -9999px; top: -9999px;
}
.placeholder {
  background: var(--accent-soft);
  padding: 1px 6px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.88em;
  color: #6E2E16;
}
.section--ink .placeholder { background: var(--accent-soft); color: #6E2E16; }
