/* ==========================================================================
   DESERT GLASS THEME - DataTrail Base
   Sun-bleached cream, terracotta, dusty orange, muted teal, and dark brown.
   Translucent, frosted glass surfaces, architectural typography & optical stillness.
   ========================================================================== */

:root {
  --color-cream-light: #FAF6EE;
  --color-cream-base: #F3EBDD;
  --color-cream-dark: #E6DCB;
  --color-terracotta: #C86D51;
  --color-terracotta-dark: #A9563C;
  --color-dusty-orange: #DE7E5D;
  --color-muted-teal: #406A68;
  --color-muted-teal-dark: #2D4C4A;
  --color-muted-teal-light: #5E8886;
  --color-dark-brown: #251C17;
  --color-dark-brown-deep: #1A130E;
  --color-dark-brown-soft: #382C24;
  --color-sand-border: rgba(200, 109, 81, 0.22);
  --color-glass-border: rgba(247, 243, 235, 0.65);
  --color-glass-bg: rgba(250, 246, 238, 0.72);
  --color-glass-dark-bg: rgba(37, 28, 23, 0.88);
  --color-text-main: #251C17;
  --color-text-muted: #5A4A3E;
  --color-text-light: #FAF6EE;
  --color-text-light-muted: #D5C8B8;
  
  --font-heading: 'Syne', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --shadow-glass: 0 8px 32px 0 rgba(37, 28, 23, 0.08);
  --shadow-glass-hover: 0 16px 48px 0 rgba(200, 109, 81, 0.16);
  --shadow-sunken: inset 0 2px 4px 0 rgba(37, 28, 23, 0.06);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 9999px;

  --container-max: 1200px;
  --container-narrow: 840px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-cream-base);
  color: var(--color-text-main);
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  background: radial-gradient(circle at 10% 20%, rgba(222, 126, 93, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(64, 106, 104, 0.09) 0%, transparent 45%),
              linear-gradient(180deg, #FAF6EE 0%, #F3EBDD 50%, #ECE2CF 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Ambient Desert Grain & Mirage Texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(37, 28, 23, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-dark-brown);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-terracotta-dark);
}

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: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 109, 81, 0.15);
  transition: var(--transition-smooth);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-dark-brown) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200, 109, 81, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-symbol svg {
  width: 22px;
  height: 22px;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-dark-brown);
}

.brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted-teal);
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-terracotta);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-terracotta);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--color-dark-brown);
  color: var(--color-cream-light);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(247, 243, 235, 0.3);
  box-shadow: 0 4px 14px rgba(37, 28, 23, 0.18);
  transition: var(--transition-smooth);
}

.header-cta-btn:hover {
  background: var(--color-terracotta);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200, 109, 81, 0.3);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-dark-brown);
}

.mobile-nav-drawer {
  display: none;
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta-btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-nav-drawer.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(250, 246, 238, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--color-sand-border);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 16px 32px rgba(37, 28, 23, 0.12);
  }
  .mobile-nav-drawer .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
}

