/*
 * ItalianCloser-adjacent palette: deeper surfaces + brighter type ramp for
 * stronger text/background contrast while staying restrained and premium.
 */
:root {
  --bg-0: #040406;
  --bg-1: #0b0b10;
  --bg-2: #12121a;
  --blue: #60a5fa;
  --blue-hover: #3b82f6;
  --blue-dim: rgba(96, 165, 250, 0.12);
  --blue-mid: rgba(96, 165, 250, 0.26);
  --blue-h: rgba(96, 165, 250, 0.42);
  --green: #10b981;
  --t0: #f8fafc;
  --t1: #cbd5e1;
  --t2: #8b9cb3;
  --border: rgba(248, 250, 252, 0.1);
  --border-h: rgba(248, 250, 252, 0.22);
  --radius: 10px;
  --content-max: 1180px;
  --space-gutter: clamp(1.2rem, 5vw, 3.5rem);
  --space-section: clamp(2.1rem, 5.2vw, 4rem);
  --space-card: clamp(1.5rem, 3.8vw, 3rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg-0);
  color: var(--t1);
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-0);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-2);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.45);
}

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

.ic-brand {
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem var(--space-gutter);
  background: linear-gradient(
    180deg,
    rgba(2, 3, 10, 0.36) 0%,
    rgba(2, 3, 10, 0.1) 45%,
    rgba(2, 3, 10, 0) 100%
  );
}

.hero > .site-header {
  position: absolute;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu a {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  color: var(--t1);
}

.menu a:hover {
  color: var(--t0);
  border-color: var(--border-h);
}

main {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-section) var(--space-gutter) clamp(4rem, 10vw, 6rem);
}

.article-page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-section) var(--space-gutter) clamp(4rem, 10vw, 6rem);
}

.article-page__back {
  margin: 0 0 1rem;
  max-width: none;
  font-size: 0.875rem;
}

.article-page__back a {
  color: var(--blue);
}

.article-page__back a:hover {
  color: var(--blue-hover);
}

.article-page .section-card > h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--t0);
}

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-0);
}

/* Full-bleed media; nav sits above as .hero > .site-header. `<picture>` swaps desktop vs mobile. */
.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  background-color: var(--bg-0);
  background-image:
    radial-gradient(ellipse 100% 72% at 50% -18%, var(--blue-mid), transparent 52%),
    radial-gradient(ellipse 78% 52% at 100% 38%, var(--blue-dim), transparent 42%),
    radial-gradient(ellipse 58% 48% at 0% 82%, var(--blue-dim), transparent 38%),
    linear-gradient(185deg, var(--bg-1) 0%, var(--bg-0) 42%, #020203 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-picture img.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Portrait mobile: keep subject biased slightly upward (tweak if needed). */
@media (max-width: 899px) {
  .hero-picture img.hero-image {
    object-position: center 18%;
  }
}

/* Landscape desktop asset: full bleed with `cover` (export a wide hero). */
@media (min-width: 900px) {
  .hero-picture img.hero-image {
    object-position: center 22%;
  }
}

/* Cinematic read: global tone + edge vignette (text sits in the image, not a panel). */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 108% 88% at 50% 44%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.36) 68%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 3, 10, 0.38) 0%,
      rgba(2, 3, 10, 0.06) 40%,
      rgba(2, 3, 10, 0.22) 100%
    );
}

/* Soft bottom fade into page background (stacked over ::before). */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(240px, 50vh, 640px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(4, 4, 8, 0) 0%,
    rgba(4, 4, 8, 0.05) 22%,
    rgba(4, 4, 8, 0.42) 52%,
    rgba(4, 4, 8, 0.88) 80%,
    var(--bg-0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(5.5rem, 14vh, 8rem) var(--space-gutter) clamp(4.5rem, 12vh, 6rem);
}

.hero-center {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 44rem);
  margin-inline: auto;
  padding: 0 var(--space-gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.55rem, 1.4vh, 0.9rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(248, 250, 252, 0.88);
  font-size: 0.6875rem;
  font-weight: 600;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(0.625rem, 1.15vw, 0.75rem);
  letter-spacing: 0.17em;
  font-weight: 600;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.8),
    0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title {
  margin: 0;
  font-size: clamp(1.92rem, 5.1vw, 3.45rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: #fafafa;
  white-space: nowrap;
  text-align: center;
  max-width: 100%;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.88),
    0 3px 18px rgba(0, 0, 0, 0.5),
    0 0 44px rgba(0, 0, 0, 0.32);
}

.hero-copy {
  margin: 0 auto;
  color: var(--t1);
  max-width: 50ch;
  font-size: 1rem;
}

.down-arrows {
  position: absolute;
  bottom: clamp(1rem, 4vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0.75rem;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.down-arrows span {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(248, 250, 252, 0.92);
  border-bottom: 2px solid rgba(248, 250, 252, 0.92);
  transform: rotate(45deg);
  margin: -5px 0;
  background: none;
}

.section {
  margin-top: var(--space-section);
}

.section:first-child {
  margin-top: 0;
}

.section-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-card);
  transition: border-color 0.2s;
}

.section-card:hover {
  border-color: var(--border-h);
}

h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--t0);
}

