/* ============================================================
   TAINA & THIAGO — Wedding 2026
   Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&family=Great+Vibes&display=swap');

/* --- Custom Properties ------------------------------------ */
:root {
  --ivory:       #FAF8F3;
  --ivory-dark:  #F0ECE3;
  --charcoal:    #1C1C1C;
  --charcoal-60: rgba(28, 28, 28, 0.6);
  --charcoal-30: rgba(28, 28, 28, 0.3);
  --gold:        #B8975A;
  --gold-light:  #D4B483;
  --gold-pale:   #F2E8D5;
  --sage:        #8B9E8E;
  --sage-light:  #C5D4C8;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --nav-h:       72px;
  --max-w:       1100px;
  --section-gap: 140px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* --- Utilities -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 60px);
}

.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;
}

/* Reveal animation (JS-driven via IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--charcoal-30);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 1; }

.nav__rsvp {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.nav__rsvp:hover {
  background: var(--gold);
  color: var(--white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .nav__links, .nav__rsvp { display: none; }
  .nav__hamburger { display: flex; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184, 151, 90, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(139, 158, 142, 0.07) 0%, transparent 60%);
}

/* Decorative botanical lines */
.hero__bg::before,
.hero__bg::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(184, 151, 90, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero__bg::before {
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero__bg::after {
  width: min(440px, 70vw);
  height: min(440px, 70vw);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.3s forwards;
}

.hero__names {
  font-family: var(--font-script);
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--charcoal);
  line-height: 0.9;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeSlideUp 1.1s var(--ease-out) 0.5s forwards;
}

.hero__and {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--charcoal-60);
  letter-spacing: 0.1em;
  margin: 12px 0;
  opacity: 0;
  animation: fadeSlideUp 1.1s var(--ease-out) 0.7s forwards;
}

.hero__date {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 36px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.9s forwards;
}

.hero__divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 24px auto 0;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}
.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-60);
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: var(--gold-light);
  animation: scrollPulse 2s ease-in-out 2s infinite;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}


/* ============================================================
   SECTION LAYOUT BASE
   ============================================================ */
.section {
  padding-block: var(--section-gap);
}

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__subtitle {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-60);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}

.gold-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-block: 20px;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.gold-rule__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}


/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown {
  background: var(--charcoal);
  color: var(--white);
  padding-block: 80px;
  text-align: center;
}

.countdown__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 40px;
}

.countdown__grid {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 72px);
  flex-wrap: wrap;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.countdown__num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  min-width: 2ch;
  text-align: center;
  transition: transform 0.3s var(--ease-out);
}
.countdown__num.flip {
  animation: numFlip 0.4s var(--ease-out);
}

.countdown__unit {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.countdown__sep {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  color: rgba(255,255,255,0.15);
  line-height: 1;
  align-self: flex-start;
  margin-top: 4px;
}

@keyframes numFlip {
  0%   { opacity: 0.2; transform: translateY(-8px); }
  100% { opacity: 1;   transform: none; }
}


/* ============================================================
   STORY TIMELINE
   ============================================================ */
.story {
  background: var(--ivory);
}

.timeline {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
  opacity: 0.4;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0 24px;
  margin-bottom: 64px;
  position: relative;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__item:nth-child(odd)  .timeline__content { grid-column: 1; text-align: right; }
.timeline__item:nth-child(odd)  .timeline__dot     { grid-column: 2; }
.timeline__item:nth-child(odd)  .timeline__empty   { grid-column: 3; }

.timeline__item:nth-child(even) .timeline__empty   { grid-column: 1; }
.timeline__item:nth-child(even) .timeline__dot     { grid-column: 2; }
.timeline__item:nth-child(even) .timeline__content { grid-column: 3; text-align: left; }

.timeline__dot {
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.timeline__dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 1px var(--gold);
  flex-shrink: 0;
}

.timeline__year {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline__heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline__body {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal-60);
  line-height: 1.75;
}

@media (max-width: 600px) {
  .timeline::before { left: 20px; }
  .timeline__item {
    grid-template-columns: 40px 1fr;
    gap: 0 16px;
  }
  .timeline__item:nth-child(odd) .timeline__content,
  .timeline__item:nth-child(even) .timeline__content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }
  .timeline__item:nth-child(odd) .timeline__dot,
  .timeline__item:nth-child(even) .timeline__dot {
    grid-column: 1;
    grid-row: 1;
  }
  .timeline__item:nth-child(odd) .timeline__empty,
  .timeline__item:nth-child(even) .timeline__empty { display: none; }
}


/* ============================================================
   THE DAY  (Ceremony + Reception)
   ============================================================ */
.the-day {
  background: var(--ivory-dark);
}

.day-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--gold-pale);
  border-radius: 4px;
  overflow: hidden;
}

