/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #ff1f6e;
  --black: #080808;
  --white: #ffffff;
  --gray: #888;
  --nav-h: 56px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Anton', Impact, 'Arial Narrow', Arial, sans-serif;
}

html, body { height: 100%; overflow: hidden; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #efefef;
  border-bottom: 2.5px solid var(--black);
  overflow: visible;
}

.nav-inner {
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  padding-bottom: 0.62rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--black);
  line-height: 1;
}

.nav-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  padding-bottom: 0.02rem;
  white-space: nowrap;
}

.nav-name {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
}

.nav-tabs {
  display: flex;
  gap: 4px;
  align-items: flex-end;
}

/* Perspective goes on the <li> (direct parent of the button) and mirrors the
   page's perspective (1400px, vanishing point at the top) so the tab folds in
   the SAME 3D space as the page below it. */
.nav-tabs li {
  perspective: 1400px;
  perspective-origin: 50% 0%;
  transform-style: preserve-3d;
}

.nav-tabs .tab {
  cursor: pointer;
  padding: 0.45rem 1.25rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--black);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  box-shadow: 3px -2px 0 0 var(--black);
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), background 0.15s, color 0.15s, box-shadow 0.18s;
}

.nav-tabs .tab:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 3px -5px 0 0 var(--black);
}

/* Active: extends down to cover nav border seamlessly */
.nav-tabs .tab.active {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-5px);
  /* shadow goes up (depth) AND down (covers gap below nav border) */
  box-shadow: 3px -5px 0 0 var(--black), 3px 10px 0 0 var(--pink), 6px 10px 0 0 var(--black);
  border-bottom: none;
  margin-bottom: -10px;
  padding-bottom: calc(0.6rem + 10px);
  z-index: 10;
  position: relative;
}

/* White tabs stay white even when active */
.nav-tabs .tab[data-slide="work"].active,
.nav-tabs .tab[data-slide="approach"].active,
.nav-tabs .tab[data-slide="services"].active {
  background: var(--white);
  color: var(--black);
  box-shadow: 3px -5px 0 0 var(--black), 3px 10px 0 0 var(--white), 6px 10px 0 0 var(--black);
}

/* Past tabs: already flipped — muted */
.nav-tabs .tab.past {
  background: #c8c8c8;
  color: #888;
  box-shadow: 2px -2px 0 0 #999;
  border-color: #999;
}

/* Outgoing tab is the TOP of the page sheet: it rotates around the page's
   bottom hinge (far below, ~90vh down) with the exact same rotateX as the
   page flip-out, so it stays glued to the section and falls away with it. */
@keyframes tabDrop {
  0%   { transform: rotateX(0deg);   opacity: 1; }
  80%  { opacity: 0.25; }
  100% { transform: rotateX(-88deg); opacity: 0; }
}

/* Incoming tab swings up into the nav around the same hinge, mirroring the
   page flip-in (top of the rising sheet). */
@keyframes tabRise {
  0%   { transform: rotateX(88deg);  opacity: 0; }
  55%  { opacity: 1; }
  100% { transform: rotateX(0deg);   opacity: 1; }
}

.nav-tabs .tab.flipping {
  /* same ease-in as page flip-out; pivot is the page's bottom hinge, not the
     tab's own edge, so the tab and page move as one rigid sheet */
  animation: tabDrop 0.36s cubic-bezier(0.4, 0, 1, 1) forwards;
  transform-origin: 50% 90vh;
  z-index: 20;
  position: relative;
}

.nav-tabs .tab.rising {
  /* same ease-out as page flip-in, same far hinge */
  animation: tabRise 0.36s cubic-bezier(0, 0, 0.4, 1) forwards;
  transform-origin: 50% 90vh;
  z-index: 20;
  position: relative;
}

.nav-tabs .tab-pink {
  background: var(--pink);
  color: var(--black);
}

.nav-tabs .tab-pink:hover {
  background: #e0005e;
  color: var(--white);
}

.nav-tabs .tab-pink.active {
  background: var(--pink);
  color: var(--black);
  border-color: var(--black);
  box-shadow: 3px -5px 0 0 var(--black), 3px 10px 0 0 var(--pink), 6px 10px 0 0 var(--black);
}

/* ===== SLIDES ===== */
.slides-wrapper {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 0%;
}

