@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-sand: #f7f4ef;
  --bg-white: #ffffff;
  --bg-canvas: #faf8f5;
  --bg-dark: #121212;
  --text-charcoal: #1a1a1a;
  --text-muted: #5e5449;
  
  /* Luxury Brass & Fashion Colors */
  --accent-gold: #c5a059;
  --accent-gold-dark: #a8823b;
  --accent-gold-glow: rgba(197, 160, 89, 0.08);
  --border-light: #e8e2d7;
  --border-heavy: #c5a059;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s ease;
  
  --shadow-sm: 0 2px 4px rgba(94, 84, 73, 0.02);
  --shadow-md: 0 10px 20px -5px rgba(94, 84, 73, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(94, 84, 73, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-sand);
  color: var(--text-charcoal);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* Typography & Headings */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-charcoal);
  font-weight: 500;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Luxury Wordmark Logo */
.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-logo .logo-text {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-logo .logo-text span {
  font-weight: 300;
  color: var(--accent-gold);
}

.title-xl {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.title-lg {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--accent-gold-dark);
  margin-bottom: 0.8rem;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Preloader with LÄDT... Elegant Serif Text */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-sand);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.loader-circle {
  width: 45px;
  height: 45px;
  border: 3px solid var(--accent-gold-glow);
  border-radius: 50%;
  border-top-color: var(--accent-gold);
  border-right-color: var(--text-charcoal);
  animation: spin 0.9s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-text {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--text-charcoal);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Affiliate Regulatory Banner */
.affiliate-banner {
  background-color: var(--text-charcoal);
  color: var(--bg-sand);
  text-align: center;
  padding: 8px 15px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  position: relative;
  z-index: 1001;
}

/* Header & Sticky Nav */
header {
  position: sticky;
  top: 0; width: 100%;
  padding: 24px 0;
  z-index: 1000;
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

header.scrolled {
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(197, 160, 89, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-charcoal);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-gold-dark);
}

.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid var(--text-charcoal);
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-solid {
  background-color: var(--text-charcoal);
  color: var(--bg-sand);
  border-color: var(--text-charcoal);
}

.btn-solid:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-charcoal);
  border-color: var(--text-charcoal);
}

.btn-outline:hover {
  background-color: var(--text-charcoal);
  color: var(--bg-sand);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-white);
}

.btn-gold:hover {
  background-color: var(--text-charcoal);
  border-color: var(--text-charcoal);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--text-charcoal);
  transition: all var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 360px; height: 100vh;
  background: var(--bg-white);
  box-shadow: -10px 0 40px rgba(94, 84, 73, 0.05);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transition: right var(--transition-smooth);
}

.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin: 2rem 0; }
.mobile-nav a { font-family: var(--font-heading); font-size: 1.8rem; color: var(--text-charcoal); letter-spacing: 0.08em; }
.mobile-nav a.active { color: var(--accent-gold-dark); }

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Editorial Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, #f7f4ef 0%, #faf8f5 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 6.5fr 5.5fr;
  gap: 5rem;
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.hero-img-wrapper {
  position: relative;
  padding: 12px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; width: calc(100% - 24px); height: calc(100% - 24px);
  border: 1px solid var(--accent-gold);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  display: block;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-charcoal);
  margin-bottom: 1.5rem;
}

.trust-badge span {
  width: 6px; height: 6px;
  background-color: var(--accent-gold);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .hero-text { margin: 0 auto; }
  .hero-img-wrapper { max-width: 480px; margin: 0 auto; }
}

/* Grid Feature Layout (Magazine Style) */
.features {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

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

.feature-card {
  background: var(--bg-sand);
  padding: 4rem 2.5rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  position: relative;
  text-align: center;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-white);
  border-color: var(--accent-gold);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 50px; height: 50px;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon {
  background-color: var(--text-charcoal);
  border-color: var(--text-charcoal);
}

.feature-icon svg {
  width: 22px; height: 22px;
  fill: var(--text-charcoal);
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon svg {
  fill: var(--bg-sand);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Editorial Content Block */
.editorial {
  padding: 100px 0;
  background-color: var(--bg-canvas);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.editorial-img-wrapper {
  position: relative;
  padding: 12px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.editorial-img-wrapper::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; width: calc(100% - 24px); height: calc(100% - 24px);
  border: 1px solid var(--accent-gold);
  pointer-events: none;
}

.editorial-img-wrapper img {
  width: 100%;
  display: block;
}

.editorial-text h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
}

.editorial-text p {
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
  margin: 2.5rem 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  font-weight: 500;
}

.checklist li svg {
  width: 18px; height: 18px;
  fill: var(--accent-gold-dark);
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 4rem; }
  .editorial-grid.reverse .editorial-text { order: 2; }
  .editorial-grid.reverse .editorial-img-wrapper { order: 1; }
}

/* Expert Review Page Specific Styles */
.review-header {
  text-align: center;
  padding: 120px 0 80px;
  background-color: var(--bg-canvas);
  border-bottom: 1px solid var(--border-light);
}

.review-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.rating-stars {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-body {
  max-width: 760px;
  margin: 80px auto;
  padding: 0 20px;
}

.article-body h2 {
  font-size: 1.8rem;
  margin: 3.5rem 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-body h3 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-body p {
  margin-bottom: 2rem;
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-body ul {
  margin: 2rem 0;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-charcoal);
  border-left: 2px solid var(--accent-gold);
  padding-left: 2.2rem;
  margin: 4rem 0;
}

/* Editorial Pros and Cons Grid */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 3.5rem 0;
}

.pro-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--accent-gold);
}

.con-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  border-top: 2px solid #b24d3d;
}

