/* Golden Rush Play – unique layout. goldenrushplay.com */

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

:root {
  --grush-font-heading: 'Bricolage Grotesque', sans-serif;
  --grush-font-body: 'Figtree', sans-serif;
  --grush-white: #fff;
  --grush-gold: #d4a84b;
  --grush-gold-bright: #e8c25a;
  --grush-emerald: #2dd4a8;
  --grush-dark: #0a0c0e;
  --grush-card: #0f1216;
  --grush-bg: #060809;
  --grush-text: #e6e8ec;
  --grush-muted: #9ca3af;
  --grush-border: rgba(212, 168, 75, 0.25);
  --grush-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --grush-trans: all 0.35s var(--grush-ease);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--grush-font-body);
  line-height: 1.6;
  color: var(--grush-text);
  background: #060809;
  overflow-x: hidden;
  position: relative;
}

/* Always-visible animated background (CSS-only, no WebGL needed) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(125deg, #060809 0%, #0c0a0e 20%, #060d0a 40%, #0a080c 60%, #08090c 80%, #060809 100%);
  background-size: 400% 400%;
  animation: grushBgFlow 15s ease-in-out infinite;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 30% 20%, rgba(212, 168, 75, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse 60% 80% at 70% 80%, rgba(45, 212, 168, 0.08) 0%, transparent 50%);
  animation: grushBgPulse 8s ease-in-out infinite;
}
@keyframes grushBgFlow {
  0%, 100% { background-position: 0% 50%; }
  33% { background-position: 100% 25%; }
  66% { background-position: 50% 100%; }
}
@keyframes grushBgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.grush-canvas-layer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  min-width: 100vw; min-height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}
body.grush-bg-no-webgl .grush-canvas-layer { display: none !important; }

main, .grush-site-foot { position: relative; z-index: 1; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--grush-trans); }
ul { list-style: none; }

/* ========== MASTHEAD ========== */
.grush-masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 8, 9, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grush-border);
}

.grush-masthead-strip {
  background: rgba(212, 168, 75, 0.08);
  border-bottom: 1px solid rgba(212, 168, 75, 0.15);
}

.grush-masthead-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.grush-masthead-tagline {
  font-size: 0.8rem;
  color: var(--grush-muted);
  letter-spacing: 0.05em;
}

.grush-masthead-email {
  font-size: 0.8rem;
  color: var(--grush-gold);
}
.grush-masthead-email:hover { color: var(--grush-gold-bright); }

.grush-masthead-main { padding: 0.75rem 0; }

.grush-masthead-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.grush-masthead-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--grush-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--grush-gold);
}
.grush-masthead-logo:hover { color: var(--grush-gold-bright); }

.grush-masthead-logo-img { width: 44px; height: 44px; flex-shrink: 0; }

.grush-masthead-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.grush-masthead-burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--grush-gold);
  border-radius: 1px;
  transition: var(--grush-trans);
}

.grush-masthead-burger-x {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--grush-gold);
}

.grush-masthead-burger[aria-expanded="true"] .grush-masthead-burger-bar {
  opacity: 0;
  visibility: hidden;
}
.grush-masthead-burger[aria-expanded="true"] .grush-masthead-burger-x {
  display: flex;
  z-index: 1111;
}

.grush-masthead-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.grush-masthead-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grush-text);
  position: relative;
}
.grush-masthead-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grush-gold);
  transition: var(--grush-trans);
}
.grush-masthead-link:hover::after,
.grush-masthead-link-active::after { width: 100%; }
.grush-masthead-link:hover,
.grush-masthead-link-active { color: var(--grush-gold); }