p {
  margin: 0 0 0.85rem;
  max-width: 65ch;
  color: var(--t1);
}

/* Full-width copy on section cards that are text-only (About keeps 65ch in the text column). */
.section-card:not(.about-grid) > p {
  max-width: none;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.about-grid > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.placement-hub-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4.5vw, 2.75rem);
}

.placement-hub__copy h2 {
  margin: 0 0 0.85rem;
}

.placement-hub__text-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 1.65rem);
  align-items: center;
}

.placement-hub__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.placement-hub__body p {
  margin: 0;
  max-width: none;
}

.placement-hub__lead {
  color: var(--t0);
  font-weight: 500;
}

.placement-hub__question {
  color: var(--t0);
  font-weight: 500;
}

.placement-hub-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  /* ~original card scale, slightly reduced */
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
}

.placement-hub__actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 0;
}

.placement-hub-visual__title {
  margin: 0;
  font-size: clamp(0.75rem, 1.65vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t0);
  line-height: 1.45;
  text-align: center;
  white-space: normal;
}

.placement-hub-visual__title .ic-brand {
  display: inline;
  font-size: inherit;
  letter-spacing: 0.14em;
}

/* YouTube embed: fixed 16:9, not stretched by grid row height; width caps like a classic embed */
.about-video {
  position: relative;
  width: 100%;
  max-width: min(100%, 34rem);
  margin-inline: auto;
  align-self: center;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.about-video__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.proof-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(0.85rem, 2.5vw, 1.25rem);
}

.proof {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  background: var(--bg-2);
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.proof:hover {
  border-color: var(--border-h);
}

.proof-number {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--t0);
  line-height: 1;
}

.proof-label {
  margin: 0.35rem 0 0;
  color: var(--t2);
  font-size: 13px;
  font-weight: 500;
}

.resource-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.15rem, 3vw, 1.65rem);
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 1.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.resource-card:hover {
  border-color: var(--border-h);
  background: rgba(18, 18, 26, 0.92);
  box-shadow: 0 0 0 1px var(--blue-dim);
}

.resource-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.resource-card__media {
  width: clamp(80px, 14vw, 150px);
  aspect-ratio: 4 / 3;
  align-self: center;
  border-radius: calc(var(--radius) - 2px);
  background: var(--bg-1);
  color: var(--t2);
  font-size: 0.8125rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.resource-card__media picture {
  display: contents;
}

.resource-card__media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.resource-card__title {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--t0);
  line-height: 1.3;
}

.resource-card__desc {
  margin: 0;
  max-width: none;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--t2);
}

.resource-card--social {
  cursor: default;
}

.resource-card--social .resource-card__title {
  margin-bottom: 0.45rem;
}

.resource-card__social-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  width: 100%;
  max-width: 22rem;
  align-self: center;
}

.resource-card__social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.5rem 0.65rem;
  margin: 0;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid transparent;
  background: var(--bg-1);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.resource-card__social-row:hover {
  border-color: var(--border-h);
  background: rgba(11, 11, 16, 0.95);
}

.resource-card__social-row:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.resource-card__social-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
  color: var(--t0);
}

.resource-card__handle {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--t1);
  line-height: 1.5;
}

.resource-card__social-row:hover .resource-card__handle {
  color: var(--t0);
}

.section--rule {
  margin-top: clamp(2.5rem, 6vw, 3.75rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  padding: 0;
}

.section-rule {
  margin: 0;
  border: none;
  border-top: 1px solid var(--border);
  opacity: 1;
}

/* Full-bleed slow marquee: lifestyle wall, items exit left and loop from the right. */
.photo-marquee-section {
  --photo-marquee-gap: clamp(1rem, 2.8vw, 1.65rem);
  --photo-marquee-duration: 150s;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(1.25rem, 3.25vw, 2rem);
  margin-bottom: clamp(1.75rem, 4.5vw, 2.75rem);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border: none;
  background: transparent;
}

.photo-marquee {
  width: 100%;
}

.photo-marquee__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.photo-marquee__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: max-content;
  gap: var(--photo-marquee-gap);
  animation: photo-marquee-scroll var(--photo-marquee-duration) linear infinite;
  will-change: transform;
}

