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

:root {
  --bg: #080705;
  --bg-2: #120d09;
  --gold: #ffd24a;
  --gold-deep: #e8b423;
  --orange: #ff7a18;
  --orange-deep: #c44e08;
  --cream: #f3e6c8;
  --muted: #b89a6a;
  --ink: #0a0806;
  --line: rgba(255, 210, 74, 0.18);
  --line-strong: rgba(255, 210, 74, 0.45);
  --display: "Pixelify Sans", "Anton", sans-serif;
  --sans: "Outfit", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1080px, 90vw);
  margin: 0 auto;
}

.center {
  text-align: center;
}
.sub {
  color: var(--muted);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 7, 5, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
  flex-shrink: 0;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: var(--ink);
  image-rendering: pixelated;
}

.logo-name {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--gold);
}

.logo-ticker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  transition: transform 0.15s, background 0.2s, color 0.2s;
}

.nav-icon:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--gold);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 4rem;
  overflow: hidden;
  background: var(--bg);
}

.hero-banner {
  position: absolute;
  inset: 0;
  background: url("banner.png") center / cover no-repeat;
  image-rendering: pixelated;
  z-index: 0;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
      90deg,
      rgba(8, 7, 5, 0.92) 0%,
      rgba(8, 7, 5, 0.72) 42%,
      rgba(8, 7, 5, 0.35) 70%,
      rgba(8, 7, 5, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 7, 5, 0.35) 0%,
      transparent 28%,
      rgba(8, 7, 5, 0.55) 100%
    );
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-burst {
  position: absolute;
  top: 48%;
  right: 14%;
  width: min(58vw, 560px);
  height: min(58vw, 560px);
  transform: translate(20%, -50%);
  background: radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.28) 0%,
      transparent 42%
    ),
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 210, 74, 0.08) 0deg 8deg,
      transparent 8deg 22deg
    );
  border-radius: 50%;
  opacity: 0.85;
  animation: hero-spin-burst 40s linear infinite;
}

.hero-logo-glow {
  position: absolute;
  top: 48%;
  right: 14%;
  width: min(42vw, 420px);
  aspect-ratio: 1;
  transform: translate(20%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 210, 74, 0.35) 0%,
    transparent 68%
  );
  animation: hero-pulse 3.8s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  top: 48%;
  right: 14%;
  aspect-ratio: 1;
  transform: translate(20%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 210, 74, 0.18);
}

.hero-orbit-1 {
  width: min(48vw, 460px);
  animation: hero-spin 22s linear infinite;
}

.hero-orbit-2 {
  width: min(56vw, 540px);
  border-style: dashed;
  border-color: rgba(255, 122, 24, 0.35);
  animation: hero-spin 32s linear infinite reverse;
}

.hero-spark {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
  animation: spark-twinkle 2.4s ease-in-out infinite;
}

.hero-spark-1 {
  top: 22%;
  right: 28%;
  animation-delay: 0s;
}
.hero-spark-2 {
  top: 68%;
  right: 12%;
  width: 10px;
  height: 10px;
  animation-delay: 0.7s;
}
.hero-spark-3 {
  top: 34%;
  right: 8%;
  width: 18px;
  height: 18px;
  animation-delay: 1.3s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.hero-copy {
  max-width: 540px;
  color: var(--cream);
  animation: hero-rise 0.9s ease-out both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-pulse {
  0%,
  100% {
    transform: translate(20%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(20%, -50%) scale(1.08);
    opacity: 0.7;
  }
}

@keyframes hero-spin {
  from {
    transform: translate(20%, -50%) rotate(0deg);
  }
  to {
    transform: translate(20%, -50%) rotate(360deg);
  }
}

@keyframes hero-spin-burst {
  from {
    transform: translate(20%, -50%) rotate(0deg);
  }
  to {
    transform: translate(20%, -50%) rotate(360deg);
  }
}

@keyframes spark-twinkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.35) rotate(20deg);
    opacity: 0.35;
  }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  animation: hero-rise 0.9s ease-out 0.12s both;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 5.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--cream);
  text-shadow: 0 0 28px rgba(255, 122, 24, 0.45), 4px 4px 0 rgba(0, 0, 0, 0.45);
  animation: hero-rise 0.9s ease-out 0.2s both;
}

.hero-ticker {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.1rem;
  animation: hero-rise 0.9s ease-out 0.28s both;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(243, 230, 200, 0.72);
  max-width: 420px;
  margin-bottom: 1.85rem;
  font-weight: 400;
  animation: hero-rise 0.9s ease-out 0.36s both;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: hero-rise 0.9s ease-out 0.44s both;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 40vw, 440px);
  animation: hero-rise 0.9s ease-out 0.3s both;
}

.stamp-frame {
  position: relative;
  background: var(--ink);
  box-shadow: 0 0 0 6px var(--cream), 0 0 40px rgba(255, 122, 24, 0.35),
    12px 12px 0 rgba(0, 0, 0, 0.45);
}

.hero-logo-frame {
  z-index: 1;
  width: min(78%, 360px);
  aspect-ratio: 1;
  padding: 0;
  animation: logo-float 4s ease-in-out infinite;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  background: #000;
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-deep);
}

.btn-ink {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}

.btn-ink:hover {
  background: #1a140c;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--gold);
}

.btn-lg {
  padding: 1.05rem 2rem;
}
.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.78rem;
}
.btn-sm.copied {
  opacity: 0.65;
}

/* ── Ticker bar ── */
.ticker-bar {
  overflow: hidden;
  padding: 0.75rem 0;
  background: var(--ink);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.ticker-inner {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: scroll 24s linear infinite;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 122, 24, 0.55);
}

