:root {
  --primary: #ff5a00;
  --accent: #ffc107;
  --dark: #140403;
  --maroon: #2a0907;
  --text-light: #fff8f2;
  --text-dark: #120402;
  --card-bg: rgba(255, 255, 255, 0.08);
  --surface: rgba(26, 7, 5, 0.6);
  --glow: 0 0 30px rgba(255, 193, 7, 0.4);
  --radius: 18px;
  --transition: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-light);
  background: linear-gradient(120deg, #ff5a00 0%, #c33f02 38%, #821f07 65%, #ff7a00 100%);
  background-size: 220% 220%;
  animation: gradientShift 24s ease infinite;
  overflow-x: hidden;
  cursor: default;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 42vmax;
  height: 42vmax;
  border-radius: 999px;
  pointer-events: none;
  z-index: -4;
  opacity: 0.28;
  filter: blur(22px);
}

body::before {
  top: -18vmax;
  left: -12vmax;
  background: radial-gradient(circle, rgba(255, 228, 151, 0.75) 0%, rgba(255, 193, 7, 0) 70%);
  animation: blobDriftA 34s ease-in-out infinite;
}

body::after {
  bottom: -20vmax;
  right: -15vmax;
  background: radial-gradient(circle, rgba(255, 117, 38, 0.72) 0%, rgba(195, 63, 2, 0) 72%);
  animation: blobDriftB 40s ease-in-out infinite;
}

body:not(.loaded) {
  overflow: hidden;
}

body:not(.loaded) {
  animation: none;
}

body:not(.loaded)::before,
body:not(.loaded)::after,
body:not(.loaded) .hero-image {
  animation: none;
}

.bg-patches {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.patch {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(255, 224, 146, 0.26);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 90, 0, 0.06));
  box-shadow: 0 8px 18px rgba(20, 4, 3, 0.16);
  transform: rotate(var(--angle, -14deg));
  animation: none;
}

.patch-1 {
  width: 280px;
  height: 74px;
  top: 18%;
  left: -6%;
  --dur: 16s;
  --angle: -12deg;
}

.patch-2 {
  width: 220px;
  height: 60px;
  top: 65%;
  left: 8%;
  --dur: 18s;
  --angle: -18deg;
}

.patch-3 {
  width: 310px;
  height: 80px;
  top: 28%;
  right: -8%;
  --dur: 17s;
  --angle: -15deg;
}

.patch-4 {
  width: 250px;
  height: 64px;
  bottom: 16%;
  right: 4%;
  --dur: 20s;
  --angle: -10deg;
}

.patch-5 {
  width: 180px;
  height: 50px;
  top: 48%;
  right: 28%;
  --dur: 14s;
  --angle: -20deg;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes blobDriftA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(26px, 28px, 0) scale(1.1);
  }
}

@keyframes blobDriftB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-32px, -26px, 0) scale(1.08);
  }
}

@keyframes patchFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(var(--angle, -14deg));
    opacity: 0.42;
  }
  50% {
    transform: translateY(-24px) rotate(calc(var(--angle, -14deg) + 2deg));
    opacity: 0.62;
  }
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section:not(#home) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
  contain: layout paint style;
}

.panel {
  isolation: isolate;
}

.diagonal-section::before,
.diagonal-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(90deg, rgba(255, 193, 7, 0.35), rgba(255, 90, 0, 0));
  transform: skewY(-2.4deg);
  z-index: -1;
}

.diagonal-section::before {
  top: -45px;
}

.diagonal-section::after {
  bottom: -45px;
  transform: skewY(2.4deg);
}

.diagonal-section.reverse::before,
.diagonal-section.reverse::after {
  background: linear-gradient(90deg, rgba(255, 90, 0, 0), rgba(255, 193, 7, 0.42));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(20, 4, 3, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.6px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-light);
  text-decoration: none;
}

.surname {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.35);
}

.post-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.1px;
  color: #ffe6c8;
  background: rgba(20, 4, 3, 0.45);
  border: 1px solid rgba(255, 193, 7, 0.5);
  border-left: 7px solid var(--accent);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  margin-bottom: 14px;
}

.post-title {
  color: var(--accent);
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.35);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: rgba(255, 248, 242, 0.78);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

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

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-light);
  background: transparent;
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--accent), #fff6c5);
  box-shadow: 0 0 14px rgba(255, 193, 7, 0.75);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 130px;
  --parallax-y: 0px;
}

.hero-gradient {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 193, 7, 0.46), transparent 32%),
    radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.12), transparent 40%);
  transform: translateY(var(--parallax-y));
  transition: transform 0.12s linear;
  z-index: -3;
}

.hero-echo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: -2;
}