@media (max-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Product Slider & Order Gallery Layout */
.product-showcase {
  padding: 100px 0;
  background-color: var(--bg-sand);
}

.product-showcase .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (min-width: 901px) {
  .gallery-container {
    position: sticky;
    top: 130px;
  }
}

.gallery-main {
  background: var(--bg-white);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.gallery-main::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; width: calc(100% - 24px); height: calc(100% - 24px);
  border: 1px solid var(--accent-gold);
  pointer-events: none;
  z-index: 2;
}

.gallery-main img {
  width: 100%;
  display: none;
  animation: fadeEffect 0.5s ease-in-out;
}

.gallery-main img.active {
  display: block;
}

@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.thumb-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  outline: none;
}

.thumb-btn img {
  width: 100%;
  display: block;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.product-details {
  padding-top: 1rem;
}

.product-details h1 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.product-rating span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-card {
  background: var(--text-charcoal);
  color: var(--bg-sand);
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
  border-left: 2px solid var(--accent-gold);
}

.price-card .price-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.price-card .price-amount {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.price-card .price-meta {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
}

.spec-list {
  list-style: none;
  margin: 3.5rem 0;
  border-top: 1px solid var(--border-light);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.98rem;
}

.spec-list span:first-child {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--text-charcoal);
}

.spec-list span:last-child {
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .product-showcase .container { grid-template-columns: 1fr; gap: 4rem; }
}

/* Comparison Matrix Section */
.comparison-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.comparison-wrapper {
  margin-top: 4rem;
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-white);
}

.comparison-table th, .comparison-table td {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  background-color: var(--bg-sand);
  color: var(--text-charcoal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table th.highlight-column, .comparison-table td.highlight-column {
  background-color: var(--bg-canvas);
  border-left: 1px solid rgba(197, 160, 89, 0.3);
  border-right: 1px solid rgba(197, 160, 89, 0.3);
}

.comparison-table tr:hover td {
  background-color: var(--bg-sand);
}

.comparison-table tr:hover td.highlight-column {
  background-color: rgba(197, 160, 89, 0.05);
}

.comparison-table svg {
  width: 18px; height: 18px;
  vertical-align: middle;
  margin-right: 8px;
}

.comparison-table svg.check { fill: var(--accent-gold-dark); }
.comparison-table svg.cross { fill: #b24d3d; }

/* Interactive FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-sand);
  border-top: 1px solid var(--border-light);
}

.faq-list {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.05em;
}

.faq-icon {
  width: 20px; height: 20px;
  fill: var(--accent-gold);
  transition: transform var(--transition-fast);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 28px;
}

.faq-content p {
  padding-bottom: 22px;
  font-size: 1rem;
  line-height: 1.75;
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  fill: var(--text-charcoal);
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 28px;
}

/* Contact Page Styles */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.2rem;
}

.contact-card {
  background: var(--bg-sand);
  border: 1px solid var(--border-light);
  padding: 2.2rem;
  margin-bottom: 2rem;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
}

.contact-form-container {
  background: var(--bg-sand);
  border: 1px solid var(--border-light);
  padding: 4rem 3.5rem;
}

.contact-form-container h2 {
  margin-bottom: 1rem;
}

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

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-charcoal);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-charcoal);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-gold);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .contact-form-container { padding: 3rem 2rem; }
}

/* Legal Document Styles */
.legal-page {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.legal-content .last-updated {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold-dark);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  margin-bottom: 3.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 3rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.legal-content ul, .legal-content ol {
  margin: 1.8rem 0;
  padding-left: 2.2rem;
}

.legal-content li {
  margin-bottom: 0.8rem;
  font-size: 1.02rem;
  color: var(--text-muted);
}

/* Footer Section */
footer {
  background-color: var(--text-charcoal);
  color: var(--bg-sand);
  padding: 80px 0 40px;
  border-top: 1px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  border-bottom: 1px solid rgba(232, 226, 215, 0.05);
  padding-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  display: flex !important;
  align-items: center;
  gap: 4px;
}

.footer-logo .logo-text {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo .logo-text span {
  font-weight: 300;
  color: var(--accent-gold);
}

.footer-col p {
  color: #a0978b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 1.8rem;
}

.footer-col a {
  color: #a0978b;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  display: inline-block;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--bg-white);
  transform: translateX(3px);
}

.regulatory-disclaimer {
  padding: 40px 0 20px;
  border-bottom: 1px solid rgba(232, 226, 215, 0.05);
}

.regulatory-disclaimer p {
  font-size: 0.76rem;
  line-height: 1.7;
  color: #7d756b;
}

.regulatory-disclaimer p strong {
  color: var(--bg-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.82rem;
}

.footer-bottom p {
  color: #7d756b;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1.2rem; }
}

/* Beautiful PECR Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px; left: 30px;
  max-width: 440px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--text-charcoal);
  padding: 2.2rem;
  box-shadow: 0 15px 35px rgba(94, 84, 73, 0.15);
  z-index: 9999;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  transform: translateY(calc(100% + 50px));
  opacity: 0;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: var(--text-muted);
}

.cookie-banner p a {
  color: var(--accent-gold-dark);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 10px 0;
  font-size: 0.78rem;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 15px; right: 15px; bottom: 15px;
    max-width: none;
    padding: 1.8rem;
  }
}
