/* ============================================
   Peter A. Serfözö — Freier Architekt
   Shared Stylesheet
   ============================================ */

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

/* --- Custom Properties --- */
:root {
  --burgundy: #660000;
  --burgundy-deep: #4a0000;
  --burgundy-light: #8a1a1a;
  --gold: #FFC900;
  --gold-dim: #d4a800;
  --gold-glow: #ffe066;
  --white: #ffffff;
  --white-soft: #f5f0eb;
  --off-white: #e8e0d8;
  --black: #1a1a1a;
  --overlay: rgba(66, 0, 0, 0.85);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 80px;
  --max-width: 1400px;
  --gap: clamp(12px, 2vw, 24px);
  --section-pad: clamp(40px, 8vw, 100px);
}

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

/* --- Screen-reader only (visually hidden) --- */
.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;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  background-color: var(--burgundy);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-glow);
}

ul, ol {
  list-style: none;
}

/* --- Background texture --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 201, 0, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 201, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: #262626;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 201, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 40px);
}

.nav__logo {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.nav__logo:hover {
  opacity: 0.85;
}

.nav__links {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 960px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--burgundy-deep);
    padding: calc(var(--nav-height) + 10px) 40px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(255, 201, 0, 0.1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    align-items: flex-start;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 15px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav__overlay.visible {
  display: block;
  opacity: 1;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-height);
  flex: 1;
}

/* --- Page Header --- */
.page-header {
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 40px) clamp(16px, 2vw, 24px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.page-header__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}

/* --- Section --- */
.section {
  padding: 0 clamp(20px, 4vw, 40px) var(--section-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.section__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

/* ============================================
   TOPBAR (Homepage logo area)
   ============================================ */
.topbar {
  height: 140px;
  background: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.topbar__brand {
  display: block;
}

.topbar__logo {
  width: 318px;
  height: 69px;
  object-fit: contain;
}

/* ============================================
   NAV — static variant (homepage)
   ============================================ */
.nav--static {
  position: relative;
  top: auto;
  height: auto;
  background: #262626;
  border-bottom: none;
}

.nav--static .nav__inner {
  justify-content: center;
  padding: 0;
}

.nav__links--center {
  justify-content: center;
  gap: 0;
}

@media (max-width: 960px) {
  .nav__links--center {
    justify-content: flex-start;
  }
}

.nav__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  padding: 0 clamp(6px, 1vw, 14px);
  user-select: none;
}

.nav--static .nav__link {
  padding: 10px 0;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .nav--static .nav__sep {
    display: none;
  }

  .nav--static .nav__links {
    padding-top: calc(var(--nav-height) + 10px);
  }
}

/* ============================================
   HOME — Main content with padding-bottom
         for fixed footer
   ============================================ */
.main--home {
  padding-top: 0;
  padding-bottom: 160px; /* space for fixed footer */
}

/* ============================================
   HOME — 4 Columns (matching original)
   ============================================ */
.home-columns {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

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

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

.home-col__heading {
  display: block;
  text-align: center;
  background: #2f2f2f;
  padding: 5px 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.home-col__heading:hover {
  color: var(--gold);
}

.home-col__img-wrap {
  display: block;
  overflow: hidden;
}

.home-col__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.home-col__img-wrap:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* ============================================
   HOME FOOTER (fixed at bottom)
   ============================================ */
.home-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #262626;
}

.footer__bar {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.footer__bar .footer__copy {
  font-size: 13px;
  color: var(--off-white);
  opacity: 0.5;
}

.footer__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  padding: 0 8px;
}

.footer__bar .footer__link {
  font-size: 13px;
  color: var(--off-white);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer__bar .footer__link:hover {
  opacity: 1;
  color: var(--gold);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 0 clamp(20px, 4vw, 40px) var(--section-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 180px;
  gap: 6px;
}

/* Feature-Bild: erstes Bild groß */
.gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
  }
}

@media (max-width: 600px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 4px;
  }

  .gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--burgundy-deep);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.8);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0px solid var(--gold);
  transition: border-width 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery__item:hover::after {
  border-width: 2px;
}

/* Einzelne Bilder variieren in der Höhe für Masonry-Effekt */
.gallery__item:nth-child(5n+3) {
  grid-row: span 2;
}

.gallery__item:nth-child(7n+5) {
  grid-row: span 2;
}

@media (max-width: 600px) {
  .gallery__item:nth-child(5n+3),
  .gallery__item:nth-child(7n+5) {
    grid-row: span 1;
  }
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: zoom-out;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(255, 201, 0, 0.2);
  animation: lightboxZoom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 32px;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  z-index: 2001;
}

.lightbox__close:hover {
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  padding: 16px;
  transition: opacity 0.3s ease;
  font-family: var(--font-body);
  font-weight: 300;
}

.lightbox__nav:hover {
  opacity: 0.7;
}

.lightbox__nav--prev {
  left: 16px;
}

.lightbox__nav--next {
  right: 16px;
}

/* ============================================
   TEXT CONTENT PAGES
   ============================================ */
.content {
  padding: 0 clamp(20px, 4vw, 40px) var(--section-pad);
  max-width: 900px;
  margin: 0 auto;
}

.content p {
  margin-bottom: 16px;
  color: var(--off-white);
  line-height: 1.8;
}

.content strong {
  color: var(--white);
  font-weight: 600;
}

.content ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.content li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--off-white);
}

