/* ==========================================================================
   DESERT GLASS DESIGN SYSTEM — MIND WORK POINT
   Atmosphere: Heat, solitude, ancient landscapes, surreal stillness.
   Colors: Sun-bleached cream, terracotta, dusty orange, muted teal, dark brown.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;600;700;800&display=swap');

:root {
  /* Palette */
  --bg-desert: #faf6f0;
  --bg-desert-subtle: #f4eee3;
  --bg-sand-warm: #ebdcc9;
  --terracotta: #c85a32;
  --terracotta-light: #da6f48;
  --terracotta-dark: #a94521;
  --dusty-orange: #e38e54;
  --muted-teal: #487779;
  --muted-teal-light: #649698;
  --muted-teal-dark: #2d4f51;
  --dark-brown: #241917;
  --dark-brown-mid: #3a2b28;
  --text-primary: #241917;
  --text-secondary: #5e4a44;
  --text-muted: #7c6861;
  --border-subtle: rgba(200, 90, 50, 0.16);
  --border-teal: rgba(72, 119, 121, 0.22);
  
  /* Desert Glass Materials */
  --glass-bg: rgba(254, 251, 246, 0.76);
  --glass-bg-accent: rgba(244, 238, 227, 0.85);
  --glass-bg-dark: rgba(36, 25, 23, 0.92);
  --glass-border: 1px solid rgba(200, 90, 50, 0.24);
  --glass-border-light: 1px solid rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 16px 36px -8px rgba(36, 25, 23, 0.08), 0 4px 12px rgba(200, 90, 50, 0.04);
  --glass-shadow-deep: 0 24px 48px -12px rgba(36, 25, 23, 0.14), 0 8px 24px rgba(72, 119, 121, 0.08);
  --glass-blur: blur(14px) saturate(130%);

  /* Typography */
  --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1200px;
  --radius-organic: 18px 6px 22px 8px;
  --radius-card: 16px;
  --radius-pill: 9999px;
  --transition-glass: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-heat: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease, box-shadow 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  background-color: var(--bg-desert);
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(227, 142, 84, 0.12), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(72, 119, 121, 0.1), transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(200, 90, 50, 0.08), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: var(--transition-glass);
}

a:hover {
  color: var(--terracotta-dark);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.4rem;
}

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

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

.text-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--dark-brown-mid);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

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

.container-narrow {
  max-width: 860px;
}

/* ==========================================================================
   DESERT GLASS COMPONENTS
   ========================================================================== */

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--glass-shadow);
  padding: 2rem;
  transition: var(--transition-glass);
  position: relative;
  overflow: hidden;
}

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

.glass-panel:hover {
  box-shadow: var(--glass-shadow-deep);
  border-color: rgba(200, 90, 50, 0.38);
}

.glass-panel-warm {
  background: rgba(244, 235, 222, 0.82);
  border-color: rgba(200, 90, 50, 0.28);
}

.glass-panel-teal {
  background: rgba(235, 243, 243, 0.82);
  border-color: var(--border-teal);
}

.glass-panel-dark {
  background: var(--glass-bg-dark);
  color: #faf6f0;
  border-color: rgba(227, 142, 84, 0.3);
}

.glass-panel-dark h1,
.glass-panel-dark h2,
.glass-panel-dark h3,
.glass-panel-dark h4 {
  color: #fff;
}

.glass-panel-dark p {
  color: #e5ded5;
}

/* Heat-distortion interactive buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px 16px 8px 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-heat);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--dusty-orange));
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(200, 90, 50, 0.3);
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  filter: blur(0.2px) drop-shadow(0 6px 20px rgba(200, 90, 50, 0.45));
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--dark-brown);
  border: 1px solid rgba(200, 90, 50, 0.35);
  box-shadow: 0 4px 14px rgba(36, 25, 23, 0.05);
}

.btn-secondary:hover {
  background: var(--bg-desert-subtle);
  color: var(--terracotta-dark);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--muted-teal), var(--muted-teal-dark));
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(72, 119, 121, 0.3);
}

.btn-teal:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 6px 20px rgba(72, 119, 121, 0.45));
}

/* Badge tags */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: rgba(200, 90, 50, 0.12);
  color: var(--terracotta-dark);
  border: 1px solid rgba(200, 90, 50, 0.2);
}

.tag-teal {
  background: rgba(72, 119, 121, 0.12);
  color: var(--muted-teal-dark);
  border-color: rgba(72, 119, 121, 0.25);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION (Shared Chrome)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(200, 90, 50, 0.18);
  padding: 1rem 0;
  transition: var(--transition-glass);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--dark-brown);
}

.brand-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(200, 90, 50, 0.25));
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--dark-brown);
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-brown-mid);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  margin-left: 0.5rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--dark-brown);
}

/* ==========================================================================
   SECTIONS & HERO
   ========================================================================== */

