/* ===========================
   SWING THE HAMMER FILMS
   Cinematic dark theme
   =========================== */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --dark-card: #141414;
  --border: rgba(255,255,255,0.08);
  --border-mid: rgba(255,255,255,0.14);
  --white: #c8c4be;
  --white-dim: rgba(185,181,175,0.7);
  --white-dimmer: rgba(185,181,175,0.38);
  --accent: #c8a97a;
  --accent-dark: #a08050;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); }

/* ===========================
   NAV
   =========================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
  transition: background var(--transition);
}

#nav.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  letter-spacing: 0.12em;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: var(--transition);
}

/* ===========================
   HERO CAROUSEL
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-1 { background-image: url('assets/img/nasumice-still-1.jpg'); background-size: cover; background-position: center; }
.slide-2 { background-image: url('assets/img/nasumice-still-2.jpg'); background-size: cover; background-position: center; }
.slide-3 { background-image: url('assets/img/nasumice-still-3.jpg'); background-size: cover; background-position: center; }
.slide-4 { background: linear-gradient(135deg, #0f0a1a 0%, #18102a 30%, #0a1018 70%, #08100f 100%); }

/* Grain texture overlay */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.5) 80%,
    rgba(0,0,0,0.8) 100%
  );
  z-index: 2;
}

.slide-caption {
  position: absolute;
  bottom: 140px;
  left: 48px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--accent);
  z-index: 3;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.slide.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-mid);
  color: var(--white);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: background var(--transition), border-color var(--transition);
}

.carousel-btn:hover {
  background: rgba(200, 169, 122, 0.15);
  border-color: var(--accent);
}

.prev { left: 32px; }
.next { right: 32px; }

.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 32px; height: 1px;
  background: var(--white-dimmer);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 48px;
}

.hero-title {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 700px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-outline {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--black);
}

.btn-ghost {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--border-mid);
  color: var(--white-dim);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition);
}

.btn-ghost:hover {
  border-color: var(--white-dim);
  color: var(--white);
}

/* ===========================
   INTRO STRIP
   =========================== */
.intro-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: baseline;
  gap: 60px;
}

.intro-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.intro-text {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 0 48px;
}

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

/* ===========================
   FEATURED PROJECTS (HOME)
   =========================== */
.featured {
  padding: 96px 0 72px;
}

.project-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.project-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--dark-card);
  transition: transform var(--transition);
}

.project-card:hover { transform: translateY(-4px); }

