/* ==========================================================================
   Desert Glass Design System - Synap Connect Core
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-sand: #F7F3EB;
  --bg-cream: #FAF7F2;
  --bg-card: rgba(255, 253, 249, 0.75);
  --bg-glass: rgba(255, 250, 242, 0.65);
  --bg-glass-strong: rgba(255, 252, 247, 0.88);
  --bg-glass-tint: rgba(224, 122, 95, 0.08);
  --bg-glass-teal: rgba(61, 123, 128, 0.08);
  
  --text-main: #231B15;
  --text-muted: #615246;
  --text-light: #8C7C70;
  --text-invert: #FAF7F2;

  --accent-terracotta: #C85A32;
  --accent-terracotta-dark: #A34320;
  --accent-dusty-orange: #E07A5F;
  --accent-muted-teal: #3D7B80;
  --accent-teal-dark: #265457;
  --accent-amber: #DDA15E;

  --border-glass: rgba(197, 160, 133, 0.35);
  --border-glass-strong: rgba(200, 90, 50, 0.4);
  --border-glass-teal: rgba(61, 123, 128, 0.3);

  --shadow-sm: 0 4px 16px rgba(35, 27, 21, 0.04);
  --shadow-md: 0 12px 36px rgba(35, 27, 21, 0.08);
  --shadow-lg: 0 24px 50px rgba(35, 27, 21, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(80, 55, 40, 0.08);

  /* Typography */
  --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Space Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 840px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-warped: 28px 12px 28px 16px;
  --radius-warped-alt: 16px 28px 12px 28px;

  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-heat: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-body);
  line-height: 1.65;
  font-weight: 400;
  background: 
    radial-gradient(circle at 10% 20%, rgba(224, 122, 95, 0.12), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(61, 123, 128, 0.1), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(221, 161, 94, 0.08), transparent 60%),
    var(--bg-sand);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--accent-terracotta);
  text-decoration: none;
  transition: color var(--trans-fast);
}

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

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

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
}

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

p.lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--text-main);
}

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

/* 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: var(--container-narrow);
}

/* Desert Glass Cards & Surfaces */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-warped);
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

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

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

.glass-panel-teal {
  background: var(--bg-glass-teal);
  border-color: var(--border-glass-teal);
}

/* Buttons with Desert Heat Distortion Effect */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 30px 10px 30px 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all var(--trans-smooth);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-terracotta) 0%, var(--accent-dusty-orange) 100%);
  color: var(--text-invert);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-terracotta-dark) 0%, var(--accent-terracotta) 100%);
  color: var(--text-invert);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(200, 90, 50, 0.28);
  border-radius: 12px 30px 12px 30px;
}

.btn-secondary {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-main);
  border: 1px solid var(--border-glass-strong);
}

.btn-secondary:hover {
  background: var(--bg-glass-strong);
  color: var(--accent-terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-terracotta);
}

.btn-teal {
  background: linear-gradient(135deg, var(--accent-muted-teal) 0%, var(--accent-teal-dark) 100%);
  color: #fff;
}

.btn-teal:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(61, 123, 128, 0.3);
}

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

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--trans-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

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

.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-terracotta);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--trans-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link[aria-current="page"] {
  color: var(--accent-terracotta);
}

.nav-link[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-terracotta);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-lg {
  padding: 7rem 0;
}

.section-alt {
  background: rgba(240, 233, 221, 0.45);
}

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

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

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

/* Hero Section */
.hero-desert {
  padding: 5rem 0 4rem;
  position: relative;
}

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

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg-glass-tint);
  border: 1px solid var(--border-glass-strong);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.12;
}

.hero-title span.highlight {
  color: var(--accent-terracotta);
  position: relative;
  display: inline-block;
}

.hero-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.hero-meta-strip {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.hero-meta-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 36px 16px 40px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-badge-float {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-warped);
  border: 1px solid var(--border-glass-strong);
  box-shadow: var(--shadow-md);
  max-width: 260px;
}

.hero-badge-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin-bottom: 0.25rem;
}

