/* style.css - Whulter Atlas - Steampunk Copper Italian Furniture Store */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600;700&family=Roboto+Mono:wght@300;400;500;700&display=swap');

:root {
  --color-copper: #C2410C;
  --color-copper-glow: rgba(194, 65, 12, 0.4);
  --color-charcoal: #0F172A;
  --color-charcoal-light: #1E293B;
  --color-mahogany: #451A03;
  --color-mahogany-light: #78350F;
  --color-bulb: #F97316;
  --color-bulb-glow: rgba(249, 115, 22, 0.6);
  --color-brass: #D97706;
  --color-text-light: #E2E8F0;
  --color-text-muted: #94A3B8;
  
  --font-heading: 'Oswald', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-rivet: 2px solid #334155;
}

/* Reset & General Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-charcoal);
  color: var(--color-text-light);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
  /* Blueprint-like grid subtle background */
  background-image: 
    radial-gradient(var(--color-charcoal-light) 1px, transparent 0),
    linear-gradient(to right, rgba(194, 65, 12, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(194, 65, 12, 0.03) 1px, transparent 1px);
  background-size: 24px 24px, 120px 120px, 120px 120px;
  background-position: 0 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--color-charcoal);
  border-left: 2px solid var(--color-mahogany);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-mahogany), var(--color-copper), var(--color-mahogany));
  border: 2px solid var(--color-charcoal);
  border-radius: 6px;
  box-shadow: 0 0 8px var(--color-copper-glow);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-bulb);
}

/* Typography & Global Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-light);
  font-weight: 600;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 2.2rem;
  border-bottom: 2px solid var(--color-copper);
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-bulb);
  box-shadow: 0 0 10px var(--color-bulb-glow);
}

p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

a {
  color: var(--color-copper);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-bulb);
  text-shadow: 0 0 8px var(--color-bulb-glow);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--color-mahogany);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-pipe {
  stroke: var(--color-copper);
  fill: none;
  stroke-width: 3;
}

.logo-gauge {
  fill: var(--color-bulb);
  animation: pulse-glow 2s infinite ease-in-out;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-copper);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  box-shadow: 0 0 8px var(--color-copper-glow);
}

.nav-links a.active {
  color: var(--color-copper);
}

/* Burger Menu button */
.burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 0.5rem;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text-light);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Buttons and Steampunk elements */
.btn-steampunk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 1.1rem;
  color: var(--color-text-light);
  background: linear-gradient(135deg, var(--color-mahogany), var(--color-mahogany-light));
  border: 2px solid var(--color-copper);
  box-shadow: 
    0 0 0 1px var(--color-charcoal),
    inset 0 0 10px rgba(0,0,0,0.6),
    0 4px 6px rgba(0,0,0,0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-steampunk::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s;
}

.btn-steampunk:hover::before {
  left: 100%;
}

.btn-steampunk:hover {
  background: linear-gradient(135deg, var(--color-mahogany-light), var(--color-copper));
  border-color: var(--color-bulb);
  box-shadow: 
    0 0 15px var(--color-bulb-glow),
    inset 0 0 15px rgba(255,255,255,0.1);
  transform: translateY(-2px);
  color: #fff;
}

