/* ==========================================================================
   MIND ORBIT POINT — DESERT GLASS DESIGN SYSTEM
   Theme: Desert Glass — Wind-shaped translucent surfaces, sun-bleached cream,
   terracotta, dusty orange, muted teal, dark earth, and architectural typography.
   ========================================================================== */

:root {
  /* Color Palette */
  --color-bg: #140F0D;
  --color-bg-alt: #1C1512;
  --color-bg-card: rgba(34, 26, 22, 0.72);
  --color-bg-card-hover: rgba(46, 35, 30, 0.85);
  --color-bg-glass: rgba(40, 30, 26, 0.6);
  --color-bg-frosted: rgba(248, 243, 234, 0.04);
  
  --color-cream: #F8F3EA;
  --color-sand: #E7DAC9;
  --color-sand-muted: #B8A695;
  --color-terracotta: #D86A46;
  --color-terracotta-glow: rgba(216, 106, 70, 0.35);
  --color-dusty-orange: #E88352;
  --color-muted-teal: #3E8D88;
  --color-teal-glow: rgba(62, 141, 136, 0.3);
  --color-dark-earth: #221A16;
  --color-border: rgba(232, 131, 82, 0.2);
  --color-border-subtle: rgba(248, 243, 234, 0.1);
  --color-border-highlight: rgba(248, 243, 234, 0.25);

  --color-text-main: #F6EFE6;
  --color-text-muted: #BCAF9F;
  --color-text-dim: #847668;

  /* Typography */
  --font-family-display: 'Syne', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "SF Mono", "Consolas", "Courier New", monospace;

  /* Geometry & Glass */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-organic-1: 24px 14px 28px 16px;
  --radius-organic-2: 18px 30px 16px 26px;
  --radius-organic-btn: 14px 20px 14px 20px;
  
  --backdrop-blur: blur(14px);
  --shadow-glass: 0 20px 50px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(248, 243, 234, 0.12);
  --shadow-glow: 0 0 35px -5px var(--color-terracotta-glow);
  --shadow-inner: inset 0 0 20px rgba(0, 0, 0, 0.4);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6.5rem;

  --container-max: 1200px;
  --container-narrow: 840px;
  --header-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-bg);
  color: var(--color-text-main);
}

body {
  font-family: var(--font-family-sans);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(216, 106, 70, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(62, 141, 136, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(232, 131, 82, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-display);
  color: var(--color-cream);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-dusty-orange);
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

a:hover {
  color: var(--color-cream);
  text-shadow: 0 0 12px var(--color-terracotta-glow);
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Layout Chrome: Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(20, 15, 13, 0.78);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-cream);
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-logo svg, .brand-logo img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-sand);
  padding: 0.4rem 0.2rem;
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-muted-teal));
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

.nav-cta {
  display: inline-flex;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-sand);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.25rem;
}

/* Glass Surfaces & Cards */
.glass-panel {
  background: var(--color-bg-card);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-organic-1);
  padding: var(--space-lg);
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 243, 234, 0.3), transparent);
}

.glass-panel:hover {
  border-color: var(--color-border-highlight);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.glass-panel--warped {
  border-radius: var(--radius-organic-2);
}

.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(216, 106, 70, 0.12);
  border: 1px solid rgba(216, 106, 70, 0.35);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-dusty-orange);
  margin-bottom: var(--space-sm);
}

.glass-badge--teal {
  background: rgba(62, 141, 136, 0.15);
  border-color: rgba(62, 141, 136, 0.4);
  color: #79D4CC;
}

/* Desert Glass Optical Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-family-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-organic-btn);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-dusty-orange) 100%);
  color: var(--color-cream);
  box-shadow: 0 8px 25px -4px var(--color-terracotta-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px -2px var(--color-terracotta-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #FFF;
}

.btn-secondary {
  background: var(--color-bg-glass);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-color: var(--color-border);
  color: var(--color-sand);
}

.btn-secondary:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-highlight);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--color-muted-teal) 0%, #2F6F6B 100%);
  color: var(--color-cream);
  box-shadow: 0 8px 25px -4px var(--color-teal-glow);
}

.btn-teal:hover {
  transform: translateY(-2px) scale(1.02);
  color: #FFF;
}

/* Sections */
.section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  position: relative;
}

.section--alt {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl) auto;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-sand-muted);
  line-height: 1.6;
}