.grush-masthead-cta {
  padding: 0.5rem 1.25rem;
  background: var(--grush-gold);
  color: var(--grush-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
          display: flex;
        align-items: center;
        justify-content: center;
}
.grush-masthead-cta:hover {
  background: var(--grush-gold-bright);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .grush-masthead-burger { display: flex; position: relative; }
  .grush-masthead-nav {
    position: fixed;
    display: none;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(6, 8, 9, 0.98);
    border-left: 1px solid var(--grush-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 1.5rem;
    gap: 0;
    transition: right 0.4s var(--grush-ease);
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  }
  .grush-masthead-nav.grush-menu-open { right: 0;display: flex; }
  .grush-masthead-nav .grush-masthead-link,
  .grush-masthead-nav .grush-masthead-cta {
    padding: 0.75rem 0;
    width: 100%;
  }
}

/* ========== SPLASH HERO ========== */
.grush-splash {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  align-items: center;
  gap: 2rem;
  padding: 3rem 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .grush-splash {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .grush-splash-visual { order: -1; }
}

.grush-splash-inner { padding: 0 1rem; }

.grush-splash-title {
  font-family: var(--grush-font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--grush-white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.grush-splash-lead {
  font-size: 1.1rem;
  color: var(--grush-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.grush-splash-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--grush-gold);
  color: var(--grush-dark);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 8px;
  transition: var(--grush-trans);
}
.grush-splash-btn:hover {
  background: var(--grush-gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212, 168, 75, 0.35);
}

.grush-splash-img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border: 1px solid var(--grush-border);
  background: var(--grush-card);
}
.grush-splash-img[src=""],
.grush-splash-img:not([src]) { min-height: 280px; }
@media (max-width: 991px) {
  .grush-splash-img { margin: 0 auto; }
}

/* ========== RIBBON ========== */
.grush-ribbon {
  background: linear-gradient(90deg, rgba(212,168,75,0.12) 0%, rgba(45,212,168,0.08) 100%);
  border-top: 1px solid var(--grush-border);
  border-bottom: 1px solid var(--grush-border);
}

.grush-ribbon-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.grush-ribbon-text {
  font-size: 1.05rem;
  color: var(--grush-text);
  margin: 0;
}

.grush-ribbon-link {
  font-weight: 600;
  color: var(--grush-gold);
  font-size: 0.95rem;
}
.grush-ribbon-link:hover { color: var(--grush-gold-bright); }

/* ========== BENTO ========== */
.grush-bento {
  padding: 4rem 0;
}

.grush-bento-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grush-bento-title {
  font-family: var(--grush-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--grush-white);
  text-align: center;
  margin-bottom: 2rem;
}

.grush-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  grid-template-areas:
    "a b"
    "c d";
}

.grush-bento-cell-a { grid-area: a; }
.grush-bento-cell-b { grid-area: b; }
.grush-bento-cell-c { grid-area: c; }
.grush-bento-cell-d { grid-area: d; }

@media (max-width: 768px) {
  .grush-bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d";
  }
}

.grush-bento-cell {
  background: var(--grush-card);
  border: 1px solid var(--grush-border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: var(--grush-trans);
}
.grush-bento-cell:hover {
  border-color: var(--grush-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 168, 75, 0.1);
}

.grush-bento-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.grush-bento-heading {
  font-family: var(--grush-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--grush-gold);
  margin-bottom: 0.5rem;
}
.grush-bento-desc { font-size: 0.95rem; color: var(--grush-muted); line-height: 1.55; }

/* ========== TIMELINE ========== */
.grush-timeline {
  padding: 4rem 0;
  background: rgba(15, 18, 22, 0.5);
}

.grush-timeline-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grush-timeline-title {
  font-family: var(--grush-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--grush-white);
  text-align: center;
  margin-bottom: 2.5rem;
}

.grush-timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .grush-timeline-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grush-timeline-track { grid-template-columns: 1fr; }
}

.grush-timeline-step {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--grush-card);
  border: 1px solid var(--grush-border);
  border-radius: 12px;
  transition: var(--grush-trans);
}
.grush-timeline-step:hover {
  border-color: var(--grush-emerald);
  box-shadow: 0 8px 24px rgba(45, 212, 168, 0.08);
}

.grush-timeline-num {
  display: block;
  font-family: var(--grush-font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--grush-gold);
  line-height: 1.2;
}
.grush-timeline-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grush-text);
  margin: 0.35rem 0 0.2rem;
}
.grush-timeline-text { font-size: 0.85rem; color: var(--grush-muted); }

/* ========== SPLIT ========== */
.grush-split {
  padding: 3rem 0;
}

.grush-split-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grush-split-rev .grush-split-inner {
  direction: rtl;
}
.grush-split-rev .grush-split-inner > * { direction: ltr; }