.content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}

.content ol {
  counter-reset: list-counter;
  margin-bottom: 20px;
}

.content ol li {
  counter-increment: list-counter;
  padding-left: 28px;
}

.content ol li::before {
  content: counter(list-counter) '.';
  position: absolute;
  left: 0;
  top: 6px;
  font-weight: 600;
  color: var(--gold);
  font-size: 14px;
  width: auto;
  height: auto;
  background: none;
}

.content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
  margin: 28px 0 10px;
}

.content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin: 16px 0 6px;
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 1.5px;
  background: var(--gold);
  margin: 40px 0;
  border: none;
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile {
  padding: 0 clamp(20px, 4vw, 40px) var(--section-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.profile__intro {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  margin-bottom: 60px;
}

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

.profile__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 201, 0, 0.2);
}

.profile__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}

.profile__bio p {
  color: var(--off-white);
  margin-bottom: 12px;
  line-height: 1.8;
}

.profile__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.profile__badge {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border: 1px solid rgba(255, 201, 0, 0.3);
  color: var(--gold);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 30px;
  margin-bottom: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 201, 0, 0.25);
}

.timeline__item {
  position: relative;
  margin-bottom: 28px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 8px;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--gold);
  background: var(--burgundy);
  transform: rotate(45deg);
}

.timeline__date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline__text {
  color: var(--off-white);
  line-height: 1.7;
}

/* --- Services List --- */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

.services-list li {
  padding: 12px 16px 12px 28px;
  position: relative;
  color: var(--off-white);
  border-left: 2px solid rgba(255, 201, 0, 0.15);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.services-list li:hover {
  border-left-color: var(--gold);
  background: rgba(255, 201, 0, 0.03);
}

.services-list li::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 20px;
  width: 6px;
  height: 1.5px;
  background: var(--gold);
}

/* ============================================
   CONTACT PAGE — Modern & Compact
   ============================================ */
.contact-modern {
  padding: 0 clamp(20px, 4vw, 40px) var(--section-pad);
  max-width: 960px;
  margin: 0 auto;
}

.contact-modern__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 700px) {
  .contact-modern__two-col {
    grid-template-columns: 1fr;
  }
}

.contact-modern__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.contact-modern__card:hover {
  border-color: rgba(255, 201, 0, 0.25);
}

.contact-modern__img-wrap {
  overflow: hidden;
  height: 200px;
}

.contact-modern__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.contact-modern__card:hover .contact-modern__img-wrap img {
  transform: scale(1.04);
}

.contact-modern__card-body {
  padding: 24px;
}

.contact-modern__card-body p {
  color: var(--off-white);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-modern__highlight {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 15px !important;
  margin-top: 8px;
}

.contact-modern__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-modern__sub {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 12px !important;
}

.contact-modern__address {
  margin-bottom: 16px !important;
}

.contact-modern__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.contact-modern__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-modern__row:hover {
  color: var(--gold);
}

.contact-modern__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  min-width: 44px;
}

/* ============================================
   DOWNLOAD PAGE
   ============================================ */
.downloads {
  padding: 0 clamp(20px, 4vw, 40px) var(--section-pad);
  max-width: 900px;
  margin: 0 auto;
}

.download-list {
  margin-bottom: 40px;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.download-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.download-item:hover {
  background: rgba(255, 201, 0, 0.04);
}

.download-item__name {
  font-weight: 500;
  color: var(--white);
}

.download-item__size {
  font-size: 13px;
  color: var(--off-white);
  opacity: 0.6;
}

.download-item__icon {
  font-size: 18px;
  color: var(--gold);
  margin-right: 12px;
}

.download-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.download-item a:hover {
  color: var(--gold);
}

.download-notice {
  padding: 24px;
  border: 1px solid rgba(255, 201, 0, 0.15);
  background: rgba(255, 201, 0, 0.03);
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.8;
}

/* ============================================
   IMAGE STRIP (Homepage — carousel above footer)
   ============================================ */
.image-strip {
  height: 100px;
  overflow: hidden;
  padding-top: 4px;
}

.image-strip__row {
  display: flex;
  width: max-content;
  animation: stripScroll 30s linear infinite;
}

.image-strip__row:hover {
  animation-play-state: paused;
}

.image-strip__row img {
  width: 100px;
  height: 96px;
  object-fit: cover;
  margin-right: 5px;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.image-strip__row img:hover {
  opacity: 0.75;
}

@keyframes stripScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  background: #262626;
  border-top: 1px solid rgba(255, 201, 0, 0.12);
  padding: 30px clamp(20px, 4vw, 40px);
  margin-top: auto;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: var(--off-white);
  opacity: 0.5;
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__link {
  font-size: 13px;
  color: var(--off-white);
  opacity: 0.5;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.footer__link:hover {
  opacity: 1;
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