/* Copper Pipe Accents */
.pipe-connector {
  position: relative;
  height: 15px;
  background: linear-gradient(180deg, #78350F 0%, #C2410C 50%, #451A03 100%);
  border-top: 1px solid #ea580c;
  border-bottom: 1px solid #451A03;
  margin: 3rem 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.pipe-connector::before,
.pipe-connector::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 25px;
  background: linear-gradient(90deg, #d97706, #f59e0b, #b45309);
  top: -5px;
  border: 1px solid #78350F;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.pipe-connector::before { left: 10%; }
.pipe-connector::after { right: 10%; }

.pipe-gauge-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #1e293b;
  border: 4px solid var(--color-copper);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6), inset 0 0 10px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pipe-gauge-center svg {
  width: 100%;
  height: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-graphic {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 50%;
  height: 80%;
  opacity: 0.15;
  pointer-events: none;
  animation: float-slow 12s infinite ease-in-out;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-tagline {
  font-family: var(--font-mono);
  color: var(--color-bulb);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bulb);
  box-shadow: 0 0 8px var(--color-bulb);
}

.hero-title {
  margin-bottom: 2rem;
}

.hero-title span {
  color: var(--color-copper);
  text-shadow: 0 0 15px var(--color-copper-glow);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Technical Gauge Illustration widget */
.gauge-widget {
  background: radial-gradient(circle, var(--color-charcoal-light) 40%, var(--color-charcoal) 100%);
  border: 3px solid var(--color-mahogany);
  border-radius: 50%;
  width: 320px;
  height: 320px;
  position: relative;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.6), 
    inset 0 0 30px rgba(0,0,0,0.8),
    0 0 0 4px var(--color-copper);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gauge-widget::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px dashed var(--color-copper-glow);
  border-radius: 50%;
}

.gauge-needle {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 4px;
  height: 120px;
  background: linear-gradient(to top, var(--color-copper) 20%, var(--color-bulb) 100%);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-45deg);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--color-bulb);
  z-index: 3;
  animation: gauge-wiggle 6s infinite ease-in-out;
}

.gauge-center-cap {
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, #f59e0b 0%, var(--color-mahogany) 70%);
  border: 2px solid var(--color-copper);
  border-radius: 50%;
  position: absolute;
  z-index: 4;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.gauge-labels {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 25px;
  box-sizing: border-box;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--color-text-muted);
}

.gauge-label {
  position: absolute;
}
.gl-1 { top: 35px; left: 50%; transform: translateX(-50%); color: var(--color-bulb); }
.gl-2 { bottom: 45px; left: 50%; transform: translateX(-50%); }
.gl-3 { top: 50%; left: 35px; transform: translateY(-50%); }
.gl-4 { top: 50%; right: 35px; transform: translateY(-50%); }

/* Feature / Heritage Preview section */
.section-padding {
  padding: 6rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 4rem;
}

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

.heritage-img-frame {
  position: relative;
  border: 3px solid var(--color-mahogany);
  background: var(--color-charcoal-light);
  padding: 1rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.heritage-img-frame::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 24px;
  height: 24px;
  border-top: 4px solid var(--color-copper);
  border-left: 4px solid var(--color-copper);
}

.heritage-img-frame::before {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 24px;
  height: 24px;
  border-bottom: 4px solid var(--color-copper);
  border-right: 4px solid var(--color-copper);
}

.heritage-fallback-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: grayscale(40%) sepia(30%) contrast(110%);
}

.heritage-content h3 {
  font-size: 1.8rem;
  color: var(--color-copper);
  margin-bottom: 1.2rem;
}

