  :root {
    --pink: #C8185A;
    --pink-light: #E8336E;
    --cream: #F7F3EE;
    --bone: #EDE8E0;
    --beige: #D9CFC3;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --gray: #777;
    --light-gray: #BFBAB3;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream); color: var(--black);
    font-family: 'DM Sans', sans-serif;
    cursor: none; overflow-x: hidden;
  }
  body::after {
    content: ''; position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03; pointer-events: none; z-index: 9990;
  }

  /* CURSOR */
  .cursor { position: fixed; width: 10px; height: 10px; background: var(--pink); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s, height .3s; mix-blend-mode: multiply; }
  .cursor-ring { position: fixed; width: 38px; height: 38px; border: 1.5px solid var(--pink); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .3s, height .3s, opacity .3s; opacity: .5; }
  .cursor.big { width: 5px; height: 5px; }
  .cursor-ring.big { width: 60px; height: 60px; opacity: .2; }

  /* LOADER */
  .loader { position: fixed; inset: 0; background: var(--black); z-index: 10000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; transition: opacity .9s ease, visibility .9s; }
  .loader.gone { opacity: 0; visibility: hidden; }
  .loader-word { font-size: clamp(52px,10vw,100px); color: white; letter-spacing: 0.04em; }
  .loader-word .logo-bey { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; color: var(--pink); }
  .loader-word .logo-mat { font-family: 'Bebas Neue', sans-serif; color: var(--pink); letter-spacing: 0.06em; }
  .loader-word .logo-lab { font-family: 'Bebas Neue', sans-serif; color: var(--pink); letter-spacing: 0.06em; }
  .loader-line { width: 180px; height: 1px; background: rgba(255,255,255,.12); }
  .loader-fill { height: 100%; background: var(--pink); width: 0; animation: fill 1.9s ease forwards .2s; }
  @keyframes fill { to { width: 100%; } }
  .loader-tag { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.3); }

  /* NAV LOGO — playful mixed font */
  .brand-logo { text-decoration: none; display: inline-flex; align-items: baseline; gap: 1px; line-height: 1; }
  .logo-bey { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: 1em; color: var(--pink); }
  .logo-mat { font-family: 'Bebas Neue', sans-serif; font-size: 1em; color: var(--pink); letter-spacing: 0.04em; }
  .logo-lab { font-family: 'Bebas Neue', sans-serif; font-size: 1em; color: var(--pink); letter-spacing: 0.04em; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; justify-content: space-between; align-items: center; padding: 30px 64px; transition: padding .4s, background .4s; }
  nav.stuck { padding: 18px 64px; background: rgba(247,243,238,.93); backdrop-filter: blur(12px); }
  nav .brand-logo { font-size: 28px; }
  .nav-links { display: flex; gap: 44px; list-style: none; }
  .nav-links a { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--black); text-decoration: none; transition: color .25s; }
  .nav-links a:hover { color: var(--pink); }
  .nav-btn { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 11px 26px; border: 1.5px solid var(--black); color: var(--black); text-decoration: none; transition: all .3s; }
  .nav-btn:hover { background: var(--black); color: var(--cream); }

  /* HERO */
  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: end; padding: 0 64px 100px; position: relative; overflow: hidden; }
  .hero-ghost { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Bebas Neue', sans-serif; font-size: clamp(100px,18vw,220px); letter-spacing: .04em; color: transparent; -webkit-text-stroke: 1px rgba(200,24,90,.06); white-space: nowrap; pointer-events: none; user-select: none; animation: ghostFloat 14s ease-in-out infinite; }
  @keyframes ghostFloat { 0%,100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-18px); } }
  .hero-left { padding-top: 200px; }
  .hero-tag { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); margin-bottom: 28px; }
  .hero-tag::before { content: ''; width: 36px; height: 1px; background: var(--pink); }
  .hero-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px,7.5vw,120px); line-height: .96; letter-spacing: .02em; margin-bottom: 36px; }
  .hero-h1 .pink { color: var(--pink); }
  .hero-sub { font-size: 16px; font-weight: 300; color: var(--gray); line-height: 1.85; max-width: 380px; margin-bottom: 52px; }
  .hero-btns { display: flex; gap: 18px; align-items: center; }
  .btn-fill { background: var(--black); color: var(--cream); padding: 17px 38px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; position: relative; overflow: hidden; transition: color .4s; }
  .btn-fill::after { content: ''; position: absolute; inset: 0; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
  .btn-fill:hover::after { transform: scaleX(1); }
  .btn-fill span { position: relative; z-index: 1; }
  .btn-ghost-link { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--black); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: gap .3s; }
  .btn-ghost-link:hover { gap: 18px; }
  .btn-ghost-link::after { content: '→'; color: var(--pink); }
  .hero-right { padding-top: 200px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end; gap: 48px; }
  .hero-stats { display: flex; flex-direction: column; gap: 32px; text-align: right; }
  .stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--pink); line-height: 1; letter-spacing: .03em; }
  .stat-l { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--light-gray); margin-top: 4px; }
  .scroll-indicator { position: absolute; right: 28px; bottom: 90px; display: flex; align-items: center; gap: 10px; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--light-gray); }
  .scroll-line { width: 1px; height: 56px; background: var(--beige); overflow: hidden; position: relative; }
  .scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--pink); animation: scrollTick 2.2s ease-in-out infinite; }
  @keyframes scrollTick { 0% { top: -100%; } 100% { top: 100%; } }

  /* MARQUEE */
  .ticker { border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); padding: 18px 0; overflow: hidden; background: var(--bone); }
  .ticker-track { display: flex; white-space: nowrap; animation: tick 22s linear infinite; }
  .ticker-item { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; font-weight: 300; color: var(--charcoal); padding: 0 44px; display: inline-flex; align-items: center; gap: 44px; }
  .ticker-dot { width: 5px; height: 5px; background: var(--pink); border-radius: 50%; flex-shrink: 0; }
  @keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ABOUT */
  .about { padding: 160px 64px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; align-items: start; }
  .sec-label { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--pink); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
  .sec-label::after { content: ''; flex: 1; height: 1px; background: var(--beige); }
  .about-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px,6vw,96px); line-height: .95; letter-spacing: .02em; }
  .about-h2 .pink { color: var(--pink); }
  .about-num { font-family: 'Bebas Neue', sans-serif; font-size: 130px; line-height: 1; margin-top: 32px; color: transparent; -webkit-text-stroke: 1px var(--beige); }
  .about-body { font-size: 18px; font-weight: 300; line-height: 1.9; color: var(--charcoal); margin-bottom: 48px; }
  .about-body strong { font-weight: 500; color: var(--black); }
  .about-points { display: flex; flex-direction: column; }
  .apoint { padding: 22px 0; border-bottom: 1px solid var(--bone); display: flex; align-items: flex-start; gap: 18px; font-size: 15px; font-weight: 300; color: var(--gray); transition: color .3s; }
  .apoint:hover { color: var(--black); }
  .apoint-dash { color: var(--pink); font-size: 20px; flex-shrink: 0; line-height: 1.4; }

  /* SERVICES */
  .services { padding: 120px 64px; background: var(--charcoal); color: var(--cream); }
  .services .sec-label { color: var(--pink); }
  .services .sec-label::after { background: rgba(255,255,255,.08); }
  .svc-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; gap: 40px; }
  .svc-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px,6vw,96px); line-height: .95; letter-spacing: .02em; max-width: 520px; }
  .svc-h2 .pink { color: var(--pink); }
  .svc-intro { font-size: 14px; font-weight: 300; color: var(--light-gray); max-width: 280px; line-height: 1.85; }
  .svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
  .svc-card { padding: 52px 40px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); transition: all .4s; position: relative; overflow: hidden; }
  .svc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(200,24,90,.09) 0%,transparent 60%); opacity: 0; transition: opacity .4s; }
  .svc-card:hover::before { opacity: 1; }
  .svc-card:hover { border-color: rgba(200,24,90,.35); transform: translateY(-3px); }
  .svc-num { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: var(--pink); margin-bottom: 28px; }
  .svc-name { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: .03em; margin-bottom: 16px; line-height: 1; }
  .svc-desc { font-size: 13px; font-weight: 300; color: var(--light-gray); line-height: 1.85; }
  .svc-arrow { margin-top: 28px; font-size: 22px; color: var(--pink); opacity: 0; transform: translateX(-10px); transition: all .3s; }
  .svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

  /* PORTFOLIO */
  .portfolio { padding: 120px 64px; }
  .port-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
  .port-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px,6vw,96px); line-height: .95; letter-spacing: .02em; }
  .port-h2 .pink { color: var(--pink); }
  .port-all { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--gray); text-decoration: none; border-bottom: 1px solid var(--beige); padding-bottom: 4px; transition: all .3s; }
  .port-all:hover { color: var(--pink); border-color: var(--pink); }

  /* DYNAMIC PORTFOLIO GRID */
  .port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
  .port-item { position: relative; overflow: hidden; background: var(--bone); cursor: none; }
  .port-item.featured { grid-column: span 2; }
  .port-vis { width: 100%; min-height: 380px; display: flex; align-items: flex-end; padding: 32px; position: relative; overflow: hidden; }
  .port-item.featured .port-vis { min-height: 480px; }
  .g1 { background: linear-gradient(135deg,#0A0A0A 0%,#2D1520 55%,#C8185A 100%); }
  .g2 { background: linear-gradient(225deg,#F7F3EE 0%,#D9CFC3 40%,#8B3A52 100%); }
  .g3 { background: linear-gradient(45deg,#0A0A0A 0%,#1A1A1A 55%,#C8185A 100%); }
  .g4 { background: radial-gradient(ellipse at 30% 70%,#C8185A 0%,#1A1A1A 65%); }
  .g5 { background: linear-gradient(160deg,#1A0A10 0%,#3D1028 50%,#C8185A 100%); }
  .port-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.75) 0%,transparent 55%); }
  .port-info { position: relative; z-index: 2; transform: translateY(18px); transition: transform .4s; }
  .port-item:hover .port-info { transform: translateY(0); }
  .port-cat { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 8px; }
  .port-name { font-family: 'Bebas Neue', sans-serif; font-size: 34px; letter-spacing: .04em; color: white; line-height: 1; }
  .port-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.8); opacity: 0; background: white; color: var(--black); padding: 14px 30px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; transition: all .4s; white-space: nowrap; z-index: 3; }
  .port-item:hover .port-btn { opacity: 1; transform: translate(-50%,-50%) scale(1); }

  /* ADD WORK PANEL */
  .port-add { grid-column: span 1; border: 2px dashed var(--beige); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; min-height: 380px; cursor: pointer; transition: all .3s; background: transparent; }
  .port-add:hover { border-color: var(--pink); background: rgba(200,24,90,.03); }
  .port-add-icon { font-size: 36px; color: var(--beige); transition: color .3s; }
  .port-add:hover .port-add-icon { color: var(--pink); }
  .port-add-txt { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--light-gray); }

  /* PHILOSOPHY */
  .philosophy { padding: 160px 64px; background: var(--black); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
  .phil-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px,13vw,180px); letter-spacing: .04em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.025); pointer-events: none; user-select: none; white-space: nowrap; }
  .phil-inner { position: relative; z-index: 1; }
  .phil-statements { display: flex; flex-direction: column; gap: 80px; }
  .phil-stmt { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px,5vw,76px); letter-spacing: .03em; line-height: 1.05; max-width: 1000px; margin: 0 auto; opacity: .2; transition: opacity .5s; }
  .phil-stmt:hover { opacity: 1; }
  .phil-stmt .pink { color: var(--pink); }
  .phil-div { width: 1px; height: 56px; background: rgba(255,255,255,.08); margin: 0 auto; }

  /* CLIENTS */
  .clients { padding: 120px 64px; background: var(--bone); }
  .clients-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px,5.5vw,88px); line-height: .95; letter-spacing: .02em; max-width: 560px; margin-bottom: 80px; }
  .clients-h2 .pink { color: var(--pink); }
  .cl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
  .cl-card { padding: 52px 44px; background: var(--cream); transition: background .3s; }
  .cl-card:hover { background: white; }
  .cl-brand { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: .06em; margin-bottom: 12px; }
  .cl-result { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
  .cl-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--pink); line-height: 1; letter-spacing: .02em; }
  .cl-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--light-gray); }

  /* LOGO SLIDER */
  .logo-slider-section { padding: 80px 0; background: var(--cream); border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); overflow: hidden; }
  .logo-slider-label { text-align: center; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--light-gray); margin-bottom: 44px; }
  .logo-track-wrap { position: relative; overflow: hidden; }
  .logo-track { display: flex; gap: 0; white-space: nowrap; animation: logoScroll 28s linear infinite; will-change: transform; }
  .logo-track.paused { animation-play-state: paused; }
  @keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .logo-slot {
    display: inline-flex; align-items: center; justify-content: center;
    width: 180px; height: 80px; flex-shrink: 0;
    margin: 0 24px; border: 1px solid var(--beige);
    background: white; position: relative; overflow: hidden;
    transition: border-color .4s, box-shadow .4s;
    cursor: none;
  }
  .logo-slot:hover { border-color: var(--pink); box-shadow: 0 4px 24px rgba(200,24,90,.1); }
  /* Default: greyscale / outline feel */
  .logo-slot .logo-img { width: 120px; height: 48px; object-fit: contain; filter: grayscale(1) opacity(0.45); transition: filter .4s; }
  .logo-slot:hover .logo-img { filter: grayscale(0) opacity(1); }
  /* Placeholder brand name text (shown when no image) */
  .logo-slot .logo-placeholder {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; letter-spacing: .12em;
    color: var(--beige); transition: color .4s;
    user-select: none;
  }
  .logo-slot:hover .logo-placeholder { color: var(--pink); }
  /* Upload button slot */
  .logo-slot.add-slot { border: 2px dashed var(--beige); background: transparent; cursor: pointer; flex-direction: column; gap: 6px; }
  .logo-slot.add-slot:hover { border-color: var(--pink); background: rgba(200,24,90,.03); }
  .logo-slot.add-slot span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--light-gray); }
  .logo-slot.add-slot .plus { font-size: 24px; color: var(--beige); transition: color .3s; }
  .logo-slot.add-slot:hover .plus { color: var(--pink); }

  /* FINAL CTA */
  .cta-section { padding: 180px 64px; text-align: center; position: relative; overflow: hidden; }
  .cta-ghost { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: clamp(80px,18vw,260px); letter-spacing: .03em; color: transparent; -webkit-text-stroke: 1px var(--bone); pointer-events: none; user-select: none; }
  .cta-content { position: relative; z-index: 1; }
  .cta-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px,5.5vw,88px); line-height: 1.0; letter-spacing: .02em; max-width: 820px; margin: 0 auto 32px; }
  .cta-h2 .pink { color: var(--pink); }
  .cta-sub { font-size: 16px; font-weight: 300; color: var(--gray); max-width: 420px; margin: 0 auto 60px; line-height: 1.85; }
  .btn-cta-big { display: inline-block; background: var(--pink); color: white; padding: 22px 60px; font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .12em; text-decoration: none; position: relative; overflow: hidden; transition: color .4s; }
  .btn-cta-big::after { content: ''; position: absolute; inset: 0; background: var(--black); transform: scaleX(0); transform-origin: right; transition: transform .4s ease; }
  .btn-cta-big:hover::after { transform: scaleX(1); }
  .btn-cta-big span { position: relative; z-index: 1; }
  .cta-note { font-size: 12px; color: var(--light-gray); margin-top: 20px; letter-spacing: .06em; }

  /* FOOTER */
  footer { background: var(--charcoal); color: var(--cream); padding: 80px 64px 40px; }
  .foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .foot-logo-wrap { margin-bottom: 12px; }
  .foot-logo-wrap .brand-logo { font-size: 44px; }
  .foot-logo-wrap .logo-bey,
  .foot-logo-wrap .logo-mat,
  .foot-logo-wrap .logo-lab { color: var(--pink); }
  .foot-logo-wrap .logo-lab { opacity: 1; }
  .foot-tag { font-size: 13px; font-style: italic; font-family: 'Cormorant Garamond', serif; color: var(--light-gray); }
  .foot-col h4 { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--pink); margin-bottom: 24px; }
  .foot-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .foot-links a { font-size: 14px; font-weight: 300; color: var(--light-gray); text-decoration: none; transition: color .3s; display: flex; align-items: center; gap: 8px; }
  .foot-links a:hover { color: var(--cream); }
  .foot-links a::before { content: '→'; font-size: 11px; color: var(--pink); opacity: 0; transition: opacity .3s; }
  .foot-links a:hover::before { opacity: 1; }
  .foot-bot { display: flex; justify-content: space-between; align-items: center; }
  .foot-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.25); }
  .foot-social { display: flex; gap: 28px; }
  .foot-social a { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); text-decoration: none; transition: color .3s; }
  .foot-social a:hover { color: var(--pink); }

  /* REVEAL */
  .rv { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
  .rv.on { opacity: 1; transform: translateY(0); }
  .rv.d1 { transition-delay: .1s; } .rv.d2 { transition-delay: .2s; } .rv.d3 { transition-delay: .3s; } .rv.d4 { transition-delay: .4s; }

  /* MOBILE */
  @media (max-width: 900px) {
    nav { padding: 22px 24px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 0 24px 70px; }
    .hero-right { display: none; }
    .about { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
    .svc-grid { grid-template-columns: 1fr; }
    .svc-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    .port-grid { grid-template-columns: 1fr; }
    .port-item.featured { grid-column: span 1; }
    .cl-grid { grid-template-columns: 1fr; }
    .foot-top { grid-template-columns: 1fr; gap: 40px; }
    .services,.portfolio,.philosophy,.clients,.cta-section { padding: 80px 24px; }
    footer { padding: 60px 24px 32px; }
    .foot-bot { flex-direction: column; gap: 20px; text-align: center; }
  }

/* CTA contact links */
.cta-contact-link {
  color: var(--light-gray);
  text-decoration: none;
  transition: color .3s;
}
.cta-contact-link:hover { color: var(--pink); }
