/* =============================================================================
   COMPONENTS — references Tier-2 semantic tokens defined in primitives.css.
   Do not introduce raw colors, font sizes, or spacing values here.
   Load order: primitives.css → typography.css → styles.css.
   ============================================================================= */

/* ----- Reset ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

body {
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

.eyebrow {
  color: var(--accent);
  margin: 0 0 var(--space-16);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-16);
  min-height: var(--btn-h);
  border-radius: var(--radius);
  border: var(--border-width) solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: var(--on-dark);
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-outline {
  background: var(--surface);
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--on-dark);
}

/* ----- Utility bar ----- */
.utility-bar {
  background: var(--bar-bg);
  color: var(--on-dark-soft);
}

.utility-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-8) var(--gutter);
  min-height: var(--bar-h);
}

.utility-loc {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
}

.utility-loc svg {
  flex-shrink: 0;
  color: var(--accent-on-dark);
}

.utility-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-24);
  margin: 0;
  padding: 0;
  list-style: none;
}

.utility-meta a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  color: inherit;
  text-decoration: none;
}

.utility-meta a:hover {
  color: var(--accent-on-dark);
}

.utility-meta svg {
  flex-shrink: 0;
  color: var(--accent-on-dark);
}

/* ----- Header ----- */
.site-header {
  background: var(--surface);
  border-bottom: var(--border-width) solid var(--line);
  position: relative;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-16) var(--space-24);
  gap: var(--space-24);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
}

.logo:hover,
.logo:focus-visible {
  color: var(--accent);
}

.logo:hover .logo-word,
.logo:focus-visible .logo-word {
  color: var(--accent);
}

.logo-mark {
  width: auto;
  height: var(--logo-h);
  flex: none;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-word {
  line-height: 1;
  color: var(--brand-strong);   /* default — header (light surface) */
}

.logo-tag {
  color: var(--text-muted);
  margin-top: var(--space-4);
}

.nav ul {
  display: flex;
  gap: var(--nav-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  color: var(--text);
  padding: var(--space-4) 0;
  position: relative;
  text-decoration: none;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: var(--space-8);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-phone {
  display: none;
  align-items: center;
  justify-content: center;
  width: var(--phone-btn-w);
  height: var(--bar-h);
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--on-dark);
  box-shadow: var(--shadow-sm);
}

.mobile-phone:hover {
  background: var(--brand-strong);
}

.nav-toggle-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-close {
  display: block;
}

/* ----- Hero ----- */
.hero {
  background: var(--hero-dark);
  color: var(--on-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  min-height: 460px;
}

.hero-copy {
  padding: 70px 56px 70px max(var(--gutter), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-16);
}

.hero-copy > * {
  margin: 0;
}

.hero-copy .eyebrow {
  color: var(--accent-on-dark);
}

.hero-sub {
  color: var(--on-dark-soft);
}

.hero-ctas {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--brand-on-dark);
  color: var(--on-dark);
}

.hero .btn-primary:hover {
  background: var(--accent-on-dark);
  color: var(--surface-dark);
}

.hero-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(70px 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ----- Trust strip ----- */
.trust-strip {
  background: var(--surface-2);
  border-bottom: var(--border-width) solid var(--line);
  padding: var(--space-20) var(--gutter);
}

.trust-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-40);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  color: var(--text);
}

.trust-item .trust-cred {
  margin-top: var(--space-4);
  color: var(--text-muted);
  font-style: italic;
}

.trust-divider {
  width: var(--border-width);
  background: var(--line);
}

/* ----- Section head (eyebrow + title + deck) -----
   Universal head used by every content section. Default left-aligned.
   Modifier: .center. */
.section-head {
  display: grid;
  gap: var(--space-16);
  margin-block-end: var(--space-56);
}

.section-head > * { margin: 0; }

.section-head h2 {
  color: var(--text);
}

.section-head .deck {
  max-width: 640px;
  color: var(--text-muted);
}

.section-head.center {
  text-align: center;
}

.section-head.center .deck {
  margin-inline: auto;
}

/* ----- Services ----- */
.services {
  padding-block: var(--section-py);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-20);
}