@media (max-width: 991px) {
  .grush-split-inner,
  .grush-split-rev .grush-split-inner {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.grush-split-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  border: 1px solid var(--grush-border);
}

.grush-split-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grush-gold);
  margin-bottom: 0.5rem;
}
.grush-split-title {
  font-family: var(--grush-font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--grush-white);
  margin-bottom: 0.75rem;
}
.grush-split-desc { font-size: 1rem; color: var(--grush-muted); line-height: 1.65; }

/* ========== SHOWCASE ========== */
.grush-showcase {
  padding: 4rem 0;
  background: rgba(15, 18, 22, 0.5);
}

.grush-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grush-showcase-title {
  font-family: var(--grush-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--grush-white);
  text-align: center;
  margin-bottom: 2rem;
}

.grush-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .grush-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grush-showcase-grid { grid-template-columns: 1fr; }
}

.grush-showcase-card {
  background: var(--grush-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grush-border);
  transition: var(--grush-trans);
}
.grush-showcase-card:hover {
  border-color: var(--grush-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.grush-showcase-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--grush-card);
}
.grush-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--grush-ease);
}
.grush-showcase-card:hover .grush-showcase-img { transform: scale(1.06); }

.grush-showcase-heading {
  font-family: var(--grush-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grush-text);
  padding: 0.75rem 1rem 0.25rem;
}
.grush-showcase-meta {
  font-size: 0.8rem;
  color: var(--grush-gold);
  padding: 0 1rem 1rem;
}

.grush-showcase-more {
  display: block;
  text-align: center;
  font-weight: 600;
  color: var(--grush-gold);
}
.grush-showcase-more:hover { color: var(--grush-gold-bright); }

/* ========== TRIPLE CARDS ========== */
.grush-cards-triple {
  padding: 4rem 0;
}

.grush-cards-triple-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .grush-cards-triple-inner { grid-template-columns: 1fr; }
}

.grush-triple-card {
  background: var(--grush-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grush-border);
  transition: var(--grush-trans);
}
.grush-triple-card:hover {
  border-color: var(--grush-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(212, 168, 75, 0.1);
}

.grush-triple-img-wrap {
  aspect-ratio: 4/2.8;
  overflow: hidden;
  background: var(--grush-card);
}
.grush-triple-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--grush-ease);
}
.grush-triple-card:hover .grush-triple-img { transform: scale(1.05); }

.grush-triple-title {
  font-family: var(--grush-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--grush-gold);
  padding: 1rem 1.25rem 0.35rem;
}
.grush-triple-desc {
  font-size: 0.95rem;
  color: var(--grush-muted);
  padding: 0 1.25rem 1.25rem;
  line-height: 1.5;
}

/* ========== QUOTE BLOCK ========== */
.grush-quote-block {
  padding: 3.5rem 24px;
  background: linear-gradient(180deg, rgba(212,168,75,0.08) 0%, transparent 100%);
  border-top: 1px solid var(--grush-border);
}

.grush-quote-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.grush-quote-text {
  font-family: var(--grush-font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--grush-white);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.grush-quote-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--grush-gold);
  color: var(--grush-dark);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 8px;
  transition: var(--grush-trans);
}
.grush-quote-btn:hover {
  background: var(--grush-gold-bright);
  transform: translateY(-2px);
}

/* ========== ACCORDION FAQ ========== */
.grush-accordion {
  padding: 4rem 0;
  background: rgba(15, 18, 22, 0.5);
}

.grush-accordion-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.grush-accordion-title {
  font-family: var(--grush-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--grush-white);
  text-align: center;
  margin-bottom: 0.35rem;
}
.grush-accordion-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grush-gold);
  margin-bottom: 1.75rem;
}

.grush-accordion-item {
  border: 1px solid var(--grush-border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--grush-trans);
}
.grush-accordion-item:hover { border-color: rgba(212, 168, 75, 0.4); }

.grush-accordion-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--grush-text);
  cursor: pointer;
  list-style: none;
  display: block;
}
.grush-accordion-question::-webkit-details-marker { display: none; }

.grush-accordion-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: var(--grush-muted);
  line-height: 1.6;
}

/* ========== CONTACT BLOCK ========== */
.grush-contact-block {
  padding: 4rem 0;
}

.grush-contact-block-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

.grush-contact-block-title {
  font-family: var(--grush-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--grush-white);
  text-align: center;
  margin-bottom: 0.5rem;
}
.grush-contact-block-sub {
  text-align: center;
  color: var(--grush-muted);
  margin-bottom: 1.5rem;
}

