@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Desert Glass Palette */
  --bg-base: #F8F4EE;
  --bg-sand: #F1ECE2;
  --bg-sand-dark: #E4DCCF;
  --bg-glass: rgba(248, 244, 238, 0.72);
  --bg-glass-card: rgba(255, 252, 247, 0.65);
  --bg-glass-elevated: rgba(255, 255, 255, 0.88);
  --bg-glass-dark: rgba(35, 26, 21, 0.88);

  --text-main: #231A15;
  --text-muted: #64554D;
  --text-light: #948378;
  --text-inverted: #FAF6F0;

  --terracotta: #B85536;
  --terracotta-dark: #964228;
  --dusty-orange: #D97843;
  --muted-teal: #2D666C;
  --muted-teal-light: #44838A;
  --muted-teal-bg: rgba(45, 102, 108, 0.08);

  --border-glass: rgba(184, 85, 54, 0.2);
  --border-glass-light: rgba(255, 255, 255, 0.6);
  --border-teal: rgba(45, 102, 108, 0.25);

  --shadow-soft: 0 16px 36px -8px rgba(70, 45, 30, 0.08), 0 4px 12px -2px rgba(184, 85, 54, 0.04);
  --shadow-hover: 0 24px 50px -10px rgba(45, 30, 20, 0.14), 0 8px 20px -3px rgba(184, 85, 54, 0.09);
  --shadow-glass: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 12px 32px rgba(35, 26, 21, 0.06);

  --blur-glass: blur(14px);
  --blur-strong: blur(20px);

  /* Warped Organic Glass Silhouettes */
  --radius-warped-1: 30px 14px 26px 16px;
  --radius-warped-2: 18px 32px 16px 28px;
  --radius-warped-3: 24px 18px 30px 14px;
  --radius-card: 20px;
  --radius-pill: 999px;

  /* Architectural Typography */
  --font-heading: 'Space Grotesk', system-ui, -apple-system, 'Noto Sans TC', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Noto Sans TC', sans-serif;
  
  --container-max: 1200px;
  --header-height: 80px;
  --transition-fluid: 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-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-base);
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(217, 120, 67, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 90% 45%, rgba(45, 102, 108, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 85%, rgba(184, 85, 54, 0.07) 0%, transparent 55%);
  background-attachment: fixed;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: var(--transition-fluid);
}

a:hover {
  color: var(--terracotta-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-lg {
  padding: 7rem 0;
}

.section-hero {
  padding: 4rem 0 5rem;
}

/* Desert Glass Surfaces */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-glass-light);
  box-shadow: var(--shadow-soft), var(--shadow-glass);
  border-radius: var(--radius-warped-1);
}

.glass-card {
  background: var(--bg-glass-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  transition: var(--transition-fluid);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--dusty-orange), var(--muted-teal));
  opacity: 0.65;
  transition: var(--transition-fluid);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(184, 85, 54, 0.35);
}

.glass-card:hover::before {
  opacity: 1;
  height: 4px;
}

/* Architectural Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.85);
  backdrop-filter: var(--blur-strong);
  -webkit-backdrop-filter: var(--blur-strong);
  border-bottom: 1px solid rgba(184, 85, 54, 0.12);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--terracotta), var(--dusty-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px rgba(184, 85, 54, 0.25);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.6rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition-fluid);
}

.nav-link:hover, .nav-link.active {
  color: var(--terracotta);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
}

/* Desert Glass Buttons & Heat Shimmer */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: var(--transition-fluid);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--dusty-orange));
  color: var(--text-inverted);
  box-shadow: 0 8px 20px -4px rgba(184, 85, 54, 0.35);
}

/* Heat Distortion Effect */
.btn-primary::before {
  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.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.btn-primary:hover {
  color: var(--text-inverted);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(184, 85, 54, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
  transform: scale(1.1) rotate(20deg);
}

.btn-secondary {
  background: var(--bg-glass-card);
  backdrop-filter: var(--blur-glass);
  color: var(--text-main);
  border-color: var(--border-glass);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--bg-glass-elevated);
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--muted-teal), var(--muted-teal-light));
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(45, 102, 108, 0.35);
}

.btn-teal:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -4px rgba(45, 102, 108, 0.45);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

/* Architectural Tags & Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  background: rgba(184, 85, 54, 0.1);
  color: var(--terracotta);
  border: 1px solid rgba(184, 85, 54, 0.2);
}

.badge-teal {
  background: rgba(45, 102, 108, 0.1);
  color: var(--muted-teal);
  border-color: rgba(45, 102, 108, 0.25);
}

/* Hero Section */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-row {
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.18;
}

.hero-title span.highlight {
  color: var(--terracotta);
  position: relative;
  display: inline-block;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-meta-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 85, 54, 0.15);
}

.meta-point-item h4 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.meta-point-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.hero-visual-card {
  position: relative;
  padding: 1rem;
}

.hero-visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-warped-2);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-hover);
}

.hero-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg-glass-elevated);
  backdrop-filter: var(--blur-strong);
  -webkit-backdrop-filter: var(--blur-strong);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-warped-3);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-hover);
  max-width: 280px;
}

.float-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-teal);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.float-card-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
}

/* Grids */
.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;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Service Cards */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184, 85, 54, 0.15);
}

