@charset "UTF-8";

/* ==========================================================================
   DESERT GLASS THEME - FLOW AXISCORE PARTNERS
   Palette: Sun-bleached cream, Terracotta, Dusty Orange, Muted Teal, Dark Brown
   Atmosphere: Heat, Solitude, Wind-shaped frosted glass, Surreal stillness
   ========================================================================== */

:root {
  --bg-sand: #f7f2ea;
  --bg-sand-light: #fcf9f5;
  --bg-sand-warped: #ede3d2;
  --bg-dune-dark: #221813;
  
  --c-terracotta: #c45b3a;
  --c-terracotta-deep: #a04326;
  --c-terracotta-soft: rgba(196, 91, 58, 0.12);
  
  --c-orange-dusty: #d97738;
  --c-orange-light: #fbeee3;
  
  --c-teal-muted: #447779;
  --c-teal-deep: #2d5658;
  --c-teal-soft: rgba(68, 119, 121, 0.12);
  
  --c-dark-brown: #241914;
  --c-dark-brown-soft: #4a3b32;
  --c-text-muted: #6e5e54;
  
  --glass-bg: rgba(252, 249, 245, 0.72);
  --glass-bg-subtle: rgba(237, 227, 210, 0.55);
  --glass-border: rgba(196, 91, 58, 0.22);
  --glass-border-light: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 16px 36px -10px rgba(36, 25, 20, 0.08), 0 0 1px 1px rgba(255, 255, 255, 0.8) inset;
  --glass-shadow-hover: 0 24px 48px -12px rgba(196, 91, 58, 0.16), 0 0 2px 1px rgba(217, 119, 56, 0.3) inset;
  
  --radius-warped-1: 32px 12px 28px 10px;
  --radius-warped-2: 14px 34px 12px 30px;
  --radius-warped-3: 24px 8px 24px 8px;
  --radius-button: 999px;
  
  --font-display: 'Space Grotesk', 'Noto Sans TC', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Noto Sans TC', system-ui, sans-serif;
  
  --container-max: 1200px;
  --spacing-section: clamp(60px, 8vw, 100px);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-sand);
  color: var(--c-dark-brown);
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  letter-spacing: 0.01em;
  background: 
    radial-gradient(circle at 15% 10%, rgba(217, 119, 56, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(68, 119, 121, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(196, 91, 58, 0.05) 0%, transparent 40%),
    var(--bg-sand);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-terracotta);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--c-terracotta-deep);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-dark-brown);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.25rem;
  color: var(--c-dark-brown-soft);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* Glass Surface Components */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-warped-1);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glass-border-light), transparent);
  opacity: 0.7;
}

.glass-panel:hover {
  border-color: rgba(196, 91, 58, 0.4);
  box-shadow: var(--glass-shadow-hover);
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--c-terracotta-soft);
  border: 1px solid rgba(196, 91, 58, 0.25);
  border-radius: 999px;
  color: var(--c-terracotta);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 clamp(16px, 4vw, 32px);
  margin-bottom: 24px;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(252, 249, 245, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(196, 91, 58, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(36, 25, 20, 0.06);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-dark-brown);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.brand-logo img, .brand-logo svg {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-terracotta);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--c-dark-brown-soft);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--c-terracotta);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-terracotta);
  border-radius: 2px;
}

.nav-cta {
  background: var(--c-terracotta);
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--c-terracotta-deep);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--c-dark-brown);
  cursor: pointer;
  padding: 8px;
  font-size: 1.5rem;
}

/* Button & Heat Shimmer Distortion */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-button);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
  transform: scale(1.1) rotate(20deg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-terracotta) 0%, var(--c-orange-dusty) 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 24px -6px rgba(196, 91, 58, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px -6px rgba(196, 91, 58, 0.6);
  filter: contrast(1.08);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c-dark-brown) !important;
  border-color: rgba(196, 91, 58, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--c-terracotta);
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--c-teal-muted) 0%, var(--c-teal-deep) 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 24px -6px rgba(68, 119, 121, 0.45);
}

.btn-teal:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px -6px rgba(68, 119, 121, 0.6);
}

/* Hero Section */
.hero-section {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--c-dark-brown);
}

.hero-title .highlight {
  color: var(--c-terracotta);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--c-orange-light);
  z-index: -1;
  border-radius: 4px;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--c-dark-brown-soft);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 91, 58, 0.15);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text-muted);
}

.hero-meta-icon {
  width: 20px;
  height: 20px;
  color: var(--c-terracotta);
}

.hero-visual {
  position: relative;
}

.hero-card-warped {
  border-radius: var(--radius-warped-2);
  overflow: hidden;
  box-shadow: 0 24px 50px -15px rgba(36, 25, 20, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-card-warped img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-card-warped:hover img {
  transform: scale(1.03);
}

.hero-badge-glass {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(252, 249, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 16px 24px;
  border-radius: var(--radius-warped-3);
  box-shadow: 0 16px 32px rgba(36, 25, 20, 0.12);
  max-width: 280px;
}

.hero-badge-glass .badge-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-terracotta);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hero-badge-glass .badge-desc {
  font-size: 0.85rem;
  color: var(--c-dark-brown-soft);
  line-height: 1.4;
  margin: 0;
}

/* Section Common Styling */
.section-block {
  padding: var(--spacing-section) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 6vw, 60px);
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--c-dark-brown-soft);
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px 6px 16px 6px;
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card-summary {
  font-size: 0.95rem;
  color: var(--c-dark-brown-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(196, 91, 58, 0.12);
  border-bottom: 1px solid rgba(196, 91, 58, 0.12);
  font-size: 0.85rem;
}

.meta-label {
  color: var(--c-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.meta-value {
  font-weight: 600;
  color: var(--c-dark-brown);
}

.flagship-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--c-terracotta);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

/* Flagship Feature Section */
.flagship-section {
  background: linear-gradient(180deg, var(--bg-sand) 0%, var(--bg-sand-warped) 100%);
  border-top: 1px solid rgba(196, 91, 58, 0.15);
  border-bottom: 1px solid rgba(196, 91, 58, 0.15);
}

.flagship-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.flagship-details-list {
  list-style: none;
  margin-bottom: 2rem;
}

.flagship-details-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--c-dark-brown-soft);
}

.flagship-details-item::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-terracotta);
  font-size: 0.9rem;
}