.service-card {
  background: var(--surface);
  border: var(--border-width) solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-24) var(--space-20);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-16);
  align-items: start;
  align-content: start;
}

.service-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: block;
  grid-row: 1 / span 2;
  align-self: start;
  object-fit: contain;
  color: var(--brand); /* used by SVG fallback only */
}

.service-card h3 {
  color: var(--text);
  margin: 0 0 var(--space-8);
}

.service-card p {
  color: var(--text-muted);
  margin: 0;
}

/* Centered variant — icon stacked above text, all centered */
.service-card--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  row-gap: var(--space-12);
}

.service-card--centered .service-icon {
  width: 80px;
  height: 80px;
  grid-row: auto;
}

.services-more {
  text-align: center;
  margin-top: var(--space-40);
}

/* ----- Pull quote ----- */
.pull-quote {
  position: relative;
  padding-block: var(--moment-py);
  background: var(--brand);
  color: var(--on-dark);
  overflow: hidden;
}

.pull-quote::before {
  position: absolute;
  inset: 0;
  background: var(--pull-quote-bg);
  opacity: 0.45;
  mix-blend-mode: multiply;
  content: "";
  pointer-events: none;
}

.pull-quote::after {
  position: absolute;
  inset: 0;
  box-shadow: var(--shadow-edge-inset);
  pointer-events: none;
  content: "";
}

.pull-quote .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  text-align: center;
}

.pull-quote blockquote {
  max-width: 30ch;
  margin: 0;
}

.pull-quote blockquote::before {
  display: block;
  margin-block-end: 0.4em;
  color: var(--accent-on-dark);
  content: "\201C";
  font-size: 1em;
  line-height: 0;
}

.pull-quote .attribution {
  max-width: 30ch;
  margin: 0;
  padding-block-start: var(--space-16);
  border-top: var(--border-width) solid var(--line-on-dark);
  color: var(--on-dark-soft);
}

/* ----- Field notes (blog teasers) ----- */
.field-notes {
  padding-block: var(--section-py);
}

.field-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-40);
}

.field-note-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.field-note-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-3);
}

.field-note-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-note-card .meta {
  display: flex;
  gap: var(--space-16);
  color: var(--text-muted);
}

.field-note-card .meta span:not(:last-child)::after {
  content: "\00B7";
  margin-inline-start: var(--space-16);
}

.field-note-card h3 {
  margin: 0;
  color: var(--text);
}

.field-note-card .card-link {
  color: inherit;
  text-decoration: none;
}

/* Overlay link — h3 anchor expands its hit-area to the entire card */
.field-note-card .card-link::before {
  content: "";
  position: absolute;
  inset: 0;
}

.field-note-card .card-link:hover,
.field-note-card .card-link:focus-visible {
  color: var(--accent);
}

.field-notes-foot {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  align-items: center;
  justify-content: space-between;
  margin-block-start: var(--space-40);
  padding-block-start: var(--space-24);
  border-top: var(--border-width) solid var(--line);
  color: var(--text-muted);
}

/* ----- Service list (services page) ----- */
.service-list {
  border-block-start: var(--border-width) solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: var(--space-40);
  align-items: start;
  padding-block: var(--space-40);
  border-block-end: var(--border-width) solid var(--line);
}

.service-row-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: var(--space-24);
  background: var(--surface-2);
  border-radius: var(--radius);
}

.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-row-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.service-row-copy > * { margin: 0; }

.service-bullets {
  display: grid;
  gap: var(--space-8);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-bullets li {
  position: relative;
  padding-inline-start: var(--space-20);
}

.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 2px var(--surface);
}

/* ----- Service process (services page) ----- */
.service-process {
  padding-block: var(--section-py);
}

/* ----- Blog page ----- */
.article-archive {
  padding-block: var(--section-py);
}

