/* ---------- Accessibilité ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Reset & base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0d0d0d;
  --bg-alt: #161616;
  --fg: #FDF0D7;
  --fg-muted: #a8a8a8;
  --border: #2a2a2a;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled-past-hero {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.nav--overlay-logo {
  justify-content: flex-end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 120px;
  width: auto;
}

.logo-tagline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  line-height: 1.2;
  color: var(--fg);
  text-align: left;
  white-space: nowrap;
}

/* ---------- Tagline hero → navbar FLIP ---------- */
.hero-tagline-wrap {
  transform-origin: top left;
  will-change: transform;
  position: relative;
  display: inline-block;
}

.hero-tagline-wrap.tagline-flipping {
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-tagline-wrap.scrolled {
  position: fixed;
  z-index: 200;
}

.hero-tagline-wrap.scrolled .hero-tagline {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
  margin: 0;
}

.hero-tagline-wrap.scrolled .tagline-we   { display: none; }
.hero-tagline-wrap.scrolled .tagline-word { display: block; text-transform: capitalize; }
.hero-tagline-wrap.scrolled .tagline-dot  { display: none; }

.hero-tagline-wrap.scrolled .resonance {
  font-weight: 300;
  display: inline;
}

.hero-tagline-wrap.scrolled .tagline-lens,
.hero-tagline-wrap.tagline-flipping .tagline-lens { display: none; }

/* ---------- Animated logo (hero -> navbar) ----------
   Lives in the hero's normal flow at large size; on scroll it switches
   to a fixed small position in the nav. JS performs a FLIP transform so
   the move from one layout to the other reads as one smooth animation. */
.site-logo {
  display: block;
  width: clamp(264px, 72vw, 600px);
  margin: 0 auto 0.2rem;
  transform-origin: top left;
  position: relative;
}

.logo-lens {
  position: absolute;
  width: 110px;
  height: 110px;
  clip-path: circle(55px at 50% 50%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.75);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
  filter: url(#f-cream);
}

.logo-lens-inner {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  display: block;
  pointer-events: none;
}

.logo-lens.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.site-logo-img {
  display: block;
  width: 100%;
  height: auto;
  filter: url(#f-cream);
  transform: translateZ(0);
}


.site-logo.scrolled {
  position: fixed;
  top: 10px;
  left: 20px;
  width: 120px;
  margin: 0;
  z-index: 200;
}

.site-logo {
  will-change: transform;
}

.site-logo.flipping {
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--fg);
}

/* ---------- Lang switch ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-left: 2.5rem;
}

.lang-switch a {
  color: var(--fg-muted);
  transition: color 0.2s ease;
}

.lang-switch a:hover,
.lang-switch a.active {
  color: var(--fg);
}

.lang-sep {
  color: var(--border);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--fg);
  font-weight: 300;
  line-height: 1.65;
  margin-top: 0;
  transform: translateZ(0);
}


.tagline-lens {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.75);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}

.tagline-lens.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.tagline-lens-inner {
  position: absolute;
  transform-origin: 0 0;
  white-space: nowrap;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 300;
  line-height: 1.65;
  color: #FDF0D7;
  pointer-events: none;
}

.resonance-copy {
  font-weight: 500;
}

.resonance {
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.024em;
  animation: resonance-breathe 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes resonance-breathe {
  0%, 100% {
    letter-spacing: 0.024em;
    opacity: 0.65;
    text-shadow: none;
  }
  50% {
    letter-spacing: 0.12em;
    opacity: 1;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.42), 0 0 48px rgba(255, 255, 255, 0.12);
  }
}


/* ---------- Scroll snap ---------- */
.hero {
  scroll-snap-align: start;
}

.work,
.studio-gallery,
.about {
  scroll-snap-align: start;
  scroll-margin-top: 140px;
}

/* ---------- Work / Project grid ---------- */
.work {
  padding: 6rem 0 14rem;
  overflow: hidden;
  background: #FDF0D7;
}

.work .section-title {
  color: #0d0d0d;
}

.work .filter {
  color: rgba(13, 13, 13, 0.45);
}

.work .filter:hover {
  color: #0d0d0d;
}

.work .filter.active {
  color: #0d0d0d;
  font-weight: 500;
}

.filters-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter {
  background: transparent;
  border: none;
  color: var(--fg-muted);
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
  font-weight: 300;
}

.filter:hover {
  color: #0d0d0d;
}

.filter.active {
  color: #0d0d0d;
  font-weight: 500;
}

.grid-wrap {
  margin-left: -16rem;
  margin-right: -16rem;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.project-card {
  position: relative;
  aspect-ratio: 2.3 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
  cursor: pointer;
}

.card-thumb {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.5s ease;
}

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

.project-card.has-video:hover .card-thumb {
  opacity: 0;
}

.card-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .card-video {
  opacity: 1;
}

.card-video iframe {
  position: absolute;
  width: 100%;
  height: 129.4%;
  top: -14.7%;
  left: 0;
  border: none;
}

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.4s ease;
}


.card-meta {
  display: none;
}

.card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: top left;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FDF0D7;
  white-space: normal;
  max-width: 90%;
  text-align: center;
  transition: top 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              left 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
}

.project-card:hover .card-title {
  top: 1.4rem;
  left: 1.4rem;
  transform: scale(0.55);
  opacity: 0.75;
}

[data-id="silex-and-the-city"] .card-title {
  top: 68%;
}

[data-id="mcfly-carlito"] .card-title {
  white-space: nowrap;
}

[data-id="amateur"] .card-thumb img {
  object-position: center 15%;
}

[data-id="show-noel-must-go-on"] .card-thumb img {
  object-position: center 20%;
}

[data-id="demain-nous-appartient"] .card-overlay,
[data-id="ici-tout-commence"] .card-overlay,
[data-id="haters"] .card-overlay,
[data-id="true-story"] .card-overlay,
[data-id="kev-adams-le-vrai-moi"] .card-overlay,
[data-id="redouane-velodrome"] .card-overlay,
[data-id="show-noel-must-go-on"] .card-overlay,
[data-id="who"] .card-overlay,
[data-id="mcfly-carlito"] .card-overlay,
[data-id="si-chatgpt-etait-un-employe"] .card-overlay,
[data-id="dans-lombre"] .card-overlay,
[data-id="qui-est-limposteur"] .card-overlay,
[data-id="firn"] .card-overlay,
[data-id="adobe"] .card-overlay,
[data-id="eleclerc"] .card-overlay {
  background: rgba(0, 0, 0, 0.55);
}

[data-id="la-femme-objet"] .card-thumb img {
  transform: scale(1.2);
}

[data-id="la-femme-objet"] .card-title,
[data-id="paris-la-nuit-podcast"] .card-title,
[data-id="gentle-mates"] .card-title,
[data-id="demain-nous-appartient"] .card-title {
  white-space: nowrap;
}

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.video-modal-inner {
  position: relative;
  width: min(92vw, 1140px);
  aspect-ratio: 16 / 9;
}

.video-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s ease;
}