/* Desert Glass Surfaces & Cards */
.glass-panel {
  background: var(--color-glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-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-card {
  background: rgba(250, 246, 238, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 109, 81, 0.18);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(37, 28, 23, 0.05);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(200, 109, 81, 0.35);
  box-shadow: var(--shadow-glass-hover);
}

.glass-card-dark {
  background: var(--color-glass-dark-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(222, 126, 93, 0.25);
  border-radius: var(--radius-lg);
  color: var(--color-text-light);
  box-shadow: 0 12px 40px rgba(26, 19, 14, 0.35);
}

.glass-card-dark h1,
.glass-card-dark h2,
.glass-card-dark h3,
.glass-card-dark h4 {
  color: var(--color-cream-light);
}

.glass-card-dark p {
  color: var(--color-text-light-muted);
}

/* Desert Glass Heat-Distortion Micro-Interactions on Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.6);
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
  transform: scale(1.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-dusty-orange) 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(200, 109, 81, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-terracotta-dark) 0%, var(--color-terracotta) 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 109, 81, 0.45);
}

.btn-secondary {
  background: rgba(64, 106, 104, 0.12);
  color: var(--color-muted-teal-dark);
  border: 1px solid rgba(64, 106, 104, 0.3);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: var(--color-muted-teal);
  color: #FFFFFF;
  border-color: var(--color-muted-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(64, 106, 104, 0.25);
}

.btn-dark {
  background: var(--color-dark-brown);
  color: var(--color-cream-light);
  border: 1px solid rgba(247, 243, 235, 0.2);
}

.btn-dark:hover {
  background: var(--color-dark-brown-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 28, 23, 0.3);
}

/* Badges & Pills */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(200, 109, 81, 0.12);
  color: var(--color-terracotta-dark);
  border: 1px solid rgba(200, 109, 81, 0.25);
}

.badge-teal {
  background: rgba(64, 106, 104, 0.12);
  color: var(--color-muted-teal-dark);
  border-color: rgba(64, 106, 104, 0.25);
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-dark {
  background: var(--color-dark-brown-deep);
  color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-cream-light);
}

.section-dark p {
  color: var(--color-text-light-muted);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .badge-pill {
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-dark .section-desc {
  color: var(--color-text-light-muted);
}

/* Hero Section */
.hero-wrapper {
  padding: 5rem 0 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.68;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 109, 81, 0.2);
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-dark-brown);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-muted-teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(37, 28, 23, 0.18);
  border: 2px solid var(--color-glass-border);
}

.hero-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.hero-glass-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(37, 28, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(247, 243, 235, 0.25);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  color: var(--color-cream-light);
}

.hero-glass-badge .badge-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-glass-badge .badge-desc {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  margin: 0;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image-frame img {
    height: 380px;
  }
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Service Card */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-img {
  height: 220px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  margin: -2rem -2rem 1.5rem -2rem;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-muted-teal-dark);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-price-tag {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200, 109, 81, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark-brown);
}

/* Flagship Banner Feature */
.flagship-banner {
  background: linear-gradient(135deg, rgba(250, 246, 238, 0.9) 0%, rgba(243, 235, 221, 0.95) 100%);
  border: 2px solid rgba(200, 109, 81, 0.35);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-glass);
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.flagship-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(37, 28, 23, 0.12);
}

.flagship-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .flagship-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .flagship-banner {
    padding: 1.75rem;
  }
}

/* Testimonial Card */
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-terracotta);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.quote-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-dark-brown);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200, 109, 81, 0.18);
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--color-terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark-brown);
}

.reviewer-sub {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.rating-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-terracotta-dark);
}

/* Blog / Article Card */
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.blog-card-img {
  height: 220px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  margin: -2rem -2rem 1.5rem -2rem;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-muted-teal-dark);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  color: var(--color-dark-brown);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark-brown);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark-brown);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(200, 109, 81, 0.25);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  background: #FFFFFF;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(200, 109, 81, 0.18);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-help {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
}

.form-feedback {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-feedback.success {
  display: block;
  background: rgba(64, 106, 104, 0.15);
  color: #1c3635;
  border: 1px solid var(--color-muted-teal);
}

.form-feedback.error {
  display: block;
  background: rgba(200, 109, 81, 0.15);
  color: #7b2912;
  border: 1px solid var(--color-terracotta);
}

/* Table styles for Cookies / Syllabus */
.glass-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.glass-table th,
.glass-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(200, 109, 81, 0.18);
}

.glass-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  background: rgba(200, 109, 81, 0.08);
  color: var(--color-dark-brown);
}

.glass-table tr:hover td {
  background: rgba(255, 255, 255, 0.4);
}

/* Footer */
.site-footer {
  background: var(--color-dark-brown-deep);
  color: var(--color-cream-light);
  padding: 4.5rem 0 2rem;
  margin-top: auto;
  border-top: 2px solid var(--color-terracotta);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-cream-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-col p {
  color: var(--color-text-light-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--color-text-light-muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-dusty-orange);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 243, 235, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal-links a {
  color: var(--color-text-light-muted);
}

.footer-legal-links a:hover {
  color: var(--color-dusty-orange);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 580px;
  background: rgba(37, 28, 23, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(222, 126, 93, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  z-index: 999;
  display: none;
  color: var(--color-cream-light);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-cream-light);
}

.cookie-banner-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-light-muted);
  margin-bottom: 1.25rem;
}

.cookie-banner-text a {
  color: var(--color-dusty-orange);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner-btn {
  padding: 0.55rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.cookie-btn-accept {
  background: var(--color-terracotta);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: var(--color-dusty-orange);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-cream-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cookie-banner-error {
  display: none;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: #ff9b9b;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: rgba(250, 246, 238, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 109, 81, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark-brown);
  margin-bottom: 0.6rem;
}

.faq-answer {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