/* Reviews & Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-dark-brown-soft);
  margin-bottom: 24px;
  position: relative;
  font-style: italic;
}

.testimonial-quote::before {
  content: '“';
  font-family: serif;
  font-size: 3rem;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: -10px;
  opacity: 0.15;
  color: var(--c-terracotta);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(196, 91, 58, 0.12);
  padding-top: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-terracotta);
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-dark-brown);
}

.author-role {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.author-project {
  font-size: 0.75rem;
  color: var(--c-terracotta);
  font-weight: 600;
  margin-top: 2px;
}

.star-rating {
  color: var(--c-orange-dusty);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* Blog Cards Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-card-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}

.post-category-tag {
  background: var(--c-teal-soft);
  color: var(--c-teal-deep);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.post-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.post-card-summary {
  font-size: 0.9rem;
  color: var(--c-dark-brown-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Form Styles */
.form-container {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-dark-brown);
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--c-terracotta);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-dark-brown);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(196, 91, 58, 0.25);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  background: #ffffff;
  border-color: var(--c-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 91, 58, 0.15);
}

.form-input.is-invalid, .form-textarea.is-invalid, .form-select.is-invalid {
  border-color: #d93838;
  box-shadow: 0 0 0 3px rgba(217, 56, 56, 0.15);
}

.field-error {
  color: #d93838;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.field-error.active {
  display: block;
}

.form-alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-alert.alert-success {
  background: var(--c-teal-soft);
  color: var(--c-teal-deep);
  border: 1px solid rgba(68, 119, 121, 0.3);
  display: block;
}

.form-alert.alert-error {
  background: rgba(217, 56, 56, 0.1);
  color: #b52020;
  border: 1px solid rgba(217, 56, 56, 0.3);
  display: block;
}

/* Pricing Page Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.pricing-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--c-terracotta);
  transform: scale(1.02);
}

.pricing-rate {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-terracotta);
  margin: 16px 0 8px;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-feature-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--c-dark-brown-soft);
}

.pricing-feature-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-teal-muted);
  font-weight: bold;
}

/* Tables (Cookies / Comparison) */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 16px;
  border: 1px solid rgba(196, 91, 58, 0.2);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass-bg);
  text-align: left;
  font-size: 0.95rem;
}

.data-table th {
  background: rgba(237, 227, 210, 0.85);
  color: var(--c-dark-brown);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(196, 91, 58, 0.2);
}

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(196, 91, 58, 0.1);
  color: var(--c-dark-brown-soft);
}

.data-table tr:last-child td {
  border-bottom: none;
}

/* Legal & Document Typography */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--c-terracotta);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul, .legal-content ol {
  margin-left: 24px;
  margin-bottom: 1.5rem;
  color: var(--c-dark-brown-soft);
}

.legal-content li {
  margin-bottom: 8px;
}

/* Site Footer */
.site-footer {
  margin-top: auto;
  background: var(--c-dark-brown);
  color: #ede4d5;
  padding: clamp(48px, 8vw, 80px) 0 32px;
  border-top: 2px solid var(--c-terracotta);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #c4b5a5;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-family: var(--font-display);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c4b5a5;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #f7a884;
}

.footer-contact-block p {
  color: #c4b5a5;
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact-block .contact-label {
  color: var(--c-orange-dusty);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(237, 228, 213, 0.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: #9e8d80;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #9e8d80;
}

.footer-legal-links a:hover {
  color: #ede4d5;
}

/* Cookie Consent Banner Island */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  z-index: 999;
  padding: 24px;
  background: rgba(252, 249, 245, 0.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--c-terracotta);
  border-radius: var(--radius-warped-1);
  box-shadow: 0 20px 48px rgba(36, 25, 20, 0.22);
  display: none;
}

.cookie-banner.active {
  display: block;
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-dark-brown);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--c-dark-brown-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: var(--c-terracotta);
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-btn-accept:hover {
  background: var(--c-terracotta-deep);
}

.cookie-btn-reject {
  background: rgba(237, 227, 210, 0.7);
  color: var(--c-dark-brown);
  border: 1px solid rgba(196, 91, 58, 0.3);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-btn-reject:hover {
  background: rgba(237, 227, 210, 1);
}

.cookie-policy-link {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-decoration: underline;
  margin-left: auto;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    order: -1;
    max-width: 540px;
    margin: 0 auto;
  }
  
  .flagship-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 8px;
    padding: 0 12px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    background: rgba(252, 249, 245, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(196, 91, 58, 0.25);
    border-radius: 24px;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(36, 25, 20, 0.15);
    display: none;
  }
  
  .nav-links.is-open {
    display: flex;
  }
  
  .nav-cta {
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