.photo-marquee__track--paused {
  animation-play-state: paused;
}

.photo-marquee__item {
  flex: 0 0 auto;
  width: clamp(180px, 25vw, 400px);
  aspect-ratio: 3 / 4;
  border-radius: clamp(10px, 1.5vw, 16px);
  border: none;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(96, 165, 250, 0.08) 0%, transparent 42%),
    linear-gradient(210deg, rgba(18, 18, 26, 0.95) 0%, var(--bg-1) 48%, #07070c 100%);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.07);
}

.photo-marquee__item picture {
  display: contents;
}

.photo-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@keyframes photo-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-marquee__track {
    animation: none;
  }

  .photo-marquee__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.contact {
  --contact-block: clamp(3.5rem, 8vw, 5.5rem);
  margin: var(--contact-block) auto var(--contact-block);
  padding: 0;
  text-align: center;
  max-width: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

main .photo-marquee-section + .contact {
  margin-top: clamp(2.5rem, 6.25vw, 4rem);
}

.contact__title {
  margin: 0;
  font-size: clamp(1.72rem, 3.1vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--t0);
}

.contact__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.35rem, 4vw, 2rem);
  margin: 0;
}

.contact__social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t0);
  opacity: 0.92;
  transition: opacity 0.2s, color 0.2s;
}

.contact__social:hover {
  opacity: 1;
  color: #fff;
}

.contact__icon {
  width: 26px;
  height: 26px;
  display: block;
}

.contact__email {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.contact__email-label {
  margin: 0;
  max-width: none;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t2);
}

.contact__btn {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--blue);
  color: #fff;
}

.btn:hover {
  background: var(--blue-hover);
  box-shadow: 0 0 0 3px var(--blue-dim);
}

.site-footer {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.site-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3rem) var(--space-gutter) clamp(2.5rem, 5vw, 3.25rem);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 3rem;
}

.site-footer__left {
  max-width: min(42rem, 100%);
}

.site-footer__title {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #ffffff;
}

.site-footer__meta {
  margin: 0.85rem 0 0;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  margin-left: auto;
}

.site-footer__socials a {
  font-size: clamp(0.875rem, 1.75vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  transition: opacity 0.2s;
}

.site-footer__socials a:hover {
  opacity: 0.65;
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  main {
    padding-top: clamp(1.8rem, 6.5vw, 2.25rem);
    padding-bottom: clamp(3rem, 10vw, 4rem);
  }

  .section {
    margin-top: clamp(1.75rem, 6vw, 2.35rem);
  }

  .section-card {
    padding: clamp(1.15rem, 4.8vw, 1.4rem);
  }

  .hero-center {
    padding-left: min(var(--space-gutter), 1.25rem);
    padding-right: min(var(--space-gutter), 1.25rem);
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    max-width: min(100%, 19rem);
    margin-inline: auto;
  }

  .proof {
    padding: 0.85rem 0.95rem;
  }

  .menu {
    display: none;
  }

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

  .placement-hub__text-visual {
    grid-template-columns: 1fr;
    gap: clamp(1.15rem, 4.5vw, 1.65rem);
    align-items: stretch;
    justify-items: stretch;
    text-align: left;
  }

  .placement-hub__body {
    text-align: left;
    justify-self: stretch;
  }

  .placement-hub__body p {
    max-width: none;
  }

  .placement-hub-visual {
    justify-self: stretch;
    width: 100%;
    max-width: min(90%, 22.5rem);
    margin-inline: auto;
    padding: clamp(1.85rem, 10vw, 2.85rem);
    box-sizing: border-box;
  }

  .placement-hub-visual__title {
    font-size: clamp(0.78rem, 3.8vw, 0.95rem);
    line-height: 1.4;
  }

  .placement-hub__actions {
    padding-top: 1rem;
    justify-content: flex-end;
  }

  .photo-marquee-section {
    --photo-marquee-gap: clamp(0.85rem, 3vw, 1.35rem);
  }

  .photo-marquee__item {
    width: clamp(210px, 58vw, 320px);
    border-radius: clamp(12px, 2.2vw, 16px);
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .site-footer__left {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .site-footer__socials {
    margin-left: 0;
    justify-content: center;
  }
}