/* ----- About ----- */
.about {
  padding-block: var(--section-py);
  background: var(--surface-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-56);
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.about-copy > * {
  margin: 0;
}

.about-copy .btn {
  align-self: flex-start;
}

/* ----- About page ----- */
.about-summary,
.principles,
.service-area {
  padding-block: var(--section-py);
}

.principles {
  background: var(--surface-2);
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-20);
}

.service-area-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.service-area-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8) var(--space-24);
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 720px;
}

.service-area-list li {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.service-area-list li svg {
  flex: none;
  color: var(--brand);
}

/* ----- Contact page ----- */
.contact-details {
  padding-block: var(--section-py);
  background: var(--surface);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: var(--space-56);
  align-items: start;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.contact-intro > * { margin: 0; }

.contact-intro p {
  max-width: 520px;
}

.contact-panel {
  display: grid;
  gap: var(--space-16);
  padding: var(--space-24);
  border: var(--border-width) solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-16);
  border: var(--border-width) solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--brand);
}

.contact-method.is-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--on-dark);
}

.contact-method span {
  display: grid;
  gap: var(--space-4);
  min-width: 0;
}

.contact-method strong {
  color: inherit;
}

.contact-method small {
  color: var(--text-muted);
}

.contact-method.is-primary small {
  color: var(--on-dark-soft);
}

a.contact-method:hover {
  border-color: var(--brand);
}

a.contact-method.is-primary:hover {
  background: var(--brand-strong);
}

.contact-map {
  position: relative;
  overflow: hidden;
  border-block: var(--border-width) solid var(--line);
  background: var(--surface-2);
}

.contact-map > img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 1;
  object-fit: cover;
}

.contact-map-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(var(--gutter), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
  transform: translateY(-50%);
  display: flex;
  gap: var(--space-16);
  width: min(380px, calc(100% - 48px));
  padding: var(--space-24);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--brand);
  box-shadow: var(--shadow-md);
}

.contact-map-card h2 {
  color: var(--text);
}

.contact-map-card p {
  color: var(--text);
}

/* ----- CTA banner ----- */
.cta-banner {
  position: relative;
  padding-block: var(--banner-py);
  background: var(--surface-3);
  color: var(--text);
  border-block: var(--border-width) solid var(--line);
}

.cta-inner {
  display: grid;
  grid-template-columns: 7fr 3fr;
  align-items: start;
  gap: clamp(var(--space-24), 5vw, var(--space-80));
}

.cta-lede {
  display: grid;
  gap: var(--space-8);
  min-width: 0;
}

.cta-lede > * { margin: 0; }

.cta-lede h2 {
  color: var(--text);
}

.cta-deck {
  color: var(--text-muted);
  max-width: 650px;
}

/* Right-aligned variant — duplicates .cta-lede with mirrored alignment */
.cta-lede--right {
  justify-items: end;
  text-align: right;
}

.cta-link {
  color: inherit;
  text-decoration: none;
}

.cta-link--underline {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.cta-link--with-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
}

.cta-link--with-icon svg {
  color: var(--accent);
  flex-shrink: 0;
}

.cta-link:hover,
.cta-link:focus-visible {
  color: var(--accent);
}

/* ----- Footer ----- */
.site-footer {
  background: var(--footer-bg);
  color: var(--on-dark-soft);
}