.project-img {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.project-card:hover .project-img { transform: scale(1.04); }

.img-nasumice { 
  background-image: url('assets/img/nasumice-hero.jpg'); 
  background-size: cover; 
  background-position: center;
}
.img-leaves   { background: linear-gradient(160deg, #0a1a10 0%, #0f2a18 50%, #1a0f0a 100%); }
.img-interrata{ background: linear-gradient(160deg, #1a0f08 0%, #2a1808 50%, #0a1010 100%); }
.img-caillte  { background: linear-gradient(160deg, #0f0a1a 0%, #18102a 50%, #0a1018 100%); }
.img-sky      { background: linear-gradient(160deg, #0a1020 0%, #0f1830 50%, #151008 100%); }

.project-info {
  padding: 24px;
  background: var(--dark-card);
}

.project-type {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.project-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-info p {
  font-size: 13px;
  color: var(--white-dimmer);
  line-height: 1.6;
}

.view-all-wrap {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 48px;
  text-align: right;
}

/* ===========================
   PAGE HERO
   =========================== */
.page-hero {
  padding: calc(var(--nav-h) + 24px) 0 24px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--white);
}

/* ===========================
   PROJECTS FULL
   =========================== */
.projects-full {
  padding: 0 0 96px;
}

.project-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.project-full-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.project-full:hover .project-full-img { transform: scale(1.03); }

.project-full-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-full.reverse .project-full-img { order: 2; }
.project-full.reverse .project-full-content { order: 1; }

.project-full-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin: 12px 0 20px;
  color: var(--white);
}

.project-awards {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.project-awards span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dimmer);
}

.project-full-content p {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ===========================
   ABOUT
   =========================== */
.about-body { padding: 80px 0; }

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.about-statement {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.about-statement h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
}

.about-text p {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-text em { color: var(--accent); font-style: italic; }

.about-credits {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.credit-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credit-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.credit-value {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--white);
}

.about-quote {
  padding: 80px 48px;
  text-align: center;
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
}

.about-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--white-dim);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   CONTACT
   =========================== */
.contact-body { padding: 80px 0; }

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.contact-intro {
  margin-bottom: 56px;
}

.contact-intro p {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 640px;
}

.contact-form {
  margin-bottom: 64px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  background: var(--dark-mid);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-dimmer);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.btn-submit {
  display: inline-block;
  padding: 14px 48px;
  background: var(--accent);
  border: none;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-submit:hover { background: #d4b98a; }

.contact-details {
  padding-top: 48px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.detail-value {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--white);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--dark);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo { display: flex; flex-direction: column; line-height: 1.2; }

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dimmer);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 11px;
  color: var(--white-dimmer);
  letter-spacing: 0.06em;
}

/* ===========================
   MOBILE NAV OPEN
   =========================== */
#nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}

#nav.open .nav-links a {
  font-size: 14px;
  letter-spacing: 0.25em;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-full {
    grid-template-columns: 1fr;
  }

  .project-full.reverse .project-full-img { order: 0; }
  .project-full.reverse .project-full-content { order: 0; }

  .project-full-img { aspect-ratio: 16/9; }
  .project-full-content { padding: 40px 32px; }

  .about-credits { grid-template-columns: 1fr 1fr; }
  .contact-details { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .stills-gallery { padding: 0 32px; }
}

@media (max-width: 700px) {
  #nav { padding: 0 24px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { 
    bottom: 48px;
    width: 88%;
  }

  .hero-tagline { font-size: 16px; }

  .slide-caption { left: 24px; bottom: 120px; }

  .carousel-btn { 
    width: 36px; height: 36px; 
    font-size: 14px;
  }
  .prev { left: 12px; }
  .next { right: 12px; }

  .intro-inner {
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .section-header,
  .page-hero-inner,
  .about-inner,
  .contact-inner,
  .footer-inner,
  .category-label-bar {
    padding: 0 24px;
  }

  .project-filter-bar { padding: 0 24px; }
  .filter-btn { padding: 12px 14px; font-size: 10px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .view-all-wrap { padding: 0 24px; }

  .stills-gallery { 
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 6px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .still { aspect-ratio: 16/9; }

  .about-credits { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }

  .project-full-content { padding: 32px 24px; }

  .page-hero { padding: calc(var(--nav-h) + 40px) 0 40px; }

  .about-quote { padding: 48px 24px; }

  .featured { padding: 64px 0 48px; }

  .lightbox-nav { gap: 12px; }
  .lightbox-nav button { padding: 8px 16px; font-size: 12px; }
}

/* ===========================
   STILLS GALLERY
   =========================== */
.stills-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 700px;
  margin: 32px auto 56px;
  padding: 0 48px;
}

.still {
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
  filter: brightness(0.8);
}

.still:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--white-dim);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.lightbox-close:hover { color: var(--white); }

.lightbox-nav {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.lightbox-nav button {
  background: none;
  border: 1px solid var(--border-mid);
  color: var(--white-dim);
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.lightbox-nav button:hover {
  border-color: var(--accent);
  color: var(--white);
}

.lightbox-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--white-dimmer);
  margin-top: 14px;
  letter-spacing: 0.08em;
}

.stills-placeholder {
  pointer-events: none;
}

.still-placeholder {
  aspect-ratio: 16/9;
  background: var(--dark-mid);
  border: 1px dashed var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.still-placeholder span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dimmer);
}

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

/* ===========================
   PROJECT FILTER BAR
   =========================== */
.project-filter-bar {
  display: flex;
  gap: 0;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--white-dimmer);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  margin-bottom: -1px;
}

.filter-btn:hover { color: var(--white); }

.filter-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ===========================
   CATEGORY LABEL BAR
   =========================== */
.projects-category {
  transition: opacity 0.4s ease;
}

.projects-category.hidden {
  display: none;
}

.category-label-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 0 48px 20px;
  border-bottom: 1px solid var(--border);
}

.category-marker {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.category-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* ===========================
   FADE-IN ANIMATION
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
