/* ----------------------------------------------------
   MOMENTO ANONIMA - Design System & Stylesheet (REVISED)
   Aesthetic: Light luxury, cinematic, warm golden-hour tones, minimalist.
   ---------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@200;300;400;500;600&display=swap');

/* Variables */
:root {
  --bg-primary: #060607;
  /* Pure obsidian black */
  --bg-secondary: #0d0d0f;
  /* Deep charcoal */
  --bg-tertiary: #141417;
  /* Subtle dark grey */

  --text-primary: #f3efe9;
  /* Warm ivory / silk */
  --text-secondary: #c5c0b6;
  /* Muted soft ivory */
  --text-muted: #78736a;
  /* Warm graphite */

  --accent-gold: #c5a880;
  /* Champagne gold */
  --accent-gold-hover: #e5c9a1;
  --accent-gold-muted: rgba(197, 168, 128, 0.4);
  --accent-gold-glow: rgba(197, 168, 128, 0.08);
  --border-color: rgba(197, 168, 128, 0.15);

  /* Dark shifted gate variables - aligned with dark theme */
  --bg-dark-primary: #060607;
  --bg-dark-secondary: #0d0d0f;
  --text-dark-primary: #f3efe9;
  --text-dark-secondary: #c5c0b6;
  --text-dark-muted: #78736a;

  --glass-bg: rgba(13, 13, 15, 0.8);
  --glass-border: rgba(197, 168, 128, 0.12);
  --glass-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);

  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;

  --site-width: 1200px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Sub-pixel Vintage Film Grain Overlay */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(28, 27, 26, 0.02) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.85;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: capitalize;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

p strong {
  font-weight: 500;
  color: var(--text-primary);
}

.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
}

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

.text-glow {
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

/* Layout Utilities */
.container {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.grid {
  display: grid;
  gap: 3rem;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.center {
  text-align: center;
}

.section {
  padding: 8rem 0;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.section-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 600px;
  margin: -1rem auto 4rem auto;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  background-color: #d3b075;
  color: var(--bg-dark-primary);
  border: 1px solid #d3b075;
  box-shadow: 0 8px 30px rgba(211, 176, 117, 0.2);
}

.btn-primary:hover {
  background-color: #e2c085;
  border-color: #e2c085;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(197, 168, 128, 0.5);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: var(--accent-gold-glow);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--text-secondary);
  background: transparent;
  border: none;
  padding: 1.1rem 0;
}

.btn-text:hover {
  color: var(--accent-gold);
}

.btn-text .arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: var(--transition-fast);
}

.btn-text:hover .arrow {
  transform: translateY(4px);
}

.btn-wide {
  width: 100%;
  text-align: center;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--glass-shadow);
  border-radius: 4px;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-fast);
  padding: 1.8rem 0;
  border-bottom: 1px solid transparent;
  background-color: rgba(6, 6, 7, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.scrolled {
  padding: 1.1rem 0;
  background-color: rgba(6, 6, 7, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.logo-space {
  letter-spacing: 0.15em;
}

.logo-divider {
  margin: 0 0.5rem;
  opacity: 0.3;
  font-weight: 100;
}

.logo-gold {
  color: var(--accent-gold);
}

.logo-inline {
  display: inline-flex;
  font-size: inherit;
  vertical-align: middle;
}

.logo-inline .logo-space {
  letter-spacing: 0.12em;
}

.logo-inline .logo-divider {
  margin: 0 0.35rem;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-cta .btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Dynamic header shifts on dark backgrounds */
.site-header.dark-header {
  background-color: rgba(18, 18, 17, 0.95) !important;
  border-bottom-color: rgba(212, 175, 55, 0.1) !important;
}

.site-header.dark-header .logo,
.site-header.dark-header .nav-link {
  color: var(--text-dark-primary) !important;
}

.site-header.dark-header .mobile-nav-toggle .bar {
  background-color: var(--text-dark-primary) !important;
}

.site-header.dark-header .btn-outline {
  color: var(--text-dark-primary) !important;
  border-color: rgba(197, 168, 128, 0.5) !important;
}

.site-header.dark-header .btn-outline:hover {
  color: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  background-color: rgba(212, 175, 55, 0.05) !important;
}

/* SECTION 1: Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.hero-section:hover .hero-bg {
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  line-height: 1.3;
  color: var(--text-primary);
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.55);
}

@media (min-width: 1024px) {
  .hero-title {
    white-space: nowrap;
  }
}



.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
  line-height: 1.6;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.65);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.6;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mouse-scroll {
  width: 18px;
  height: 30px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  position: relative;
}

.mouse-scroll::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  animation: mouse-scroll-anim 1.8s ease infinite;
}

@keyframes mouse-scroll-anim {
  0% {
    top: 6px;
    opacity: 1;
  }

  50% {
    top: 14px;
    opacity: 0.2;
  }

  100% {
    top: 6px;
    opacity: 1;
  }
}

/* SECTION 2: THE PHILOSOPHY */
.philosophy-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.philosophy-section p.lead-text {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 2rem;
}

.philosophy-section p:not(.lead-text) {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.truth-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.truth-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent-gold-muted);
  margin: 1.8rem 0;
}

.truth-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  border: 1px solid var(--border-color);
  padding: 12px;
  background: var(--bg-primary);
  box-shadow: 0 30px 60px rgba(28, 27, 26, 0.05);
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--accent-gold);
  opacity: 0.15;
  pointer-events: none;
}

.artistic-img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(12%) contrast(105%) brightness(95%);
  transition: var(--transition-smooth);
}

.image-wrapper:hover .artistic-img {
  filter: sepia(0%) contrast(100%) brightness(100%);
}

.image-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.image-caption {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1rem;
  text-align: center;
}

/* SECTION 3: THE CURATION */
.imprint-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.imprint-section p.lead-text {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 2rem;
}

.imprint-section p:not(.lead-text) {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.imprint-card {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  transition: var(--transition-smooth);
}

.imprint-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.02);
  box-shadow: var(--glass-shadow);
}

