@charset "utf-8";

/* =========================================
   Design Tokens
   ========================================= */
:root {
  --color-bg:           #FAFAF7;
  --color-surface:      #FFFFFF;
  --color-border:       #E8DFD3;
  --color-text:         #2A2320;
  --color-text-muted:   #7A6E65;
  --color-accent:       #937955;
  --color-accent-hover: #CC9966;
  --color-nav-bg:       rgba(250, 250, 247, 0.94);
  --color-overlay:      rgba(18, 12, 8, 0.90);

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Inter', 'Arial', sans-serif;

  --nav-height: 62px;

  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.11);
  --shadow-lg: 0 10px 36px rgba(0,0,0,0.16);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --max-width:     1100px;
  --content-width: 820px;
}

/* =========================================
   Reset
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-accent); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--color-accent-hover); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.1rem; letter-spacing: 0.03em; }
p  { margin-bottom: var(--sp-4); color: var(--color-text-muted); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

/* =========================================
   Navigation
   ========================================= */
.v2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-8);
  background: transparent;
  transition: background 300ms ease, box-shadow 300ms ease;
}
.v2-nav.scrolled {
  background: var(--color-nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--color-border);
}

/* Text wordmark — replicates the original two-tone color treatment */
.v2-nav__logo-given,
.v2-nav__logo-family {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 150ms ease;
}
.v2-nav__logo-given  { color: #706660; }        /* warm gray  */
.v2-nav__logo-family { color: var(--color-accent); } /* warm gold  */
.v2-nav__logo:hover .v2-nav__logo-given,
.v2-nav__logo:hover .v2-nav__logo-family { opacity: 0.68; }

.v2-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.v2-nav__links a {
  font-size: 0.72rem;
  font-family: var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding-bottom: 3px;
}
.v2-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--color-accent);
  transition: width 280ms var(--ease-out);
}
.v2-nav__links a:hover { color: var(--color-text); }
.v2-nav__links a:hover::after,
.v2-nav__links a.active::after { width: 100%; }
.v2-nav__links a.active { color: var(--color-accent); }

/* Hamburger */
.v2-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: var(--sp-2);
}
.v2-nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--color-text);
  transition: transform 280ms ease, opacity 280ms ease;
}
.v2-nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.v2-nav__burger.open span:nth-child(2) { opacity: 0; }
.v2-nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile dropdown */
.v2-nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-6) var(--sp-8);
  z-index: 99;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-md);
}
.v2-nav__mobile.open { display: flex; }
.v2-nav__mobile a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.v2-nav__mobile a:last-child { border-bottom: none; }
.v2-nav__mobile a.active { color: var(--color-accent); }

@media (max-width: 640px) {
  .v2-nav__links { display: none; }
  .v2-nav__burger { display: flex; }
  .v2-nav { padding: 0 var(--sp-4); }
}

/* =========================================
   Page Wrapper
   ========================================= */
.v2-page { padding-top: var(--nav-height); min-height: 100vh; }

/* =========================================
   Hero Slideshow
   ========================================= */
.v2-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  max-height: 580px;
  overflow: hidden;
  background: #1a1210;
  isolation: isolate; /* contain mix-blend-mode to within the hero */
}

/* Film-grain / canvas texture overlay */
.v2-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;          /* above slides (z:1), below arrows (z:5) */
  pointer-events: none;
  opacity: 0.072;
  mix-blend-mode: overlay;
  background-repeat: repeat;
  background-size: 256px 256px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
}
.v2-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
  z-index: 0;
  /* Center the sharp image */
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-hero__slide.active { opacity: 1; z-index: 1; }

/* Blurred backdrop — stretches the low-res image edge-to-edge.
   Oversized by 30px on each side so the blur soft-edge is hidden
   by .v2-hero { overflow: hidden }. */
.v2-hero__slide-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  filter: blur(24px) brightness(0.48);
  z-index: 0;
  pointer-events: none;
}

/* Sharp image — displayed at natural resolution, never stretched */
.v2-hero__slide img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
}
.v2-hero__slide.active img {
  animation: v2KenBurns 8s ease-out forwards;
}
@keyframes v2KenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