.hero-echo span {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 16vw, 12rem);
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.08);
  transform: rotate(-12deg);
  text-transform: uppercase;
  user-select: none;
}

.hero-echo span:nth-child(1) {
  top: 4%;
  left: -2%;
}

.hero-echo span:nth-child(2) {
  top: 27%;
  right: -6%;
}

.hero-echo span:nth-child(3) {
  bottom: 20%;
  left: -3%;
}

.hero-echo span:nth-child(4) {
  bottom: -2%;
  right: 2%;
}

.hero-diagonal {
  position: absolute;
  width: 35vw;
  height: 20vh;
  background: linear-gradient(90deg, rgba(255, 193, 7, 0.5), rgba(255, 193, 7, 0.06));
  filter: blur(0.3px);
  z-index: -1;
}

.hero-diagonal-a {
  top: 14%;
  left: -10%;
  transform: rotate(-18deg);
}

.hero-diagonal-b {
  bottom: 10%;
  right: -8%;
  transform: rotate(-18deg);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(20px, 5vw, 70px);
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero-title,
.section-title,
.card h3,
.promise-card h3,
.final-banner h2,
.icon-block h3,
.punchline {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-title {
  line-height: 0.9;
  font-size: clamp(3.4rem, 13vw, 8.2rem);
  margin-bottom: 20px;
}

.title-line {
  display: block;
  transform: translateY(120%);
  opacity: 0;
}

body.loaded .title-line {
  animation: slideInUp 0.8s forwards;
}

body.loaded .title-line:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  max-width: 560px;
  color: rgba(255, 248, 242, 0.92);
  margin-bottom: 28px;
  line-height: 1.55;
}

.hero-meta {
  font-size: clamp(0.96rem, 1.9vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.25px;
  color: rgba(255, 241, 210, 0.95);
  margin: -6px 0 14px;
  line-height: 1.45;
}

.hero-image-wrap {
  position: relative;
  max-width: 440px;
  margin-inline: auto;
}

.hero-image {
  width: 100%;
  border-radius: 20px;
  display: block;
  border: 3px solid rgba(255, 193, 7, 0.7);
  box-shadow:
    0 30px 70px rgba(20, 4, 3, 0.46),
    0 0 35px rgba(255, 193, 7, 0.33);
  animation: floatImage 4.5s ease-in-out infinite;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  body {
    animation: none;
  }

  body::before,
  body::after {
    animation: none;
    opacity: 0.16;
    filter: blur(18px);
  }

  .hero-image {
    animation: none;
  }

  .hero-diagonal {
    filter: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-decoration: none;
  padding: 0.88rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #ffd75e);
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.35);
}

.btn-secondary {
  background: linear-gradient(90deg, #fff6d4, #ffc107);
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.45);
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255, 193, 7, 0.58);
}

.section-title {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

.section-lead {
  max-width: 780px;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.about-copy {
  margin-bottom: 20px;
}

.detail-list {
  margin: 0 0 32px;
  padding-left: 1.3rem;
  display: grid;
  gap: 12px;
  font-size: 1.04rem;
  line-height: 1.6;
}

.detail-list li::marker {
  color: var(--accent);
}

.vision-tag {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.vision-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.vision-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 7px solid rgba(255, 193, 7, 0.7);
  border-radius: 14px;
  padding: 14px 16px;
}

.vision-no {
  font-family: "Bebas Neue", sans-serif;
  color: #fff4b8;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.vision-text {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 0.95;
}

.vision-text strong {
  color: #ffd867;
  background: linear-gradient(180deg, #fff4b8 0%, #ffd867 45%, #ffbf2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subsection-title {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 30px 0 16px;
}

.manifesto-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.promise-card,
.icon-block,
.why-highlight {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 24px rgba(16, 4, 3, 0.25);
}

.card h3,
.promise-card h3,
.icon-block h3 {
  font-size: 1.62rem;
  margin-bottom: 10px;
}

.card p,
.promise-card p,
.icon-block p,
.why-highlight p {
  line-height: 1.6;
  color: rgba(255, 248, 242, 0.95);
}

.vision-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.icon {
  font-size: 1.8rem;
  display: inline-flex;
  margin-bottom: 12px;
}

.promise-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.promise-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 193, 7, 0.75);
  box-shadow:
    0 18px 35px rgba(20, 4, 3, 0.35),
    0 0 24px rgba(255, 193, 7, 0.35);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.punchline {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.96;
  margin: 16px 0;
}

.why-highlight {
  position: relative;
  overflow: hidden;
}

.highlight-bar {
  width: 100%;
  height: 11px;
  background: linear-gradient(90deg, var(--accent), #ffeb9d);
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 22px rgba(20, 4, 3, 0.28);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: saturate(1.1) brightness(1.05);
}

.final-banner {
  text-align: center;
  background: linear-gradient(90deg, rgba(20, 4, 3, 0.58), rgba(42, 9, 7, 0.78));
}

.final-banner h2 {
  font-size: clamp(2.8rem, 9vw, 6.2rem);
  line-height: 0.9;
  margin-bottom: 14px;
}

.final-vote-line {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: clamp(1.45rem, 3.8vw, 2.4rem);
  margin-bottom: 10px;
}

.final-banner p {
  margin-bottom: 24px;
  font-size: 1.06rem;
}

#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #ff8744, #7a1a00 72%);
  display: grid;
  place-items: center;
  z-index: 1200;
  transition: opacity 450ms ease, visibility 450ms ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-wrap {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.loader-wrap p {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
}

.loader-ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cursor-dot,
.cursor-ring {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.slide-left {
  transform: translateX(-34px);
}

.slide-right {
  transform: translateX(34px);
}

.slide-left.visible,
.slide-right.visible {
  transform: translateX(0);
}

.no-text-motion .reveal,
.no-text-motion .reveal.visible,
.no-text-motion .slide-left,
.no-text-motion .slide-right,
.no-text-motion .slide-left.visible,
.no-text-motion .slide-right.visible {
  opacity: 1;
  transform: none;
  transition: none;
  animation: none;
}

.no-text-motion .section-title,
.no-text-motion .section-lead,
.no-text-motion .subsection-title,
.no-text-motion .vision-tag,
.no-text-motion .vision-list,
.no-text-motion .manifesto-columns,
.no-text-motion .why-copy,
.no-text-motion .why-highlight,
.no-text-motion .final-banner h2,
.no-text-motion .final-banner p {
  animation: none;
  transition: none;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 14% auto auto -16%;
  width: 38%;
  height: 22%;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255, 193, 7, 0.13), rgba(255, 193, 7, 0));
  transform: rotate(-10deg);
  z-index: -2;
  opacity: 0.65;
}

.panel:nth-of-type(even)::before {
  inset: auto -14% 18% auto;
  transform: rotate(-13deg);
}

.post-badge {
  position: relative;
  overflow: hidden;
}

.post-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.34) 50%, transparent 80%);
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
}

.post-badge:hover::after {
  opacity: 1;
  animation: shineSweep 0.8s ease;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.45) 50%, transparent 74%);
  transform: translateX(-130%);
}