.card-num {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 2rem;
}

.card-title {
  margin-bottom: 1.2rem;
  font-weight: 300;
  color: var(--text-primary);
}

.card-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* SECTION 4: THE ANONYMITY PARADOX */
.paradox-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.paradox-section p.lead-text {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 2rem;
}

.paradox-grid {
  margin-top: 2rem;
}

.paradox-col {
  padding: 2rem;
  transition: var(--transition-smooth);
}

.paradox-col:hover {
  background: rgba(28, 27, 26, 0.02);
  border-radius: 4px;
}

.paradox-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  display: block;
  margin-bottom: 1.2rem;
  transition: var(--transition-fast);
}

.paradox-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.paradox-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* SECTION 5: THE VOICES OF THE LIBERATED (CONCEPTUAL SOCIAL PROOF) */
.voices-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 10rem 0;
}

.voices-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.quote-block {
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.quote-block::before {
  content: '“';
  font-size: 6rem;
  font-family: var(--font-serif);
  color: var(--accent-gold);
  opacity: 0.15;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-content {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-style: normal;
  display: block;
}

.quote-author span {
  color: var(--text-muted);
  font-weight: 300;
}

/* SECTION 6: GATE B - THE CASTING SANCTUARY (HIGH-CONTRAST SHIFT) */
.gate-section {
  background-color: var(--bg-dark-primary) !important;
  color: var(--text-dark-primary) !important;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gate-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.gate-section h2 {
  color: var(--text-dark-primary) !important;
}

.gate-section p {
  color: var(--text-dark-secondary) !important;
}

.gate-section p.lead-text {
  font-size: 1.6rem !important;
  line-height: 1.75 !important;
  font-weight: 400 !important;
  margin-bottom: 2rem !important;
  color: var(--accent-gold) !important;
}

.gate-section p:not(.lead-text) {
  font-size: 1.15rem !important;
  line-height: 1.85 !important;
  letter-spacing: 0.02em !important;
  color: var(--text-primary) !important;
}

.gate-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

.gate-form-wrapper {
  background: rgba(28, 27, 26, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6) !important;
  padding: 6rem 3.5rem;
}

.casting-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1rem;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.8rem 0;
  color: var(--text-dark-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: border-color var(--transition-fast), outline none;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-gold);
}

.form-label {
  position: absolute;
  left: 0;
  top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-dark-muted);
  pointer-events: none;
  text-transform: uppercase;
  transition: transform var(--transition-fast), color var(--transition-fast), font-size var(--transition-fast);
}

.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label {
  transform: translateY(-1.5rem);
  font-size: 0.72rem;
  color: var(--accent-gold);
}

.btn-form {
  margin-top: 1.5rem;
  align-self: center;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-dark-primary);
}

.btn-form::before {
  background: var(--text-dark-primary);
}

.btn-form:hover {
  color: var(--bg-dark-primary);
  border-color: var(--text-dark-primary);
}

.form-status {
  font-size: 0.85rem;
  margin-top: 1rem;
  min-height: 1.5rem;
  letter-spacing: 0.05em;
  transition: opacity var(--transition-fast);
  opacity: 0;
}

.form-status.success {
  color: var(--accent-gold);
  opacity: 1;
}

.form-status.error {
  color: #D9534F;
  opacity: 1;
}

/* FOOTER */
.site-footer {
  background-color: var(--bg-dark-primary);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.logo-footer {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.logo-footer span,
.logo-footer .logo-divider {
  color: var(--text-dark-primary);
}

.logo-footer .logo-gold {
  color: var(--accent-gold) !important;
}

.footer-desc {
  max-width: 400px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark-muted);
}

.footer-logo-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-logo-img {
  max-width: 150px;
  height: auto;
  opacity: 0.85;
  filter: brightness(0.95);
}

.footer-contact h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
}

.contact-list .label {
  display: inline-block;
  width: 90px;
  color: var(--text-dark-muted);
}

.contact-link {
  color: var(--text-dark-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.contact-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin-bottom: 0;
}

.privacy-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent-gold);
  margin-bottom: 0;
}

/* Scroll Animation Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

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

/* ----------------------------------------------------
   Responsive Adjustments
   ---------------------------------------------------- */

/* Desktop only elements */
.desktop-only {
  display: block;
}

/* Large Screens */
@media (min-width: 1440px) {
  :root {
    --site-width: 1300px;
  }
}

/* Desktop adaptive styles for medium/small viewports */
@media (min-width: 1151px) and (max-width: 1300px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    gap: 1rem;
  }

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

/* Tablet Screens (1150px and down) */
@media (max-width: 1150px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .section {
    padding: 6rem 0;
  }

  .gate-form-wrapper {
    padding: 4.5rem 2.5rem;
  }

  /* Navigation Mobile Toggle */
  .mobile-nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1050;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-cta {
    display: none;
  }

  /* Hamburger Menu Cross Transformation */
  .mobile-nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
}

/* Mid-Tablet / Mobile Landscape (768px and down) */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1.2rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-section {
    padding-top: 6rem;
  }

  .hero-title {
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    margin-bottom: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-logo-container {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Small Mobile Screens (480px and down) */
@media (max-width: 480px) {

  .container,
  .container-narrow {
    padding: 0 1.2rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .gate-form-wrapper {
    padding: 2.2rem 1.2rem;
  }

  .logo {
    font-size: 1.15rem;
  }

  .logo-divider {
    margin: 0 0.4rem;
  }
}