@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --surface-hover: #F1F5F9;
  --ink: #0A0E14;
  --ink-soft: #4A5568;
  --brand: #C5A021;
  --brand-glow: rgba(197, 160, 33, 0.1);
  --brand-navy: #0A0E14;
  --brand-2: #B8860B;
  --line: rgba(10, 14, 20, 0.08);
  --shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --radius: 0px; /* Rolls-Royce Sharp Edges */
  --radius-sm: 0px;
  --max: 1200px;
  --glass: rgba(10, 14, 20, 0.95);
  --gold-gradient: linear-gradient(135deg, #C5A021 0%, #B8860B 100%);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink) !important;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg) !important;
}

a {
  color: inherit;
  transition: all 0.2s ease;
}

.container {
  width: min(var(--max), 94vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  width: clamp(160px, 15vw, 240px);
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 99px;
  color: var(--ink-soft);
  font-weight: 500;
}

.nav-links a:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 20px 0 var(--brand-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px var(--brand-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.btn-tertiary {
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink);
}

.btn-tertiary:hover {
  background: rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.hero, .section {
  padding: 80px 0;
}

.hero {
  padding-top: 100px;
}

.hero-grid, .split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3, .kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kicker {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-2);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: var(--font-heading), "Bricolage Grotesque", sans-serif;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}

h1, h2, h3, h4, .kicker {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

p, li {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.1rem;
}

.trust-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 900;
}

.card, .hero-card, .kpi, details {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-premium);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.card:hover {
  transform: translateY(-8px);
  background: var(--bg);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.hero-card {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--brand);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-card h3 {
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero-card p {
  color: var(--ink-soft) !important;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(244, 196, 0, 0.05), transparent 70%);
}

.badge-row, .chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.badge, .chip {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.chip:hover {
  background: var(--brand);
  color: #000;
  border-color: var(--brand);
  transform: scale(1.05);
}

.kpi-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 4px;
}

.quote {
  border-left: 4px solid var(--brand);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
}

.cta {
  margin-top: 64px;
  padding: 64px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(234, 179, 8, 0.05), transparent 40%);
}

.cta h2 { color: var(--ink); }
.cta p { color: var(--ink-soft); max-width: 800px; margin: 0 auto 32px; }

.cta .badge-row { justify-content: center; }

.cta .btn-primary { 
  background: var(--brand); 
  color: #000;
  box-shadow: 0 10px 20px rgba(234, 179, 8, 0.1);
}

.cta .btn-secondary {
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid var(--line);
}

.cta .btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--brand);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

details {
  padding: 0;
}

summary {
  padding: 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

details p {
  padding: 0 24px 24px;
  margin: 0;
}

footer {
  margin-top: 100px;
  background: var(--surface);
  color: var(--ink);
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

footer strong { font-size: 1.5rem; margin-bottom: 16px; display: block; }
footer p { color: var(--ink-soft); }
footer h3 { color: var(--ink); margin-bottom: 24px; font-size: 1.25rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
}

.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  z-index: 1000;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
}

#applianceworks-chat-container, 
.aw-chat-widget, 
#aw-chat-widget, 
iframe[src*="applianceworks.pro"] {
  z-index: 99999 !important;
}

.mobile-call-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-call-text {
  color: var(--ink);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .kpi-row, .gallery-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta { padding: 40px 24px; }
}

.animate-in {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

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

/* Hero & Image Styles */
.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }
/* Trust Bar & Trust Signals */
.trust-bar {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(10, 14, 20, 0.08);
  border-radius: var(--radius-sm);
  align-items: center;
  flex-wrap: wrap;
  box-shadow: var(--shadow-premium);
  position: relative;
  z-index: 5;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-navy);
  flex: 0 1 auto;
}

.trust-item .stars {
  color: var(--brand);
  display: flex;
  align-items: center;
  line-height: 1;
}

.trust-label {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-subtext {
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--brand-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-2);
  flex-shrink: 0;
  border: 1px solid rgba(197, 160, 33, 0.2);
}

.icon-premium {
  color: var(--brand-2);
}

@media (max-width: 800px) {
  .trust-bar {
    gap: 24px;
    padding: 20px;
    justify-content: center;
  }
  .trust-item {
    font-size: 0.85rem;
    flex: 1 1 200px;
    justify-content: center;
  }
}

/* Diagnostic Widget & Interactive Elements */
.diagnostic-widget {
  background: #FFFFFF;
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.diagnostic-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.diagnostic-step.active {
  display: block;
}

.diag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.diag-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--surface);
  font-weight: 600;
  font-size: 0.9rem;
}

.diag-card:hover {
  border-color: var(--brand);
  background: var(--brand-glow);
  transform: translateY(-2px);
}

.diag-result {
  background: var(--brand-navy);
  color: #FFF;
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}

.diag-result h4 { color: var(--brand); margin-top: 0; }
.diag-result p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* Local Map Visual */
.local-map-wrap {
  width: 100%;
  height: 300px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  z-index: 2;
  background: var(--glass);
  padding: 12px 20px;
  border-radius: 99px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Luxury Glassmorphism & Glow */
.nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: transparent !important;
  border-bottom: none;
}

.card, .diagnostic-widget, .hero-card {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(234, 179, 8, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--brand) !important;
}

.chip:hover {
  box-shadow: 0 0 15px var(--brand-glow);
  background: var(--brand) !important;
  color: #FFF !important;
}

/* Apex Pulse Toast */
#pulse-container {
  position: fixed;
  bottom: 80px;
  left: 24px;
  z-index: 1000;
  pointer-events: none;
}