/* Arrow buttons */
.v2-hero__arrow {
  position: absolute;
  top: 50%; z-index: 5;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  user-select: none;
  transition: background 150ms ease;
  line-height: 1;
}
.v2-hero__arrow:hover { background: rgba(255,255,255,0.28); }
.v2-hero__arrow--prev { left: var(--sp-6); }
.v2-hero__arrow--next { right: var(--sp-6); }
.v2-hero__arrow svg,
.v2-lightbox__arrow svg,
.v2-lightbox__close svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }

/* Dot indicators */
.v2-hero__dots {
  position: absolute;
  bottom: var(--sp-4); left: 50%;
  transform: translateX(-50%);
  display: flex; gap: var(--sp-2);
  z-index: 5;
}
.v2-hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: none;
  transition: background 200ms ease, transform 200ms ease;
}
.v2-hero__dot.active {
  background: #fff;
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .v2-hero { aspect-ratio: 4 / 3; max-height: 300px; }
}

/* =========================================
   Section Layout
   ========================================= */
.v2-section {
  padding: var(--sp-16) var(--sp-8);
  max-width: var(--max-width);
  margin: 0 auto;
}
.v2-section--narrow {
  max-width: var(--content-width);
}
.v2-section--bg {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  max-width: none;
  padding-left: var(--sp-8);
  padding-right: var(--sp-8);
}
.v2-section--bg .v2-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.v2-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}
.v2-divider {
  width: 40px; height: 1px;
  background: var(--color-accent);
  margin: var(--sp-3) 0 var(--sp-8);
}
.v2-page-header {
  padding: var(--sp-12) var(--sp-8) var(--sp-8);
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .v2-section { padding: var(--sp-10) var(--sp-4); }
  .v2-page-header { padding: var(--sp-8) var(--sp-4) var(--sp-4); }
}

/* =========================================
   Home: Artist Blurb
   ========================================= */
.v2-blurb {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.v2-blurb p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.8;
  color: var(--color-text-muted);
  font-style: italic;
}

/* =========================================
   Home: Navigation Cards
   ========================================= */
.v2-nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-6);
}
.v2-nav-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  background: var(--color-surface);
  transition: box-shadow 280ms ease, transform 280ms ease;
}
.v2-nav-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.v2-nav-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
  display: block;
}
.v2-nav-card ul li {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
}
.v2-nav-card ul li:last-child { border-bottom: none; }
.v2-nav-card ul li a { color: var(--color-text-muted); }
.v2-nav-card ul li a:hover { color: var(--color-accent); }

/* =========================================
   Home: News Block
   ========================================= */
.v2-news {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  border: 1px solid var(--color-border);
  margin-bottom: var(--sp-8);
}
.v2-news__item {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--color-border);
}
.v2-news__item:last-child { border-bottom: none; padding-bottom: 0; }
.v2-news__item:first-child { padding-top: 0; }
.v2-news__date {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}
.v2-news__body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-text);
}

/* =========================================
   Gallery: Sub-nav tabs
   ========================================= */
.v2-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--sp-8);
}
.v2-subnav__btn {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: var(--sp-2) var(--sp-4);
  border: none; background: none;
  transition: color 150ms ease;
  position: relative;
}
.v2-subnav__btn::after {
  content: '';
  position: absolute;
  bottom: calc(-1 * var(--sp-6) - 1px);
  left: var(--sp-4); right: var(--sp-4);
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 280ms var(--ease-out);
}
.v2-subnav__btn.active,
.v2-subnav__btn:hover { color: var(--color-accent); }
.v2-subnav__btn.active::after { transform: scaleX(1); }

/* =========================================
   Gallery: Grid
   ========================================= */
.v2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-3);
}
.v2-gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: #f0ece7;
}
.v2-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
  display: block;
}
.v2-gallery-item:hover img { transform: scale(1.06); }
.v2-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,12,6,0.72) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity 280ms ease;
}
.v2-gallery-item:hover .v2-gallery-item__overlay { opacity: 1; }
.v2-gallery-item__detail {
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* Load More */
.v2-load-more {
  text-align: center;
  padding: var(--sp-8) 0 var(--sp-4);
}
.v2-load-more__btn {
  display: inline-block;
  padding: var(--sp-3) var(--sp-8);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 150ms ease, color 150ms ease;
  background: none;
}
.v2-load-more__btn:hover { background: var(--color-accent); color: #fff; }

@media (max-width: 640px) {
  .v2-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--sp-2); }
}