.hero {
  padding: 4.5rem 0 3.5rem;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-title {
  margin-bottom: 1.25rem;
  color: var(--dark-brown);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-brown-mid);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-organic);
  overflow: hidden;
  box-shadow: var(--glass-shadow-deep);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

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

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  max-width: 280px;
  padding: 1.25rem;
  background: rgba(254, 251, 246, 0.9);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: 12px;
  box-shadow: var(--glass-shadow);
}

.float-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-teal-dark);
}

.float-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-brown);
  margin: 0.2rem 0;
}

.float-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Section Common */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background: rgba(244, 238, 227, 0.5);
  border-top: 1px solid rgba(200, 90, 50, 0.12);
  border-bottom: 1px solid rgba(200, 90, 50, 0.12);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Cards Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

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

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

.service-card-media {
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  position: relative;
}

.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;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted-teal-dark);
  font-weight: 600;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--dark-brown);
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.service-card-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-brown);
}

/* Flagship banner */
.flagship-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  border: 1.5px solid rgba(200, 90, 50, 0.35);
  background: linear-gradient(135deg, rgba(254, 251, 246, 0.9), rgba(244, 238, 227, 0.85));
  border-radius: 20px;
}

.flagship-media {
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.flagship-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specs-list {
  list-style: none;
  margin: 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--dark-brown-mid);
}

.specs-list li::before {
  content: '■';
  font-size: 0.65rem;
  color: var(--terracotta);
  margin-top: 0.35rem;
}

/* Feature & Domain Highlights */
.domain-card {
  padding: 1.75rem;
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 14px;
  transition: var(--transition-glass);
}

.domain-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta);
}

.domain-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(200, 90, 50, 0.12);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.review-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--dark-brown-mid);
  font-style: normal;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-brown);
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.author-loc {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-teal-dark);
}

/* Case Study Blocks */
.case-story-card {
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--terracotta);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
}

.case-metric-box {
  padding: 1rem 1.25rem;
  background: rgba(200, 90, 50, 0.08);
  border-radius: 8px;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--terracotta-dark);
}

/* Blog Cards */
.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-media {
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

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

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

.post-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.post-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ==========================================================================
   FORMS & CLIENT-SIDE VALIDATION
   ========================================================================== */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-brown);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(200, 90, 50, 0.25);
  border-radius: 10px;
  outline: none;
  transition: var(--transition-glass);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.15);
}

.form-control.is-invalid {
  border-color: #d32f2f;
  background: rgba(255, 235, 238, 0.7);
}

.error-message {
  display: none;
  font-size: 0.78rem;
  color: #c62828;
  margin-top: 0.35rem;
  font-weight: 500;
}

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

.form-status {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 1.25rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(72, 119, 121, 0.15);
  color: var(--muted-teal-dark);
  border: 1px solid rgba(72, 119, 121, 0.35);
}

.form-status.error {
  display: block;
  background: rgba(211, 47, 47, 0.12);
  color: #b71c1c;
  border: 1px solid rgba(211, 47, 47, 0.3);
}

/* ==========================================================================
   COOKIE CONSENT BANNER (Desert Glass Island)
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 580px;
  margin: 0 auto;
  z-index: 9999;
  background: rgba(254, 251, 246, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(200, 90, 50, 0.35);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(36, 25, 23, 0.18);
  display: none;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

.cookie-banner-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--dark-brown);
}

.cookie-banner-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-glass);
}

.btn-cookie-accept:hover {
  background: var(--terracotta-dark);
}

.btn-cookie-reject {
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  background: transparent;
  color: var(--dark-brown-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-glass);
}

.btn-cookie-reject:hover {
  background: rgba(36, 25, 23, 0.06);
  color: var(--dark-brown);
}

.cookie-policy-link {
  font-size: 0.8rem;
  color: var(--muted-teal-dark);
  text-decoration: underline;
  margin-left: auto;
}

/* ==========================================================================
   TABLES & LEGAL CONTENT
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid rgba(200, 90, 50, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

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

.data-table th {
  background: rgba(244, 238, 227, 0.95);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-brown);
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(200, 90, 50, 0.2);
}

.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(200, 90, 50, 0.1);
  color: var(--text-secondary);
}

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

.legal-article {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-card);
  padding: 3rem;
  margin: 2rem 0;
}

.legal-article h2 {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1.45rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.4rem;
}

.legal-article h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.legal-article ul, .legal-article ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

.legal-article li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   SITE FOOTER (Shared Chrome)
   ========================================================================== */

.site-footer {
  margin-top: auto;
  background: var(--dark-brown);
  color: #e5ded5;
  padding: 4.5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--terracotta);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 142, 84, 0.6), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  color: #b5a49c;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

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

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

.footer-links a {
  color: #b5a49c;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

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

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dusty-orange);
  margin-bottom: 0.2rem;
}

.contact-val {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #8c7972;
}

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

.footer-legal-nav a {
  color: #8c7972;
}

.footer-legal-nav a:hover {
  color: #e5ded5;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .flagship-banner {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  }
  .site-nav.is-open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-legal-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .legal-article {
    padding: 1.75rem;
  }
}