.pulse-toast {
  background: #FFF;
  border-left: 4px solid var(--brand);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-120%);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: auto;
  max-width: 320px;
}

.pulse-toast.active {
  transform: translateX(0);
}

.pulse-icon {
  background: var(--brand-glow);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.pulse-content {
  font-size: 0.85rem;
  line-height: 1.4;
}

.pulse-time {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 2px;
}

/* Trust Protocol Checklist */
.trust-protocol {
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.trust-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  opacity: 0.4;
  transform: translateX(-10px);
  transition: all 0.5s ease;
}

.trust-step.completed {
  opacity: 1;
  transform: translateX(0);
}

.step-check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all 0.3s ease;
}

.trust-step.completed .step-check {
  background: var(--brand);
  border-color: var(--brand);
  color: #FFF;
}

/* Core Web Vitals Hardening */
section {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

@font-face {
  font-display: swap;
}

/* Model Specific Silos */
.model-silo {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 32px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.model-item {
  font-size: 0.9rem;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.model-item h4 {
  margin-top: 0;
  color: var(--brand-navy);
  font-size: 1rem;
}

.tech-tip-badge {
  display: inline-block;
  background: var(--brand-navy);
  color: var(--brand);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Landmark & Entity Styling */
.landmark-tag {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

/* Maintenance Roadmap */
.roadmap-container {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  margin: 40px 0;
  border: 1px solid var(--line);
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 32px;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-glow);
}

.roadmap-point {
  position: relative;
}

.roadmap-point::after {
  content: "";
  position: absolute;
  left: -27px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--brand);
  border-radius: 50%;
  border: 4px solid #FFF;
  box-shadow: 0 0 0 2px var(--brand-glow);
}

.roadmap-point h4 { margin: 0; color: var(--brand-navy); font-size: 0.95rem; }
.roadmap-point p { margin: 4px 0 0; font-size: 0.85rem; opacity: 0.8; }

/* Success Story Carousel */
.case-study-wrap {
  background: var(--brand-navy);
  color: #FFF;
  padding: 60px 0;
  margin-top: 60px;
  overflow: hidden;
}

.case-study-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  backdrop-filter: blur(10px);
}

.case-study-tag {
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.case-study-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #FFF;
}

/* Expert Verdict Section */
.expert-verdict {
  background: var(--brand-glow);
  border-left: 4px solid var(--brand);
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.expert-verdict h4 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-navy);
}

/* Zip Code Matrix */
.zip-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.zip-link {
  font-size: 0.8rem;
  color: var(--brand-navy);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s;
}

.zip-link:hover {
  opacity: 1;
  color: var(--brand);
}

/* Appointment Stepper */
.appointment-stepper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  min-width: 200px;
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--brand-navy);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Model Locator Tool */
.locator-tool {
  background: var(--brand-navy);
  color: #FFF;
  padding: 40px;
  border-radius: var(--radius);
  margin: 40px 0;
}

.locator-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  padding: 12px;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 300px;
  margin-top: 12px;
}

/* Footer Brand Grid */
.footer-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 40px;
  opacity: 0.8;
}

.footer-brand-item {
  font-size: 0.7rem;
  color: #FFF;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s;
}

.footer-brand-item:hover {
  background: var(--brand);
  color: var(--brand-navy);
  border-color: var(--brand);
}



h1, h2, h3, .kicker {
    font-family: 'Playfair Display', serif !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em;
}

h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 2rem; }
h2 { font-size: 3rem; margin-bottom: 1.5rem; }

.section {
    padding: 120px 0; /* Aggressive Whitespace */
}

.btn {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    padding: 18px 36px;
    border-radius: 0; /* Minimalist Square */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--brand-navy);
    color: var(--brand);
    border: 1px solid var(--brand);
}

.btn-primary:hover {
    background: var(--brand);
    color: var(--brand-navy);
}

.card {
    border: none;
    border-left: 1px solid var(--line);
    border-radius: 0;
    padding-left: 40px;
}

header {
    background: var(--brand-navy);
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

header .container.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

header .logo {
    display: block;
    margin: 0 auto;
}

header .nav-links {
    display: flex;
    gap: 50px;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
}

header .header-cta-group {
    display: flex;
    gap: 24px;
    justify-content: center;
}

header {
    background: #0A0E14 !important; /* Force Onyx */
    padding: 15px 0 !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

header .container.nav {
    background: transparent !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px !important;
}

header .logo-image {
    height: 60px !important; /* Compact Logo */
    width: auto !important;
}

header .nav-links {
    gap: 30px !important;
    margin-bottom: 5px;
}

header .header-cta-group {
    display: none; /* Hide CTAs in header to save space, keeping them in the sticky bar or footer */
}

/* Optional: Re-show CTAs in a very small way if needed */

/* Nav Visibility Fix */
header .nav-links a {
    color: #FFFFFF !important;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
    transition: all 0.3s ease;
}

header .nav-links a:hover {
    color: var(--brand) !important;
    opacity: 1;
}

/* Bespoke Wordmark Logo Replacement */
.logo-wordmark {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-wordmark::after {
    content: 'APPLIANCE STEWARDSHIP';
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    margin-top: 8px;
    opacity: 0.8;
}

.logo-image {
    display: none !important; /* Kill the checkerboard */
}

.logo-wordmark {
    color: #C5A021 !important;
    visibility: visible !important;
    display: flex !important;
    opacity: 1 !important;
}

header .nav-links a {
    color: #FFFFFF !important;
    visibility: visible !important;
}