/* Hero Variant: Asymmetric Desert Lens */
.hero-lens {
  padding-top: calc(var(--space-2xl) + 1rem);
  padding-bottom: var(--space-2xl);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.hero-title-accent {
  background: linear-gradient(120deg, var(--color-cream) 20%, var(--color-dusty-orange) 70%, var(--color-muted-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-subtle);
}

.stat-item .stat-value {
  font-family: var(--font-family-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-cream);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
}

.glass-lens-frame {
  position: relative;
  border-radius: var(--radius-organic-2);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-glass);
}

.glass-lens-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.glass-lens-frame:hover img {
  transform: scale(1.03);
}

.glass-lens-overlay {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  padding: var(--space-md);
  background: rgba(20, 15, 13, 0.85);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

/* Service Card */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-media {
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  position: relative;
  border: 1px solid var(--color-border-subtle);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.service-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card-footer {
  margin-top: auto;
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border-subtle);
}

.price-indicator {
  font-family: var(--font-family-display);
  font-size: 0.9rem;
  color: var(--color-sand);
  font-weight: 600;
}

/* Flagship Feature Box */
.flagship-box {
  border: 1px solid var(--color-terracotta);
  background: radial-gradient(circle at 90% 10%, rgba(216, 106, 70, 0.12), transparent 50%), var(--color-bg-card);
}

/* Feature List with Glass Bullets */
.feature-list {
  list-style: none;
  margin: var(--space-md) 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.feature-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-dusty-orange);
  font-size: 0.8rem;
}

/* Process Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  margin: var(--space-lg) 0;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
}

.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(216, 106, 70, 0.15);
  border: 1px solid var(--color-terracotta);
  font-family: var(--font-family-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-cream);
}

/* Testimonial / Review Cards */
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-sand);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  position: relative;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-subtle);
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.review-author-info .author-name {
  font-weight: 600;
  color: var(--color-cream);
  font-size: 0.95rem;
}

.review-author-info .author-role {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.stars-rating {
  color: #F5A623;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Blog & Article Cards */
.article-card {
  display: flex;
  flex-direction: column;
}

.article-thumb {
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  border: 1px solid var(--color-border-subtle);
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-thumb img {
  transform: scale(1.04);
}

.article-meta {
  font-size: 0.82rem;
  color: var(--color-text-dim);
  margin-bottom: var(--space-xs);
  display: flex;
  gap: 0.75rem;
}

/* Post Detail */
.post-header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.post-cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--color-border);
}

.post-prose {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-sand);
}

.post-prose h2, .post-prose h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.post-prose ul, .post-prose ol {
  margin: var(--space-md) 0 var(--space-md) 1.5rem;
  color: var(--color-text-muted);
}

.post-prose li {
  margin-bottom: 0.5rem;
}

.post-prose strong {
  color: var(--color-cream);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-family-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-sand);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(20, 15, 13, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-cream);
  font-family: var(--font-family-sans);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-dusty-orange);
  box-shadow: 0 0 15px -2px var(--color-terracotta-glow);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23E88352' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-feedback {
  margin-top: var(--space-md);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-feedback--success {
  background: rgba(62, 141, 136, 0.2);
  border: 1px solid var(--color-muted-teal);
  color: #8CE2DB;
  display: block;
}

.form-feedback--error {
  background: rgba(216, 106, 70, 0.2);
  border: 1px solid var(--color-terracotta);
  color: #FFAE98;
  display: block;
}

.field-error {
  font-size: 0.8rem;
  color: #FFAE98;
  margin-top: 0.35rem;
  display: none;
}

.field-error.visible {
  display: block;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 580px;
  z-index: 999;
  background: rgba(26, 19, 16, 0.92);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  display: none;
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-text {
  font-size: 0.88rem;
  color: var(--color-sand);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.cookie-btn-reject {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legal Tables & Structured Blocks */
.legal-table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.legal-table th {
  background: rgba(46, 35, 30, 0.8);
  color: var(--color-cream);
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-family-display);
}

.legal-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-border-subtle);
  color: var(--color-sand);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

/* Site Footer */
.site-footer {
  background: #0E0A09;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
  margin-top: auto;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-heading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

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

.address-block, .phone-block, .email-block {
  font-size: 0.88rem;
  color: var(--color-sand-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(248, 243, 234, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--color-text-dim);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(20, 15, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-lg) var(--space-md);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    text-align: center;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .glass-panel {
    padding: var(--space-md);
  }
}
