/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */
:root {
  --brown-dark: #3D1F0A;
  --brown: #582F11;
  --brown-light: #7A4B25;
  --beige: #FCEDCB;
  --beige-light: #FFF8EC;
  --beige-dark: #F0D9A8;
  --cream: #FFFDF7;
  --green-accent: #5A7247;
  --green-light: #8BA676;
  --gold: #C9953C;
  --white: #FFFFFF;
  --text-dark: #2A1A08;
  --text-body: #4A3520;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--brown-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity .8s ease, visibility .8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 900;
  color: var(--beige);
  letter-spacing: .05em;
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(252,237,203,.2);
  border-radius: 3px; overflow: hidden;
}
.loader-bar::after {
  content: ''; display: block;
  width: 40%; height: 100%;
  background: var(--beige);
  border-radius: 3px;
  animation: loadBar 1.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.7} 50%{opacity:1} }
@keyframes loadBar { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  background: #3D1F0A;
}
.navbar.scrolled {
  background: #3D1F0A;
  backdrop-filter: blur(20px);
  padding: .8rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
}
.nav-brand {
  display: flex; align-items: center; gap: .8rem;
}
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 900;
  color: var(--beige);
  letter-spacing: .04em;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: var(--beige);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  transition: color .3s ease;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; z-index: 1001;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 28px; height: 2px;
  background: var(--beige); border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(61,31,10,.6) 0%,
    rgba(61,31,10,.3) 40%,
    rgba(61,31,10,.7) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--beige);
  max-width: 900px; padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  padding: .5rem 1.5rem;
  border: 1px solid rgba(252,237,203,.35);
  border-radius: 50px;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(6px);
  background: rgba(252,237,203,.08);
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp .8s ease forwards .5s;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(40px);
  animation: fadeInUp 1s ease forwards .7s;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: .9;
  opacity: 0; transform: translateY(40px);
  animation: fadeInUp 1s ease forwards .9s;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all .3s ease;
  opacity: 0; transform: translateY(40px);
  animation: fadeInUp 1s ease forwards 1.1s;
}
.hero-cta:hover {
  background: var(--beige);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
}
.hero-cta svg { width: 18px; height: 18px; transition: transform .3s ease; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  color: var(--beige); opacity: .6;
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--beige), transparent);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
.section { padding: 8rem 2rem; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--brown-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 620px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94),
              transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .6s; }

/* ═══════════════════════════════════════════
   PHILOSOPHY / ABOUT SECTION
═══════════════════════════════════════════ */
.philosophy {
  background: var(--beige-light);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophy-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.philosophy-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.philosophy-img-wrap:hover img { transform: scale(1.05); }
.philosophy-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(88,47,17,.1);
  border-radius: 20px;
  pointer-events: none;
}
.philosophy-accent {
  position: absolute;
  bottom: -15px; right: -15px;
  width: 150px; height: 150px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .15;
  z-index: -1;
}
.philosophy-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
.stat-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--beige-dark);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(88,47,17,.08);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .8rem;
  color: var(--text-body);
  opacity: .75;
}

/* ═══════════════════════════════════════════
   MARQUEE BANNER
═══════════════════════════════════════════ */
.marquee-section {
  background: var(--brown-dark);
  padding: 1.5rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--beige);
  white-space: nowrap;
  font-weight: 700;
}
.marquee-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   VALUES SECTION
═══════════════════════════════════════════ */
.values {
  background: var(--cream);
}
.values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.value-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--beige-dark);
  text-align: center;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
  transform: scaleX(0);
  transition: transform .4s ease;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(88,47,17,.1);
}
.value-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: .8rem;
}
.value-text {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-body);
  opacity: .8;
}

/* ═══════════════════════════════════════════
   VIDEO SHOWCASE
═══════════════════════════════════════════ */
.video-showcase {
  background: var(--brown-dark);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.video-showcase::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,149,60,.15), transparent);
  border-radius: 50%;
}
.video-showcase .section-label { color: var(--gold); }
.video-showcase .section-title { color: var(--beige); }
.video-showcase .section-text { color: rgba(252,237,203,.7); }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #000;
}
.video-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.video-card:hover video { transform: scale(1.05); }
.video-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,31,10,.6), transparent);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1.5rem;
  pointer-events: none;
}
.video-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--beige);
  font-weight: 700;
}
.play-btn {
  width: 50px; height: 50px;
  background: rgba(252,237,203,.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
  transition: all .3s ease;
  border: 1px solid rgba(252,237,203,.3);
}
.play-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
}
.play-btn svg { fill: var(--beige); width: 18px; height: 18px; margin-left: 2px; }

/* ═══════════════════════════════════════════
   GALLERY / MOSAIC SECTION
═══════════════════════════════════════════ */
.gallery {
  background: var(--beige-light);
}
.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,31,10,.3), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) {
  grid-column: span 2; grid-row: span 2;
  min-height: 450px;
}
.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  min-height: 215px;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
  min-height: 215px;
}
.gallery-item:nth-child(5) {
  grid-column: span 2;
  min-height: 300px;
}

/* ═══════════════════════════════════════════
   CTA / CONTACT SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,149,60,.12), transparent 70%);
  border-radius: 50%;
}
.cta-content {
  position: relative; z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section .section-title {
  color: var(--beige);
  margin-bottom: 1.5rem;
}
.cta-text {
  font-size: 1.1rem;
  color: rgba(252,237,203,.7);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.cta-buttons {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  border-radius: 50px;
  transition: all .3s ease;
}
.btn-primary:hover {
  background: var(--beige);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 2.5rem;
  border: 1.5px solid rgba(252,237,203,.35);
  color: var(--beige);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .06em;
  border-radius: 50px;
  transition: all .3s ease;
}
.btn-secondary:hover {
  background: rgba(252,237,203,.1);
  border-color: var(--beige);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #1A0D04;
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(252,237,203,.08);
}
.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--beige);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: .9rem;
  color: rgba(252,237,203,.45);
  line-height: 1.7;
  max-width: 300px;
}
.footer-heading {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: .7rem;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(252,237,203,.45);
  transition: color .3s ease;
}
.footer-links a:hover { color: var(--beige); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: .8rem;
  color: rgba(252,237,203,.3);
}
.footer-socials {
  display: flex; gap: 1rem;
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(252,237,203,.12);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.footer-socials svg {
  width: 16px; height: 16px;
  fill: rgba(252,237,203,.5);
}
.footer-socials a:hover svg { fill: var(--brown-dark); }

/* ═══════════════════════════════════════════
   PARALLAX IMAGE BREAK
═══════════════════════════════════════════ */
.parallax-break {
  height: 55vh;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.parallax-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.parallax-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,31,10,.35) 0%, rgba(61,31,10,.6) 100%);
  display: flex; align-items: center; justify-content: center;
}
.parallax-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--beige);
  font-weight: 700;
  font-style: italic;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  line-height: 1.35;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all .3s ease;
  cursor: pointer;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  width: 50px; height: 50px;
  background: rgba(255,255,255,.1);
  border: none; border-radius: 50%;
  color: var(--beige);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ═══════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(61,31,10,.98);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: all .4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--beige);
  font-weight: 700;
  transition: color .3s ease;
}
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-img-wrap { max-height: 450px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1) { min-height: 300px; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: .7rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .section { padding: 5rem 1.5rem; }
  .hero { min-height: 600px; }
  .values-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; min-height: 250px; }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ═══════════════════════════════════════════
   CURSOR GLOW (desktop only)
═══════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,60,.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform .1s linear;
}
@media (max-width: 768px) { .cursor-glow { display: none; } }