.btn:hover::after {
  animation: shineSweep 0.85s ease;
}

.card,
.promise-card,
.icon-block,
.why-highlight,
.manifesto-columns,
.vision-list li {
  position: relative;
  overflow: hidden;
}

.card,
.icon-block,
.vision-list li,
.manifesto-columns,
.why-highlight {
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.card::after,
.icon-block::after,
.why-highlight::after,
.manifesto-columns::after,
.vision-list li::after {
  content: "";
  position: absolute;
  inset: -140% auto auto -40%;
  width: 80%;
  height: 260%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  transform: rotate(22deg);
  opacity: 0;
  transition: opacity 260ms ease;
}

.card:hover::after,
.icon-block:hover::after,
.why-highlight:hover::after,
.manifesto-columns:hover::after,
.vision-list li:hover::after {
  opacity: 1;
  animation: glintMove 0.9s ease;
}

.vision-list li:hover {
  transform: translateX(8px);
  border-left-color: #ffe38b;
  box-shadow: 0 14px 30px rgba(20, 4, 3, 0.3);
}

.manifesto-columns:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(20, 4, 3, 0.34);
}

.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

@keyframes panelSweep {
  0%,
  100% {
    transform: translateX(0) rotate(-10deg);
    opacity: 0.5;
  }
  50% {
    transform: translateX(18px) rotate(-8deg);
    opacity: 0.85;
  }
}

@keyframes shineSweep {
  to {
    transform: translateX(130%);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.35);
  }
  50% {
    box-shadow: 0 14px 36px rgba(255, 193, 7, 0.58);
  }
}

@keyframes glintMove {
  from {
    transform: translateX(-26%) rotate(22deg);
  }
  to {
    transform: translateX(42%) rotate(22deg);
  }
}

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .hero-content,
  .why-grid,
  .three-col,
  .two-col,
  .vision-grid,
  .manifesto-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-image-wrap {
    max-width: 390px;
    padding-top: 20px;
  }

  .gold-bar {
    top: 6px;
    left: 8px;
    width: calc(100% - 16px);
    height: 12px;
    transform: none;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(255, 193, 7, 0.24);
    z-index: 1;
  }

  .hero-image {
    position: relative;
    z-index: 2;
  }

  .patch {
    opacity: 0.16;
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    right: 4%;
    background: rgba(20, 4, 3, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 210px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 76px 0;
  }

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

  .hero-title {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .patch {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
