/* ===========================================================
   VGC, LLP - Website
   ===========================================================
   Tokens, base, layout, components.
   =========================================================== */

:root {
  /* Brand */
  --gold:        #F4B82E;
  --gold-deep:   #D9A11E;
  --gold-soft:   #FBE8A6;

  /* Neutrals */
  --ink:         #0F0F10;
  --graphite:    #2A2A2C;
  --slate:       #4A4A4D;
  --mid:         #6E6E72;
  --line:        #E4E2DC;
  --paper:       #FAF8F3;
  --paper-warm:  #F4F1E8;
  --white:       #FFFFFF;

  /* Type */
  --serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max:        1280px;
  --gutter:     clamp(20px, 4vw, 56px);
  --section-y:  clamp(80px, 10vw, 140px);
  --radius-sm:  4px;
  --radius:     8px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0 0 1em; }

::selection { background: var(--gold); color: var(--ink); }

/* ===== utility ===== */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0 0 28px;
}
.eyebrow--light { color: rgba(255,255,255,0.65); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 20px var(--gutter);
  background: transparent;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 14px var(--gutter);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  height: 44px;
}
.nav__logo img {
  height: 100%;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav.is-scrolled .nav__links a { color: var(--graphite); }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  padding: 10px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: var(--white) !important; font-size: 22px; font-family: var(--serif); }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px var(--gutter) 100px;
  overflow: hidden;
  color: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.5) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,16,0.75) 0%, rgba(15,15,16,0.55) 40%, rgba(15,15,16,0.85) 100%),
    radial-gradient(circle at 80% 20%, rgba(244,184,46,0.18), transparent 55%);
}
.hero__content {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(244,184,46,0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(244,184,46,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(244,184,46,0); }
}

.hero__title {
  font-size: clamp(44px, 7.2vw, 104px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  max-width: 16ch;
  font-variation-settings: "opsz" 144;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.35s forwards;
}
.hero__title-accent {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.55s forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollBar 2.4s var(--ease) infinite;
}
@keyframes scrollBar {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@media (max-width: 600px) {
  .hero__scroll { display: none; }
}

/* ===========================================================
   SECTIONS - shared
   =========================================================== */
.section {
  padding: var(--section-y) var(--gutter);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section__intro {
  max-width: 760px;
  margin-bottom: 80px;
}
.section__title {
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.02;
  font-variation-settings: "opsz" 144;
}
.section__title em {
  font-style: italic;
  color: var(--gold-deep);
}
.section__sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--slate);
  max-width: 65ch;
  margin-top: 24px;
}

/* ===========================================================
   APPROACH
   =========================================================== */
.section--approach {
  background: var(--paper);
  position: relative;
}
.section--approach::before {
  content: "";
  position: absolute;
  top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: var(--line);
}
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.approach__lede p {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--graphite);
  margin-bottom: 24px;
  font-weight: 300;
}
.approach__lede p:first-child {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.approach__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}
.approach__pillars li {
  padding: 28px 0 28px 76px;
  border-top: 1px solid var(--line);
  position: relative;
}
.approach__pillars li:last-child { border-bottom: 1px solid var(--line); }
.pillar__num {
  position: absolute;
  top: 28px;
  left: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold-deep);
}
.approach__pillars h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 4px 0 8px;
}
.approach__pillars p {
  margin: 0;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .approach__grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   STATS
   =========================================================== */
.stats {
  position: relative;
  padding: clamp(70px, 9vw, 110px) var(--gutter);
  color: var(--white);
  overflow: hidden;
}
.stats__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,15,16,0.86), rgba(15,15,16,0.72)),
    url("https://images.unsplash.com/photo-1444723121867-7a241cacace9?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  filter: contrast(1.05);
}
.stats__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
}
.stat__label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 880px) {
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
}
@media (max-width: 480px) {
  .stats__inner { grid-template-columns: 1fr; gap: 32px; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 32px; }
  .stat:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ===========================================================
   PRACTICE
   =========================================================== */
.section--practice {
  background: var(--paper-warm);
}
.practice__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.practice__card {
  background: var(--paper-warm);
  padding: 36px 28px 32px;
  position: relative;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.practice__card:hover {
  background: var(--ink);
  color: var(--white);
}
.practice__card:hover .practice__num {
  color: var(--gold);
}
.practice__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  margin-bottom: 60px;
  transition: color 0.4s var(--ease);
}
.practice__card h3 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.practice__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
  transition: color 0.4s var(--ease);
}
.practice__card:hover p {
  color: rgba(255,255,255,0.75);
}