/* Product catalog / categories view */
.category-menu {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  background: var(--color-charcoal-light);
  border: 1px solid var(--color-mahogany);
  color: var(--color-text-muted);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.category-btn:hover,
.category-btn.active {
  background: var(--color-copper);
  color: var(--color-text-light);
  border-color: var(--color-copper);
  box-shadow: 0 0 10px var(--color-copper-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: var(--color-charcoal-light);
  border: 1px solid rgba(194, 65, 12, 0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-mahogany);
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-copper);
  box-shadow: 0 15px 35px rgba(194, 65, 12, 0.15);
}

.product-card:hover::before {
  background: var(--color-bulb);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: #0b0f19;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--color-copper);
  color: var(--color-bulb);
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  color: var(--color-bulb);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.product-spec {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-top: 1px dashed rgba(148, 163, 184, 0.2);
  padding-top: 0.8rem;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(180deg, var(--color-charcoal) 0%, rgba(15, 23, 42, 0.9) 100%);
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #151f32;
  border-left: 4px solid var(--color-copper);
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
}

.testimonial-card::after {
  content: '“';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(194, 65, 12, 0.1);
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.testimonial-author {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--color-bulb);
  font-size: 1.1rem;
}

.testimonial-company {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Appointment Form Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.form-card {
  background: var(--color-charcoal-light);
  border: 1px solid rgba(194, 65, 12, 0.2);
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  position: relative;
}

.form-title {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: var(--color-text-light);
  border-bottom: 1px solid rgba(194, 65, 12, 0.3);
  padding-bottom: 0.8rem;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-mahogany);
  color: var(--color-text-light);
  font-family: var(--font-mono);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--color-bulb);
  box-shadow: 0 1px 0 var(--color-bulb);
}

.form-label {
  position: absolute;
  top: 10px;
  left: 5px;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

/* Floating label logic using CSS siblings */
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -15px;
  left: 0;
  font-size: 0.75rem;
  color: var(--color-bulb);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%23C2410C'><path d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 2rem;
}

.checkbox-group input {
  margin-top: 5px;
  accent-color: var(--color-copper);
}

.checkbox-group label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.map-container {
  height: 480px;
  border: 3px solid var(--color-mahogany);
  background: #0d131f;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* Steampunk stylized SVG map representation */
.steampunk-map-svg {
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.map-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--color-copper);
  padding: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.map-card h4 {
  color: var(--color-bulb);
  font-size: 1rem;
}

.map-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* Privacy/Terms Content template */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-charcoal-light);
  border: 1px solid rgba(194, 65, 12, 0.15);
  padding: 4rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.legal-meta {
  color: var(--color-bulb);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h3 {
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(194, 65, 12, 0.2);
  padding-bottom: 0.4rem;
}

.legal-section p, .legal-section ul {
  font-size: 0.9rem;
  line-height: 1.7;
}

.legal-section ul {
  list-style-type: square;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.legal-section li {
  margin-bottom: 0.5rem;
}

/* GDPR Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: #1e293b;
  border: 2px solid var(--color-copper);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.6);
  z-index: 1000;
  padding: 1.8rem;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content h4 {
  color: var(--color-bulb);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookie-content p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-cookie-accept {
  padding: 0.5rem 1.2rem;
  background: var(--color-copper);
  color: #fff;
  border: 1px solid var(--color-copper);
  font-family: var(--font-heading);
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.btn-cookie-accept:hover {
  background: var(--color-bulb);
  border-color: var(--color-bulb);
}

.btn-cookie-decline {
  padding: 0.5rem 1.2rem;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-mahogany);
  font-family: var(--font-heading);
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.btn-cookie-decline:hover {
  color: #fff;
  border-color: var(--color-copper);
}

/* Footer styling */
footer {
  background: #090d16;
  border-top: 3px solid var(--color-mahogany);
  padding: 5rem 2rem 2rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
}

.footer-links-col h4 {
  color: var(--color-bulb);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 0.8rem;
}

.footer-links-col a {
  color: var(--color-text-muted);
}

.footer-links-col a:hover {
  color: var(--color-bulb);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Animations */
@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes gauge-wiggle {
  0% { transform: translateX(-50%) rotate(-45deg); }
  15% { transform: translateX(-50%) rotate(-35deg); }
  30% { transform: translateX(-50%) rotate(-50deg); }
  45% { transform: translateX(-50%) rotate(10deg); }
  60% { transform: translateX(-50%) rotate(-10deg); }
  75% { transform: translateX(-50%) rotate(30deg); }
  90% { transform: translateX(-50%) rotate(-20deg); }
  100% { transform: translateX(-50%) rotate(-45deg); }
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 2px var(--color-bulb-glow)); opacity: 0.8; }
  50% { filter: drop-shadow(0 0 10px var(--color-bulb)); opacity: 1; }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 { font-size: 2.8rem; }
  .hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-bg-graphic { display: none; }
  .heritage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .burger { display: block; }
  
  .nav-links {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--color-charcoal);
    border-left: 2px solid var(--color-mahogany);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .legal-container { padding: 2rem; }
}