.slide {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom center;
  transform: rotateX(0deg);
  backface-visibility: hidden;
  will-change: transform, opacity;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Forward: page falls DOWN (bottom drops away, hinged at top) */
@keyframes flipOut {
  0%   { transform: rotateX(0deg);    opacity: 1; box-shadow: 0 8px 40px rgba(0,0,0,0.18); }
  40%  { opacity: 1; }
  100% { transform: rotateX(-88deg);  opacity: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
}

@keyframes flipIn {
  0%   { transform: rotateX(88deg);   opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: rotateX(0deg);    opacity: 1; box-shadow: 0 8px 40px rgba(0,0,0,0.18); }
}

/* Backward: page lifts back up */
@keyframes flipOutBack {
  0%   { transform: rotateX(0deg);    opacity: 1; }
  100% { transform: rotateX(88deg);   opacity: 0; }
}

@keyframes flipInBack {
  0%   { transform: rotateX(-88deg);  opacity: 0; }
  100% { transform: rotateX(0deg);    opacity: 1; }
}

.slide.flip-out       { animation: flipOut     0.36s cubic-bezier(0.4,0,1,1) forwards; pointer-events: none; z-index: 3; }
.slide.flip-in        { animation: flipIn      0.36s cubic-bezier(0,0,0.4,1) forwards; pointer-events: none; z-index: 2; opacity: 0; }
.slide.flip-out-back  { animation: flipOutBack 0.36s cubic-bezier(0.4,0,1,1) forwards; pointer-events: none; z-index: 3; }
.slide.flip-in-back   { animation: flipInBack  0.36s cubic-bezier(0,0,0.4,1) forwards; pointer-events: none; z-index: 2; opacity: 0; }

.slide-dark { background: var(--black); }

.slide-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem 4rem;
}

/* ===== SLIDE HEADER ===== */
.slide-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 0.6rem;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 3rem;
}

.slide-header { margin-bottom: 0; }

/* ===== SLIDE 1: HOME ===== */
#slide-home { overflow-y: auto; }

.slide-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.home-image {
  /* Match the credential photo's studio backdrop so rotation never reveals
     a contrasting edge */
  background: #f3f1ef;
  border-right: 2.5px solid var(--black);
  /* Let the ID extend over the right (About Me) panel for the 3D float effect */
  overflow: visible;
  max-height: calc(100vh - var(--nav-h));
  perspective: 1200px;
  position: relative;
  z-index: 5;
}

.home-image img {
  /* Extend past the right border so the credential floats over the About Me panel */
  width: 116%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* Hinge at the top center (lanyard clip) and scale up a touch so rotation
     never reveals a gap at the edges */
  transform-origin: 50% 0%;
  transform: scale(1.04);
  /* 3D lift over the pink panel: directional shadow that follows the swing */
  filter: drop-shadow(-6px 14px 18px rgba(0, 0, 0, 0.32))
          drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.18));
  animation: idSwayIdle 5.5s ease-in-out infinite;
  will-change: transform, filter;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  position: relative;
  z-index: 5;
}

.home-image img:active,
.home-image img.dragging { cursor: grabbing; }

/* Continuous gentle sway, as if hanging from a lanyard */
@keyframes idSwayIdle {
  0%, 100% { transform: scale(1.04) rotate(-1deg); }
  50%      { transform: scale(1.04) rotate(1deg); }
}

/* Damped pendulum: starts strong, decays toward stillness, then idle resumes.
   Triggered by JS when the home slide flips in or out. */
@keyframes idSwayKick {
  0%   { transform: scale(1.04) rotate(-6deg); }
  18%  { transform: scale(1.04) rotate(4.5deg); }
  36%  { transform: scale(1.04) rotate(-3deg); }
  54%  { transform: scale(1.04) rotate(1.8deg); }
  72%  { transform: scale(1.04) rotate(-0.9deg); }
  88%  { transform: scale(1.04) rotate(0.4deg); }
  100% { transform: scale(1.04) rotate(0deg); }
}

.home-image img.kick {
  animation: idSwayKick 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.home-about {
  background: var(--pink);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  overflow-y: auto;
}

/* Text on the pink panel uses white-with-opacity tones so nothing punches
   too hard against the hot pink. Monochrome palette that reads editorial. */
.home-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.home-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--white);
}

.home-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 460px;
  border-top: 1.5px solid rgba(255,255,255,0.3);
  padding-top: 1.25rem;
}

.home-meta {
  display: flex;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  flex-wrap: wrap;
}

.home-meta a { color: rgba(255,255,255,0.92); }
.home-meta a:hover { color: var(--white); }

.home-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.home-stat {
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-right: 1.5px solid rgba(255,255,255,0.14);
  border-bottom: 1.5px solid rgba(255,255,255,0.14);
}

.home-stat:nth-child(2n) { border-right: none; }
.home-stat:nth-child(3), .home-stat:nth-child(4) { border-bottom: none; }

.home-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

/* Unified muted tone for the $, digits, and suffix — no white accent */
.home-stat-num,
.home-stat-num .num,
.home-stat-num .sfx,
.home-stat-num span { color: rgba(255, 255, 255, 0.65) !important; }

.home-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== SLIDE 2: WORK ===== */
.cases-scroll {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.case-card {
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 2.25rem;
  background: #fafafa;
}

.case-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.case-label-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 0.35rem;
}

.case-name {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}

.case-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.cs { display: flex; flex-direction: column; gap: 0.15rem; text-align: right; }

.cs-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--pink);
  line-height: 1;
}

.cs-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray);
}

.case-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.col-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
  display: block;
}

.case-cols p:not(.col-label) {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #555;
}