.hero-badge-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Flagship Feature Box */
.flagship-box {
  padding: 3rem;
  margin-bottom: 3.5rem;
  border: 1.5px solid var(--border-glass-strong);
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.9) 0%, rgba(250, 242, 230, 0.75) 100%);
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-terracotta);
}

.service-card-header {
  margin-bottom: 1.25rem;
}

.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  background: var(--bg-glass-tint);
  color: var(--accent-terracotta);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-glass);
}

.service-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-glass);
}

.service-card-title {
  margin-bottom: 0.5rem;
}

.service-card-summary {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 1rem;
  background: rgba(247, 243, 235, 0.6);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
}

.service-meta-row {
  display: flex;
  justify-content: space-between;
}

.service-meta-label {
  color: var(--text-light);
}

.service-meta-val {
  font-weight: 600;
  color: var(--text-main);
}

/* Detail page specs */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.spec-item {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.spec-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.spec-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

/* Modules / Curriculum list */
.module-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.module-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.module-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--accent-terracotta);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform var(--trans-smooth);
}

.pricing-card.featured {
  border: 2px solid var(--accent-terracotta);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.95) 0%, rgba(248, 240, 228, 0.85) 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-terracotta);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.price-period {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: '✓';
  color: var(--accent-terracotta);
  font-weight: 800;
  flex-shrink: 0;
}

/* Reviews / Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.review-quote::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-dusty-orange);
  opacity: 0.3;
  position: absolute;
  top: -1.2rem;
  left: -0.8rem;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.review-avatar-glyph {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-terracotta), var(--accent-amber));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

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

.review-meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Case Study Box */
.case-study-box {
  padding: 2.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--accent-muted-teal);
  background: var(--bg-card);
  border-radius: var(--radius-md);
}

/* Blog / Journal */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
}

.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.post-cover-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-muted-teal);
  margin-bottom: 0.5rem;
}

.post-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.post-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.post-meta-line {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

/* Article Page */
.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.article-featured-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-warped);
  margin-bottom: 3rem;
  border: 1px solid var(--border-glass);
}

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

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.75rem;
  color: var(--text-muted);
}

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

.prose blockquote {
  border-left: 3px solid var(--accent-terracotta);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-glass-tint);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-main);
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-glass-strong);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: all var(--trans-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.15);
  background: #fff;
}

.form-error-msg {
  font-size: 0.82rem;
  color: #B91C1C;
  display: none;
  margin-top: 0.25rem;
}

.form-status-alert {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  display: none;
}

.form-status-alert.success {
  display: block;
  background: rgba(61, 123, 128, 0.12);
  border: 1px solid var(--accent-muted-teal);
  color: var(--accent-teal-dark);
}

.form-status-alert.error {
  display: block;
  background: rgba(185, 28, 28, 0.1);
  border: 1px solid #B91C1C;
  color: #B91C1C;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-summary {
  padding: 1.5rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
  color: var(--text-main);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-terracotta);
  transition: transform var(--trans-fast);
}

details[open] .faq-summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 1.75rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: #1C1510;
  color: #EDE4D8;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(224, 122, 95, 0.2);
}

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

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FAF7F2;
  margin-bottom: 0.75rem;
}

.footer-desc {
  color: #A69788;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-amber);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #D1C5B6;
  font-size: 0.9rem;
  transition: color var(--trans-fast);
}

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

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: #D1C5B6;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-item strong {
  color: #FAF7F2;
  min-width: 65px;
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background: rgba(35, 27, 21, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(224, 122, 95, 0.35);
  border-radius: var(--radius-warped);
  padding: 1.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #FAF7F2;
}

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

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FAF7F2;
  margin-bottom: 0.5rem;
}

.cookie-banner-text {
  font-size: 0.88rem;
  color: #D1C5B6;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--accent-dusty-orange);
  text-decoration: underline;
}

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

/* Tables for Cookies & Legal */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.legal-table th, .legal-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.92rem;
}

.legal-table th {
  background: rgba(224, 122, 95, 0.1);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .flagship-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(247, 243, 235, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
  }

  .mobile-toggle {
    display: block;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-badge-float {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 1rem;
  }
}