.ticker-inner span:nth-child(odd) {
  color: var(--gold);
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ── Blocks ── */
.block {
  padding: 5.5rem 0;
  background: var(--bg-2);
}

.block-ink {
  background: var(--bg);
  color: var(--cream);
}

.block-ink .tag {
  color: var(--gold);
}
.block-ink h2 {
  color: var(--cream);
}
.block-ink .sub {
  color: var(--muted);
}

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

.block-gold .tag {
  color: var(--ink);
  opacity: 0.7;
}
.block-gold h2 {
  color: var(--ink);
}
.block-gold .sub {
  color: rgba(10, 8, 6, 0.6);
}

.block-head {
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.block-head.center {
  margin-left: auto;
  margin-right: auto;
}

.tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.block h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.block h2 em {
  font-style: normal;
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.block-gold h2 em {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.block-head p {
  color: var(--muted);
}

/* ── Origin ── */
.origin-grid {
  display: grid;
  gap: 2rem;
}

.origin-banner-wrap {
  border: 2px solid var(--gold);
  box-shadow: 10px 10px 0 rgba(255, 122, 24, 0.22);
  overflow: hidden;
  background: #000;
}

.origin-banner-wrap img {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.origin-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  border: 2px solid var(--gold);
}

.origin-facts li {
  padding: 1.6rem 1.25rem;
  border-right: 2px solid var(--gold);
}

.origin-facts li:last-child {
  border-right: none;
}

.origin-facts span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.origin-facts h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--gold);
}

.origin-facts p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gal-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--gold);
  padding: 0;
  cursor: zoom-in;
  background: #000;
  box-shadow: 6px 6px 0 rgba(255, 122, 24, 0.18);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  transition: transform 0.45s ease;
}

.gal-item:hover img {
  transform: scale(1.04);
}

.gal-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(8, 7, 5, 0.85), transparent);
  pointer-events: none;
}

.gal-item span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.gal-wide {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gal-wide span {
  font-size: 0.9rem;
  bottom: 1rem;
  left: 1rem;
}

/* ── Lightbox ── */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(1100px, 94vw);
}

.lightbox::backdrop {
  background: rgba(8, 7, 5, 0.92);
}

.lightbox img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid var(--gold);
  image-rendering: pixelated;
}

.lightbox-close {
  position: absolute;
  top: -2.2rem;
  right: 0;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img-wrap {
  aspect-ratio: 1;
  max-width: 340px;
  margin: 0 auto;
  overflow: hidden;
  animation: logo-bob 3.5s ease-in-out infinite;
}

@keyframes logo-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  background: #000;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-text strong {
  color: var(--gold);
}

.meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--gold);
}

.meta dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.meta dd {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* ── Contract ── */
.contract-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--ink);
  border: 2px solid var(--gold);
  box-shadow: 8px 8px 0 rgba(255, 122, 24, 0.2);
}

.ca-box code {
  flex: 1;
  font-family: ui-monospace, monospace;
  font-size: clamp(0.75rem, 2vw, 0.92rem);
  letter-spacing: 0.05em;
  word-break: break-all;
  color: var(--gold);
}

.toast {
  text-align: center;
  min-height: 1.2rem;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.toast.show {
  opacity: 1;
}

/* ── Chart ── */
.chart-box {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  border: 2px solid var(--gold);
  background: #000;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(255, 122, 24, 0.2);
}

.chart-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.chart-iframe.hidden,
.chart-ph.hidden {
  display: none;
}

.chart-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.chart-link:hover {
  text-decoration: underline;
}

@media (min-width: 1000px) {
  .chart-box {
    padding-bottom: 65%;
  }
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 2rem 0 2.5rem;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(10, 8, 6, 0.18);
}

.steps li {
  background: var(--gold);
  padding: 1.75rem 1.25rem;
  border-right: 2px solid var(--ink);
}

.steps li:last-child {
  border-right: none;
}

.steps span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(10, 8, 6, 0.55);
  margin-bottom: 0.5rem;
}

.steps h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.steps p {
  font-size: 0.9rem;
  color: rgba(10, 8, 6, 0.62);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: var(--cream);
  border-top: 2px solid var(--gold);
  padding: 2.5rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  image-rendering: pixelated;
  background: #000;
  border: 2px solid var(--gold);
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(243, 230, 200, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}

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

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(243, 230, 200, 0.38);
  line-height: 1.65;
  max-width: 600px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .about-grid,
  .steps,
  .origin-facts {
    grid-template-columns: 1fr;
  }

  .steps li,
  .origin-facts li {
    border-right: none;
    border-bottom: 2px solid var(--ink);
  }

  .origin-facts li {
    border-bottom-color: var(--gold);
  }

  .steps li:last-child,
  .origin-facts li:last-child {
    border-bottom: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-copy {
    max-width: none;
    margin: 0 auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gal-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-burst,
  .hero-logo-glow,
  .hero-orbit {
    right: auto;
    left: 50%;
  }

  .hero-burst,
  .hero-orbit-1,
  .hero-orbit-2 {
    animation-name: hero-spin-center;
  }

  .hero-logo-glow {
    animation-name: hero-pulse-center;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-spark-1 {
    right: 18%;
    left: auto;
  }
  .hero-spark-2 {
    left: 16%;
    right: auto;
  }
  .hero-spark-3 {
    right: 28%;
    left: auto;
    top: 18%;
  }
}

@keyframes hero-spin-center {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes hero-pulse-center {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.7;
  }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 2px solid var(--gold);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .logo-name {
    font-size: 1.05rem;
  }

  .ca-box {
    flex-direction: column;
  }
  .ca-box .btn {
    width: 100%;
    justify-content: center;
  }

  .meta {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  .gal-item {
    aspect-ratio: 1;
  }
  .gal-wide {
    aspect-ratio: 16 / 9;
  }
}