.grush-contact-block-form { margin-bottom: 1rem; }
.grush-contact-block-row { margin-bottom: 1.25rem; }
.grush-contact-block-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grush-text);
  margin-bottom: 0.4rem;
}
.grush-contact-block-input,
.grush-contact-block-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--grush-card);
  border: 1px solid var(--grush-border);
  border-radius: 6px;
  color: var(--grush-text);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--grush-trans);
}
.grush-contact-block-input:focus,
.grush-contact-block-textarea:focus {
  outline: none;
  border-color: var(--grush-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.15);
}
.grush-contact-block-textarea { resize: vertical; min-height: 100px; }

.grush-contact-block-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--grush-gold);
  color: var(--grush-dark);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--grush-trans);
}
.grush-contact-block-submit:hover {
  background: var(--grush-gold-bright);
  box-shadow: 0 6px 24px rgba(212, 168, 75, 0.35);
}

.grush-contact-block-legal {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grush-muted);
}
.grush-contact-block-legal a { color: var(--grush-gold); }
.grush-contact-block-legal a:hover { color: var(--grush-gold-bright); }

/* ========== SITE FOOTER ========== */
.grush-site-foot {
  border-top: 1px solid var(--grush-border);
  background: var(--grush-dark);
}

.grush-foot-top { padding: 3rem 0 2rem; }

.grush-foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 991px) {
  .grush-foot-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grush-foot-inner { grid-template-columns: 1fr; }
}

.grush-foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--grush-font-heading);
  font-weight: 700;
  color: var(--grush-gold);
  margin-bottom: 0.5rem;
}
.grush-foot-logo:hover { color: var(--grush-gold-bright); }
.grush-foot-logo img { width: 40px; height: 40px; }

.grush-foot-tagline {
  font-size: 0.9rem;
  color: var(--grush-muted);
  line-height: 1.5;
}

.grush-foot-heading {
  font-family: var(--grush-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grush-white);
  margin-bottom: 0.75rem;
}

.grush-foot-links li { margin-bottom: 0.4rem; }
.grush-foot-links a {
  font-size: 0.9rem;
  color: var(--grush-muted);
}
.grush-foot-links a:hover { color: var(--grush-gold); }

.grush-foot-email { font-size: 0.9rem; }
.grush-foot-email a { color: var(--grush-gold); }
.grush-foot-email a:hover { color: var(--grush-gold-bright); }

.grush-foot-bottom {
  padding: 1rem 24px;
  border-top: 1px solid var(--grush-border);
}

.grush-foot-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.grush-foot-copy {
  font-size: 0.9rem;
  color: var(--grush-muted);
}

/* ========== POPUP ========== */
.grush-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.grush-popup-overlay[hidden] { display: none; }

.grush-popup-box {
  background: var(--grush-card);
  border: 1px solid var(--grush-border);
  border-radius: 12px;
  padding: 2rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
}
.grush-popup-title {
  font-family: var(--grush-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--grush-gold);
  margin-bottom: 0.5rem;
}
.grush-popup-text { font-size: 0.98rem; color: var(--grush-muted); margin-bottom: 1.25rem; }
.grush-popup-close {
  padding: 0.65rem 1.5rem;
  background: var(--grush-gold);
  color: var(--grush-dark);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--grush-trans);
}
.grush-popup-close:hover { background: var(--grush-gold-bright); }

/* ========== INNER PAGES (privacy, terms, about, etc.) ========== */
.grush-page-wrap { max-width: 720px; margin: 0 auto; padding: 3rem 24px 4rem; }
.grush-page-title { font-family: var(--grush-font-heading); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: var(--grush-white); margin-bottom: 1.5rem; }
.grush-page-text { color: var(--grush-muted); line-height: 1.7; margin-bottom: 1rem; }
.grush-page-text a { color: var(--grush-gold); }
.grush-page-text a:hover { color: var(--grush-gold-bright); }
.grush-page-h2 { font-family: var(--grush-font-heading); font-size: 1.25rem; color: var(--grush-gold); margin-top: 2rem; margin-bottom: 0.5rem; }

/* ========== SCROLL ANIMATE ========== */
.grush-animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--grush-ease), transform 0.6s var(--grush-ease);
}
.grush-animate-in.grush-visible {
  opacity: 1;
  transform: translateY(0);
}