@media (max-width: 1080px) {
  .practice__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .practice__grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   TEAM
   =========================================================== */
.section--team {
  background: var(--paper);
  position: relative;
}
.section--team::before {
  content: "";
  position: absolute;
  top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: var(--line);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 40px;
}
@media (max-width: 980px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
}
@media (max-width: 600px) {
  .team__grid { grid-template-columns: 1fr; gap: 40px; }
}

.bio {
  display: flex;
  flex-direction: column;
}
.bio__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--graphite);
  margin-bottom: 24px;
  border-radius: 2px;
}
.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(0.15) contrast(1.02);
}
.bio:hover .bio__photo img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05);
}
.bio__photo--placeholder {
  background:
    linear-gradient(135deg, var(--graphite) 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio__photo--placeholder::before {
  content: attr(data-initials);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(60px, 6vw, 88px);
  color: var(--gold);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.bio__photo--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(244,184,46,0.12), transparent 50%);
  pointer-events: none;
}

.bio__name {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 72;
}
.bio__title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}
.bio__short p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}
.bio__full {
  display: none;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.bio__full p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0 0 12px;
}
.bio__full p:last-child { margin-bottom: 0; }
.bio.is-open .bio__full { display: block; }

.bio__toggle {
  margin-top: 16px;
  background: transparent;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.bio__toggle:hover { color: var(--gold-deep); gap: 14px; }
.bio__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.bio.is-open .bio__toggle-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}

/* Text-only bio card (no photo). Vertically centers content
   within the row height so it reads as intentional. */
.bio--text-only {
  justify-content: center;
}
.bio--text-only .bio__body {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  position: relative;
}
.bio--text-only .bio__name {
  font-size: 32px;
  margin-bottom: 6px;
}
.bio--text-only .bio__title {
  margin-bottom: 22px;
}

/* ===========================================================
   OFFICES
   =========================================================== */
.section--offices {
  background: var(--paper-warm);
  position: relative;
}
.offices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.office {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: default;
}
.office__media {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(0.4) contrast(1.05);
}
.office:hover .office__media {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05);
}
.office__media--ny { background-image: url("https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?auto=format&fit=crop&w=1600&q=80"); }
.office__media--la { background-image: url("https://images.unsplash.com/photo-1444723121867-7a241cacace9?auto=format&fit=crop&w=1600&q=80"); }
.office__media--sf { background-image: url("https://images.unsplash.com/photo-1521747116042-5a810fda9664?auto=format&fit=crop&w=1600&q=80"); }

.office__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, transparent, rgba(15,15,16,0.85));
  color: var(--white);
}
.office__body h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 72;
}
.office__caption {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 880px) {
  .offices__grid { grid-template-columns: 1fr; }
  .office__media { aspect-ratio: 16 / 9; }
}

/* ===========================================================
   CONTACT
   =========================================================== */
.section--contact {
  background: var(--ink);
  color: var(--white);
  padding: clamp(100px, 12vw, 180px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.section--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(244,184,46,0.15), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(244,184,46,0.08), transparent 50%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.contact__title {
  font-size: clamp(40px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144;
}
.contact__sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 60ch;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.contact__email {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  border-bottom: 1px solid rgba(244,184,46,0.4);
  padding-bottom: 6px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
  font-variation-settings: "opsz" 144;
}
.contact__email:hover {
  border-bottom-color: var(--gold);
  color: var(--white);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--graphite);
  color: rgba(255,255,255,0.78);
  padding: 80px var(--gutter) 32px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.footer__col li { margin-bottom: 8px; }
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold); }

.footer__legal {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: start;
}
.footer__legal p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__legal { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ===========================================================
   REVEAL ANIMATIONS
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
