/* ==========================================================================
   FANTOD BIT - Premium Neapolitan Sartorial E-Commerce
   Design System & Master Stylesheet
   Palette: Naples Azure (#0284C7), Terracotta (#C2410C), Warm Cream (#FFFDF9), Charcoal (#18181B)
   Typography: Lora (Headings/Editorial) & Inter (UI/Body)
   ========================================================================== */

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

:root {
  /* Color Tokens */
  --naples-azure: #0284C7;
  --naples-azure-hover: #0369A1;
  --naples-azure-light: rgba(2, 132, 199, 0.08);
  --naples-azure-glow: rgba(2, 132, 199, 0.25);
  
  --terracotta: #C2410C;
  --terracotta-hover: #9A3412;
  --terracotta-light: rgba(194, 65, 12, 0.08);
  
  --warm-cream: #FFFDF9;
  --warm-cream-alt: #F8F6F0;
  --warm-cream-card: #FFFFFF;
  
  --charcoal: #18181B;
  --charcoal-muted: #3F3F46;
  --charcoal-light: #71717A;
  --charcoal-border: rgba(24, 24, 27, 0.12);
  
  --gold-accent: #D97706;
  --gold-light: rgba(217, 119, 6, 0.12);

  /* Typography Tokens */
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(24, 24, 27, 0.04);
  --shadow-md: 0 8px 24px rgba(24, 24, 27, 0.08);
  --shadow-lg: 0 16px 40px rgba(24, 24, 27, 0.12);
  --shadow-glow: 0 0 30px rgba(2, 132, 199, 0.2);

  /* Transition & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--warm-cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 18px;
  height: 2px;
  background-color: var(--terracotta);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--charcoal-light);
  max-width: 680px;
  font-weight: 300;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--charcoal-border);
  transition: background var(--transition-fast), padding var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-monogram {
  width: 42px;
  height: 42px;
  background: var(--charcoal);
  color: var(--warm-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--naples-azure);
  box-shadow: 0 0 12px rgba(2, 132, 199, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1;
}

.brand-sub {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  margin-top: 4px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--naples-azure);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--charcoal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary {
  background-color: var(--charcoal);
  color: var(--warm-cream);
  border-color: var(--charcoal);
}

.btn-primary:hover {
  background-color: var(--naples-azure);
  border-color: var(--naples-azure);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

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

.btn-secondary:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background-color: var(--terracotta-light);
}

.btn-accent {
  background-color: var(--terracotta);
  color: #FFFFFF;
  border-color: var(--terracotta);
}

.btn-accent:hover {
  background-color: var(--terracotta-hover);
  box-shadow: 0 4px 16px rgba(194, 65, 12, 0.3);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  margin: 5px 0;
  transition: transform var(--transition-fast);
}

/* Hero Section */
.hero-section {
  padding-top: 150px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, var(--warm-cream) 0%, var(--warm-cream-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--naples-azure-light);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--naples-azure);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--terracotta);
  font-style: italic;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--charcoal-muted);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 520px;
}

.hero-main-card {
  width: 100%;
  height: 100%;
  background: #121214;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  color: var(--warm-cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-main-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--naples-azure-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--naples-azure);
  font-weight: 600;
}

.hero-card-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item h5 {
  color: var(--warm-cream);
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.spec-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
}

.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--warm-cream-card);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--charcoal-border);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.floating-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta-light);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Feature Breakdown Section (Anatomy of Soft Shoulder) */
.anatomy-section {
  padding: 100px 0;
  background-color: var(--warm-cream-card);
  border-top: 1px solid var(--charcoal-border);
  border-bottom: 1px solid var(--charcoal-border);
}

.anatomy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.anatomy-card {
  background: var(--warm-cream);
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition-smooth);
  position: relative;
}

.anatomy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--naples-azure);
}

.anatomy-card-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.8;
  margin-bottom: 16px;
  display: block;
}

.anatomy-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.anatomy-card p {
  color: var(--charcoal-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Section Header Shared */
.section-header {
  margin-bottom: 60px;
}

/* Product Cards & Filtering */
.products-section {
  padding: 100px 0;
  background-color: var(--warm-cream-alt);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--charcoal-border);
  color: var(--charcoal-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--charcoal);
  color: var(--warm-cream);
  border-color: var(--charcoal);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background-color: var(--warm-cream-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--charcoal-border);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.4);
}

.product-thumb {
  position: relative;
  height: 320px;
  background: #18181B;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--terracotta);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-badge.azure {
  background: var(--naples-azure);
}

.product-visual-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, #1f1f23 0%, #0d0d0f 100%);
  color: var(--warm-cream);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  position: relative;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-visual-box {
  transform: scale(1.03);
}

.product-monogram-icon {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--naples-azure);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.product-visual-title {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  color: #FFFFFF;
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  margin-bottom: 20px;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--charcoal-border);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* Reviews / Testimonials */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--warm-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--warm-cream-card);
  border: 1px solid var(--charcoal-border);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--charcoal-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--naples-azure);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8125rem;
  color: var(--charcoal-light);
}

/* Contact & Appointment Section */
.contact-section {
  padding: 100px 0;
  background: var(--warm-cream-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Floating Label Form */
.form-card {
  background: var(--warm-cream-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--charcoal-border);
  box-shadow: var(--shadow-md);
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-control {
  width: 100%;
  padding: 16px 16px;
  font-size: 1rem;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid var(--charcoal-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--naples-azure);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  pointer-events: none;
  transition: all var(--transition-fast);
  background-color: var(--warm-cream-card);
  padding: 0 4px;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--naples-azure);
  font-weight: 600;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Atelier Map Graphic */
.map-card {
  background: #121214;
  color: var(--warm-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.map-svg-container {
  width: 100%;
  height: 240px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  margin: 24px 0;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-info-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
}

.map-info-item svg {
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Legal Documents Styling */
.legal-page-header {
  padding-top: 150px;
  padding-bottom: 60px;
  background: var(--warm-cream-alt);
  border-bottom: 1px solid var(--charcoal-border);
}

.legal-content {
  padding: 80px 0;
  background: var(--warm-cream-card);
}

.legal-article {
  margin-bottom: 40px;
}

.legal-article h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--charcoal);
  border-bottom: 2px solid var(--naples-azure-light);
  padding-bottom: 8px;
}

.legal-article p {
  color: var(--charcoal-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.legal-article ul {
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--charcoal-muted);
}

.legal-article li {
  margin-bottom: 8px;
}

.consent-box {
  background: var(--warm-cream-alt);
  border: 1px solid var(--naples-azure);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.consent-id-badge {
  display: inline-block;
  background: var(--charcoal);
  color: var(--naples-azure);
  font-family: monospace;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

/* GDPR Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(24, 24, 27, 0.95);
  color: var(--warm-cream);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  animation: slideUp 0.5s ease-out forwards;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--naples-azure);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner-actions .btn {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

/* Modal Window */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--warm-cream-card);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--charcoal-border);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal-light);
}

/* Footer Section */
.site-footer {
  background-color: var(--charcoal);
  color: var(--warm-cream);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--naples-azure);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* Dynamic Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .anatomy-grid, .products-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--warm-cream);
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid var(--charcoal-border);
    transform: translateY(-150%);
    transition: transform var(--transition-fast);
  }
  .nav-menu.open {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .anatomy-grid, .products-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