.site-footer .logo-word {
  color: var(--on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr;
  gap: var(--space-40);
  padding: var(--space-56) var(--gutter) var(--space-40);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.footer-brand p {
  margin: 0;
  color: var(--on-dark-muted);
}

.footer-brand .logo-tag {
  color: var(--on-dark-muted);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.footer-col h4 {
  margin: 0;
  color: var(--on-dark);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer-col ul li {
  margin: 0;
}

.footer-col ul li a {
  color: var(--on-dark-soft);
}

.footer-col ul li a:hover {
  color: var(--on-dark);
}

.contact-list li {
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
}

.contact-list svg {
  flex: none;
  margin-top: var(--space-4);
}

.contact-list a:hover {
  color: var(--on-dark);
}

.footer-base {
  background: var(--footer-base);
  padding: var(--space-16) 0;
  color: var(--on-dark-muted);
}

.footer-base-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--gutter);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  :root { --section-py: var(--space-56); }   /* compress section padding on tablet/mobile */

  .utility-bar {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .mobile-phone {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: var(--border-width) solid var(--line);
    box-shadow: var(--shadow-md);
    z-index: 50;
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: var(--space-4) var(--space-20);
  }

  .nav li + li {
    border-top: var(--border-width) solid var(--line);
  }

  .nav a {
    display: block;
    padding: var(--space-16) 0;
  }

  .nav a.active::after {
    display: none;
  }

  .header-row {
    gap: var(--space-12);
  }

  .hero-copy {
    padding: var(--space-56) var(--space-40) var(--space-56) var(--gutter);
  }

  .service-row {
    grid-template-columns: minmax(140px, 180px) 1fr;
    gap: var(--space-24);
  }

  .principles-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-archive .field-notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: var(--space-40);
  }

  .contact-map > img {
    aspect-ratio: 3 / 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-row {
    gap: var(--space-24);
  }
}

@media (max-width: 800px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }

  .cta-lede--right {
    justify-items: start;
    text-align: left;
    border-block-start: var(--border-width) solid var(--line);
    padding-block-start: var(--space-16);
  }
}

@media (max-width: 760px) {
  .header-row {
    padding: var(--space-12) var(--space-16);
  }

  .logo-mark {
    height: var(--logo-h-sm);
  }

  .logo-tag {
    display: none;
  }

  /* Hero — overlay variant: image becomes full-bleed background, copy sits on top */
  .hero--overlay .hero-grid {
    display: block;
    position: relative;
    min-height: 430px;
    overflow: hidden;
  }

  .hero--overlay .hero-copy {
    position: relative;
    z-index: 1;
    min-height: 430px;
    max-width: 430px;
    padding: var(--space-56) var(--space-24) var(--space-40);
    gap: var(--space-24);
  }

  .hero--overlay .hero-sub {
    max-width: 360px;
  }

  .hero--overlay .hero-image {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    clip-path: none;
  }

  .hero--overlay .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--image-overlay-dark);
  }

  .hero--overlay .hero-image img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
  }

  .trust-row {
    flex-direction: column;
    gap: var(--space-16);
  }

  .trust-divider {
    width: 60%;
    height: var(--border-width);
    align-self: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: var(--space-24);
    padding-block: var(--space-24);
  }

  .service-row-media {
    max-width: 200px;
  }

  .field-notes-grid,
  .article-archive .field-notes-grid {
    grid-template-columns: 1fr;
  }

  .field-notes-foot {
    justify-content: flex-start;
  }

  .service-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: var(--space-12);
  }

  .service-icon {
    grid-row: auto;
  }

  .contact-panel {
    padding: var(--space-16);
  }

  .contact-map > img {
    aspect-ratio: 4 / 3;
  }

  .contact-method {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-24);
    padding: var(--space-40) var(--space-20);
  }

  .footer-base-row {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .principles-list {
    grid-template-columns: 1fr;
  }

  /* Centered variant flips to icon-left list */
  .service-card--centered {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
    column-gap: var(--space-16);
    row-gap: 0;
  }

  .service-card--centered .service-icon {
    width: 80px;
    height: 80px;
    grid-row: 1 / span 2;
  }
}

/* =============================================================================
   WIREFRAME PLACEHOLDERS
   Mirrors <img> behavior in each container so swapping a placeholder for a
   real <img> requires no CSS changes.
   ============================================================================= */
.placeholder {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-image .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-image .placeholder {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* =============================================================================
   UTILITIES — single-purpose helper classes.
   MUST live at the end of styles.css so they win the cascade against
   component selectors of equal specificity (e.g. `.parent > *`).
   ============================================================================= */

/* Adds 16px top margin — for elements that need a deliberate offset
   above the parent stack's default gap (e.g. CTA buttons after copy). */
.u-offset-top {
  margin-top: var(--space-16);
}