.case-list { display: flex; flex-direction: column; gap: 0.35rem; }

.case-list li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
  padding-left: 1rem;
  position: relative;
}

.case-list li::before { content: '→'; position: absolute; left: 0; color: var(--pink); font-size: 0.72rem; top: 0.1rem; }

/* ===== BRAND CARD (video-first layout) ===== */
.brand-card {
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 1.6rem 1.6rem 1.4rem;
  margin-bottom: 2rem;
  background: var(--white);
  box-shadow: 6px 6px 0 0 var(--black);
}

.brand-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}

.brand-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.brand-videos video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
  background: #0a0a0a;
  display: block;
}

.brand-metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1.5px solid rgba(0,0,0,0.12);
}

.brand-metrics .bm {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-metrics .bm-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--black);
}

.brand-metrics .bm-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

/* ===== SLIDE 3: APPROACH ===== */
.approach-lead {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #666;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ap-card {
  background: var(--black);
  border-radius: 12px;
  padding: 2rem;
  transition: outline 0.15s;
}

.ap-card:hover { outline: 2px solid var(--pink); }

.ap-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: #222;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.ap-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.ap-card p  { font-size: 0.83rem; line-height: 1.65; color: #777; }

.approach-mantra {
  border-left: 3px solid var(--pink);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-style: italic;
  color: #555;
  background: #f8f8f8;
  border-radius: 0 8px 8px 0;
}

/* ===== SLIDE 4: SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.sv {
  padding: 2rem;
  border-right: 1.5px solid #e5e5e5;
  border-bottom: 1.5px solid #e5e5e5;
  transition: background 0.15s;
}
.sv:hover { background: #f5f5f5; }
.sv:nth-child(3n) { border-right: none; }
.sv:nth-child(4), .sv:nth-child(5), .sv:nth-child(6) { border-bottom: none; }

.sv-star { display: block; color: var(--pink); font-size: 0.9rem; margin-bottom: 0.65rem; }
.sv h4 { font-size: 0.92rem; font-weight: 700; color: var(--black); margin-bottom: 0.45rem; }
.sv p  { font-size: 0.8rem; line-height: 1.65; color: #666; }

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

.tool {
  padding: 0.45rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #444;
  background: var(--white);
  cursor: default;
  transition: border-color 0.15s, color 0.15s;
}
.tool:hover { border-color: var(--pink); color: var(--pink); }

/* ===== SLIDE 5: CONTACT ===== */
.contact-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h));
  text-align: left;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  text-transform: uppercase;
  line-height: 0.93;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.pink { color: var(--pink); }

.contact-sub { font-size: 0.95rem; color: #666; margin-bottom: 2.5rem; }

.btn-contact {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-contact:hover { opacity: 0.88; transform: translateY(-1px); }

.site-footer {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1.5px solid #222;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: start;
  color: #777;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--white); }

.contact-footer {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-inner {
    gap: 0.75rem;
    padding: 0 0 0 1rem;
  }
  .nav-brand { flex: 0 0 auto; }
  .nav-brand-copy { display: none; }
  .nav-tabs {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding-right: 1rem;
    scrollbar-width: none;
  }
  .nav-tabs::-webkit-scrollbar { display: none; }
  .nav-tabs li { flex: 0 0 auto; }
  .slide-home-grid { grid-template-columns: 1fr; min-height: unset; }
  .home-image { max-height: 55vw; border-right: none; border-bottom: 2.5px solid var(--black); }
  .home-about { min-height: unset; padding: 2.5rem 1.5rem; }
  .home-title { font-size: 4.5rem; }
  .case-cols { grid-template-columns: 1fr; gap: 1.25rem; }
  .case-top { flex-direction: column; }
  .cs { text-align: left; }
  .approach-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .sv { border-right: none; }
  .sv:nth-child(n) { border-bottom: 1.5px solid #e5e5e5; }
  .sv:last-child { border-bottom: none; }
  .slide-inner { padding: 2rem 1.25rem 3rem; }
  .nav-tabs .tab { font-size: 0.68rem; padding: 0.4rem 0.75rem 0.55rem; }
}

@media (max-width: 600px) {
  .home-stats { grid-template-columns: 1fr 1fr; }
  .contact-title { font-size: 2.8rem; }
  .nav-logo { font-size: 1.1rem; }
  .nav-inner {
    gap: 0.45rem;
    padding-left: 0.85rem;
  }
  .nav-tabs {
    gap: 2px;
    padding-right: 0.35rem;
  }
  .nav-tabs .tab {
    font-size: 0.55rem;
    padding: 0.36rem 0.46rem 0.5rem;
    letter-spacing: 0.07em;
    box-shadow: 2px -2px 0 0 var(--black);
  }
  .nav-tabs .tab.active {
    box-shadow: 2px -4px 0 0 var(--black), 2px 10px 0 0 var(--pink), 5px 10px 0 0 var(--black);
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 0.7rem 1rem;
  }
}