.video-modal-close:hover {
  color: #FDF0D7;
}

.video-modal-player {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 2px;
  overflow: hidden;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


.grid-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 0;
  width: 52px;
  height: 52px;
  background: rgba(13, 13, 13, 0.8);
  border: none;
  border-radius: 50%;
  color: #FDF0D7;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  transition: background 0.25s ease;
  animation: expand-btn-bounce 2.2s ease-in-out infinite;
  scroll-snap-align: end;
  scroll-margin-bottom: 8rem;
}

.grid-expand-btn:hover,
.grid-expand-btn:focus {
  background: #0d0d0d;
  animation-play-state: paused;
}

.grid-expand-btn svg {
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-expand-btn.expanded svg {
  transform: rotate(180deg);
}

.grid-expand-btn[hidden] {
  display: none;
}

@keyframes expand-btn-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}


/* ---------- Studio gallery ---------- */
.studio-gallery {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.studio-gallery .section-title {
  margin-bottom: 3rem;
}

.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 24px;
}

.studio-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
}

.studio-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.studio-photo:hover .studio-photo-img {
  transform: scale(1.05);
}

.studio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: background 0.4s ease;
}

.studio-photo:hover .studio-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.studio-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: top left;
  z-index: 3;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FDF0D7;
  white-space: nowrap;
  transition: top 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              left 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
}

.studio-photo:hover .studio-title {
  top: 1.4rem;
  left: 1.4rem;
  transform: scale(0.55);
  opacity: 0.75;
}

.studio-specs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(10px);
  z-index: 3;
  list-style: none;
  text-align: center;
  width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.studio-specs li {
  color: rgba(253, 240, 215, 0.9);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 2.4;
}

.studio-photo:hover .studio-specs {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

/* ---------- About ---------- */
.about {
  padding: 6rem 0;
  border-top: none;
  background: #FDF0D7;
}

.about-inner > p,
.about-inner .about-founder {
  max-width: 900px;
}

.about .section-title {
  color: #0d0d0d;
}

.about p {
  color: rgba(13, 13, 13, 0.65);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about p strong {
  color: #0d0d0d;
  font-weight: 500;
}

.about-founder {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(13, 13, 13, 0.12);
}

.about-founder-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.45) !important;
  margin-bottom: 1rem !important;
}

/* ---------- Clients ---------- */
.clients {
  padding: 2.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 13, 13, 0.12);
}

.clients-track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: clients-scroll 28s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes clients-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Contact CTA ---------- */
.contact-cta {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  scroll-snap-align: start;
  scroll-margin-top: 140px;
}

.cta-headline {
  display: flex;
  flex-direction: column;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.cta-line {
  display: block;
}

.cta-resonate {
  font-style: italic;
  font-weight: 500;
}

.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--fg-muted);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.cta-email:hover {
  color: var(--fg);
  border-bottom-color: var(--fg-muted);
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-email:hover .cta-arrow {
  transform: translateX(5px);
}

.cta-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.cta-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.cta-address {
  font-style: normal;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--fg-muted);
  text-align: right;
}

.cta-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.cta-instagram:hover {
  color: var(--fg);
  border-bottom-color: var(--fg-muted);
}

@media (max-width: 640px) {
  .cta-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .cta-address {
    text-align: left;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-inner a:hover {
  color: var(--fg);
}

/* ---------- Contact page ---------- */
.contact-page {
  padding: 5rem 0 6rem;
  min-height: 60vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info p {
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.contact-info .label {
  color: var(--fg);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--fg-muted);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .studio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .studio-photo:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .nav-links {
    gap: 0.7rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .hero-tagline-wrap.scrolled {
    display: none;
  }

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

  .section-title {
    font-size: 1.4rem;
  }

  .work,
  .about,
  .studio-gallery,
  .contact-cta {
    padding: 4rem 0;
  }

  .studio-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .studio-photo:nth-child(3) {
    grid-column: span 1;
  }

  html {
    scroll-snap-type: y proximity;
  }

  .nav {
    height: 72px;
  }

  .site-logo.scrolled {
    width: 80px;
  }

  .grid-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .work,
  .studio-gallery,
  .about,
  .contact-cta {
    scroll-margin-top: 72px;
  }

  .card-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .cta-headline {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}