.service-card-meta {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.service-card-meta span {
  font-size: 0.8rem;
  color: var(--muted-teal);
  font-weight: 600;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(184, 85, 54, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price-hint {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta);
}

/* Flagship Service Showcase */
.flagship-banner {
  background: linear-gradient(135deg, rgba(184, 85, 54, 0.06), rgba(45, 102, 108, 0.08));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-warped-1);
  padding: 3.5rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.flagship-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.flagship-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.flagship-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

/* Dimension Cards (Framework) */
.dim-card {
  padding: 2rem;
}

.dim-code {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(184, 85, 54, 0.3);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.dim-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.dim-spec {
  background: rgba(45, 102, 108, 0.06);
  border-left: 3px solid var(--muted-teal);
  padding: 0.6rem 0.9rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: var(--muted-teal);
  font-weight: 600;
}

.dim-problem {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* Pricing Grid */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.featured {
  border: 2px solid var(--terracotta);
  background: var(--bg-glass-elevated);
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-type {
  font-size: 0.82rem;
  color: var(--muted-teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.pricing-price {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--terracotta);
  margin-bottom: 0.3rem;
}

.pricing-timeline {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
}

/* Reviews & Testimonials */
.review-card {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-highlight {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--terracotta);
  background: rgba(184, 85, 54, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1rem;
}

.review-content {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(184, 85, 54, 0.12);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--terracotta);
}

.review-meta h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.review-meta p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Blog / Posts */
.post-card {
  display: flex;
  flex-direction: column;
}

.post-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

.post-meta-row {
  display: flex;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.post-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.post-card h3 a {
  color: var(--text-main);
}

.post-card h3 a:hover {
  color: var(--terracotta);
}

.post-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Detailed Article Page */
.article-header {
  padding: 3rem 0 2rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.article-header h1 {
  margin: 1rem 0 1.2rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.article-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-warped-1);
  margin: 2rem 0 3rem;
  box-shadow: var(--shadow-soft);
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-main);
}

.article-body p {
  margin-bottom: 1.6rem;
  color: var(--text-muted);
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
}

.article-body h3 {
  margin: 2rem 0 0.8rem;
}

/* Forms */
.form-card {
  background: var(--bg-glass-card);
  backdrop-filter: var(--blur-strong);
  -webkit-backdrop-filter: var(--blur-strong);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-warped-1);
  padding: 2.8rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(184, 85, 54, 0.25);
  border-radius: 12px;
  transition: var(--transition-fluid);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--terracotta);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(184, 85, 54, 0.15);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error-msg {
  color: #C0392B;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  display: none;
}

.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: #C0392B;
  background: rgba(254, 242, 242, 0.85);
}

.form-status {
  padding: 1.2rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  display: none;
}

.form-status.status-success {
  display: block;
  background: rgba(45, 102, 108, 0.12);
  border: 1px solid var(--muted-teal);
  color: var(--muted-teal);
}

.form-status.status-error {
  display: block;
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid #C0392B;
  color: #C0392B;
}

/* Contact Info Blocks */
.contact-block {
  margin-bottom: 2rem;
}

.contact-block-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-teal);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-block-val {
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 600;
}

/* Legal Tables & Content */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 2.2rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(184, 85, 54, 0.15);
}

.legal-content h3 {
  margin: 1.8rem 0 0.8rem;
}

.legal-content p, .legal-content li {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-content ul, .legal-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-table-wrapper {
  overflow-x: auto;
  margin: 1.8rem 0;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
  background: var(--bg-glass-card);
}

.legal-table th, .legal-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(184, 85, 54, 0.12);
}

.legal-table th {
  background: rgba(184, 85, 54, 0.08);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

/* FAQ Component */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 1.5rem 1.8rem;
  transition: var(--transition-fluid);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 580px;
  background: rgba(35, 26, 21, 0.92);
  backdrop-filter: var(--blur-strong);
  -webkit-backdrop-filter: var(--blur-strong);
  color: var(--text-inverted);
  border: 1px solid rgba(217, 120, 67, 0.35);
  border-radius: var(--radius-warped-1);
  padding: 1.6rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  z-index: 999;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-banner h4 {
  color: var(--text-inverted);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  color: #D6CBC4;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.cookie-banner a {
  color: var(--dusty-orange);
  text-decoration: underline;
}

.cookie-btn-row {
  display: flex;
  gap: 0.8rem;
}

.cookie-error-msg {
  color: #F87171;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: none;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Site Footer */
.site-footer {
  background: var(--bg-sand);
  border-top: 1px solid rgba(184, 85, 54, 0.15);
  padding: 4.5rem 0 2.5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-contact-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 85, 54, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.4rem;
}

.footer-bottom-links a {
  color: var(--text-light);
}

.footer-bottom-links a:hover {
  color: var(--terracotta);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual-img {
    height: 380px;
  }
  .hero-float-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .flagship-banner {
    grid-template-columns: 1fr;
    padding: 2.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(248, 244, 238, 0.98);
    backdrop-filter: var(--blur-strong);
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-glass);
    box-shadow: var(--shadow-hover);
    display: none;
  }
  .main-nav.is-open {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.2rem;
  }
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-meta-points {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.2rem 1.4rem;
  }
}