.day-card {
  background: var(--white);
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.day-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.day-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--gold);
  opacity: 0.8;
}

.day-card__type {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.day-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 28px;
}

.day-card__detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.day-card__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.day-card__row-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-30);
}
.day-card__row-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
}

.day-card__map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-pale);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.day-card__map:hover {
  color: var(--charcoal);
  border-color: var(--charcoal-30);
}

@media (max-width: 700px) {
  .day-cards {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}


/* ============================================================
   DRESS CODE
   ============================================================ */
.dress-code { background: var(--ivory); }

.palette {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 32px);
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.palette__swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.palette__color {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s var(--ease-out);
}
.palette__swatch:hover .palette__color { transform: scale(1.08); }

.palette__name {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  text-align: center;
}

.dress-code__note {
  max-width: 540px;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal-60);
  line-height: 1.8;
}


/* ============================================================
   RSVP
   ============================================================ */
.rsvp {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.rsvp::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184, 151, 90, 0.1);
  pointer-events: none;
}
.rsvp::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(184, 151, 90, 0.07);
  pointer-events: none;
}

.rsvp .section__tag { color: var(--gold-light); }
.rsvp .section__title { color: var(--white); }
.rsvp .section__subtitle { color: rgba(255,255,255,0.5); }
.rsvp .gold-rule::before,
.rsvp .gold-rule::after { background: var(--gold-light); }
.rsvp .gold-rule__dot { background: var(--gold-light); }

.rsvp__deadline {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 56px;
}

.rsvp-form {
  max-width: 520px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.2); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(184,151,90,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field select option { background: #2a2a2a; color: var(--white); }

.field textarea { resize: vertical; min-height: 100px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.rsvp-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s var(--ease-out);
}
.rsvp-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.rsvp-submit:active { transform: none; }

.rsvp__success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.rsvp__success.visible { display: block; }
.rsvp__success-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.rsvp__success h3 {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.rsvp__success p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}


/* ============================================================
   DETAILS — FAQ / Logística
   ============================================================ */
.details { background: var(--ivory-dark); }

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  border: 1px solid var(--gold-pale);
  border-radius: 4px;
  overflow: hidden;
}

.detail-card {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
}

.detail-card__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.detail-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.detail-card__body {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal-60);
  line-height: 1.75;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.35);
  padding-block: 60px;
  text-align: center;
}

.footer__names {
  font-family: var(--font-script);
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  margin-bottom: 12px;
  line-height: 1;
}

.footer__date {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 32px;
}

.footer__rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-inline: auto;
  margin-bottom: 24px;
}

.footer__credit {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.2);
}
.footer__credit a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__credit a:hover { color: rgba(255,255,255,0.6); }


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
}


/* ============================================================
   CUSTOM CURSOR (desktop)
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"] { cursor: none; }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
  }

  .cursor__dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, opacity 0.2s;
  }

  .cursor__ring {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
  }

  body.cursor-hover .cursor__ring {
    width: 48px;
    height: 48px;
    opacity: 0.3;
  }
}