/* =========================================
   Lightbox
   ========================================= */
.v2-lightbox {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.v2-lightbox.open { opacity: 1; pointer-events: all; }

.v2-lightbox__close {
  position: fixed;
  top: var(--sp-6); right: var(--sp-6);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 150ms ease;
  z-index: 201;
}
.v2-lightbox__close:hover { background: rgba(255,255,255,0.24); }

.v2-lightbox__arrow {
  position: fixed;
  top: 50%; z-index: 201;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: background 150ms ease, opacity 200ms ease;
}
.v2-lightbox__arrow:hover { background: rgba(255,255,255,0.24); }
.v2-lightbox__arrow--prev { left: var(--sp-4); }
.v2-lightbox__arrow--next { right: var(--sp-4); }
.v2-lightbox__arrow.disabled { opacity: 0.25; pointer-events: none; }

.v2-lightbox__img-wrap {
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* transition is applied inline by JS for zoom-from-thumb animation */
}
.v2-lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border: 2px solid rgba(255,255,255,0.08);
  display: block;
}

.v2-lightbox__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.v2-lightbox__detail {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  line-height: 1.7;
  text-align: center;
  max-width: 480px;
  white-space: pre-line;
}

/* =========================================
   Artist Page
   ========================================= */
.v2-artist-hero {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: var(--sp-16);
  align-items: start;
  padding: var(--sp-12) var(--sp-8);
  max-width: var(--max-width);
  margin: 0 auto;
}
.v2-artist-sidebar img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.v2-artist-sidebar__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: var(--sp-4) 0 var(--sp-1);
  color: var(--color-text);
}
.v2-artist-sidebar__pet { margin-top: var(--sp-6); }
.v2-artist-sidebar__pet img { width: 100%; border-radius: var(--radius-md); opacity: 0.6; }

.v2-artist-statement .v2-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  font-style: italic;
}

/* Three pillars */
.v2-three-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}
.v2-three-cols h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
}
.v2-three-cols ul { list-style: disc; padding-left: var(--sp-6); }
.v2-three-cols ul li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: var(--sp-1) 0;
  line-height: 1.65;
}

/* Timeline */
.v2-timeline { margin-top: var(--sp-6); }
.v2-timeline h2 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--color-border);
  margin-top: var(--sp-10);
}
.v2-timeline h2:first-child { margin-top: 0; }
.v2-timeline__item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}
.v2-timeline__item:last-child { border-bottom: none; }
.v2-timeline__year {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-accent);
}
.v2-timeline__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .v2-artist-hero {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    padding: var(--sp-8) var(--sp-4);
  }
  .v2-artist-sidebar {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: var(--sp-4);
    align-items: start;
  }
  .v2-artist-sidebar__pet { grid-column: 1 / -1; }
}

/* =========================================
   Press Page
   ========================================= */
.v2-press-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}
.v2-press-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin-bottom: var(--sp-4);
  transition: box-shadow 280ms ease, transform 280ms ease;
}
.v2-press-card:last-child { margin-bottom: 0; }
.v2-press-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.v2-press-card__date {
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}
.v2-press-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
}
.v2-press-card__author {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
  font-style: italic;
}
.v2-press-card__summary {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.v2-press-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.70rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-border);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.v2-press-card__link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* =========================================
   Footer
   ========================================= */
.v2-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-12) var(--sp-8);
}
.v2-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.v2-footer__social {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.v2-footer__social-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.v2-footer__social-link:hover { color: var(--color-accent); }
.v2-footer__social-link svg { width: 15px; height: 15px; flex-shrink: 0; }

.v2-footer__contact {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.v2-footer__contact-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.v2-footer__contact-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-footer__contact-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-1);
}

@media (max-width: 640px) {
  .v2-footer__inner { flex-direction: column; align-items: flex-start; }
  .v2-footer { padding: var(--sp-10) var(--sp-4); }
}

/* =========================================
   Scroll Animations
   ========================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
[data-animate="fade"] { transform: none; }
[data-animate].is-visible { opacity: 1; transform: none; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
[data-stagger].is-visible > * { opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(1) { transition-delay:   0ms; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay:  80ms; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 160ms; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 240ms; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 320ms; }
