/* ============================================================
   AviatorBrasil.com — Premium Aviator Sunglasses
   Main Stylesheet
   ============================================================ */

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

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold: #C9A84C;
  --gold-light: #e4c97a;
  --gold-dark: #9a7a2a;
  --navy: #0a0f1e;
  --navy-mid: #141d33;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --grey-light: #f0eeea;
  --grey-mid: #d4d0c8;
  --grey-text: #7a7670;
  --dark-text: #1a1814;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(10,15,30,0.08);
  --shadow-md: 0 8px 32px rgba(10,15,30,0.12);
  --shadow-lg: 0 20px 60px rgba(10,15,30,0.18);
  --radius: 4px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── Typography ────────────────────────────────────────────── */
.serif { font-family: var(--font-serif); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }
h4, h5, h6 { font-family: var(--font-sans); font-weight: 600; line-height: 1.3; }

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--grey-text);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section-header {
  margin-bottom: 60px;
}

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

.section-header.center .section-subtitle {
  margin: 16px auto 0;
}

/* ─── Gold Divider ──────────────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0 0;
  display: block;
}

.center .gold-divider {
  margin: 20px auto 0;
}

/* ─── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.logo-name span {
  color: var(--gold);
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-top: 2px;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

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

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

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
  background: var(--off-white);
}

.hero-content {
  padding: 80px 64px 80px 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.0;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--grey-text);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span, .btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: var(--transition);
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  bottom: 60px;
  left: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.hero-badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-badge-text span {
  font-size: 11px;
  color: var(--grey-text);
  letter-spacing: 0.05em;
}

/* Hero Stats Bar */
.hero-stats {
  background: var(--navy);
  padding: 28px 0;
}

.hero-stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ─── PRODUCT GRID ──────────────────────────────────────────── */
.products-section {
  background: var(--white);
}

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

.product-card {
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

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

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.badge-new { background: var(--navy); color: var(--white); }
.badge-classic { background: var(--gold); color: var(--navy); }
.badge-polarized { background: #1a5a3a; color: var(--white); }
.badge-limited { background: #8b1a1a; color: var(--white); }

.product-card-body {
  padding: 20px;
}

.product-collection {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}

.product-specs {
  font-size: 12px;
  color: var(--grey-text);
  margin-bottom: 14px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.product-colors {
  display: flex;
  gap: 6px;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
}

/* ─── FEATURES SECTION ──────────────────────────────────────── */
.features-section {
  background: var(--navy);
  color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

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

.feature-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.features-section .section-title {
  color: var(--white);
}

.features-section .section-label {
  color: var(--gold-light);
}

/* ─── LIFESTYLE SPLIT ───────────────────────────────────────── */
.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.lifestyle-visual {
  position: relative;
  overflow: hidden;
}

.lifestyle-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lifestyle-visual:hover img {
  transform: scale(1.04);
}

.lifestyle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 64px;
  background: var(--off-white);
}

.lifestyle-content.reverse {
  padding: 80px 64px 80px 80px;
  order: -1;
}

.lifestyle-feature-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lifestyle-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--dark-text);
}

.lifestyle-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── LENS GUIDE ────────────────────────────────────────────── */
.lens-guide {
  background: var(--grey-light);
}

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

.lens-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.lens-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grey-mid);
  transition: var(--transition);
}

.lens-card:hover::before {
  background: var(--gold);
}

.lens-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.lens-swatch {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.lens-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.lens-desc {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.lens-use {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--off-white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-quote {
  font-size: 48px;
  font-family: var(--font-serif);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.8;
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 24px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.testimonial-author-city {
  font-size: 12px;
  color: var(--grey-text);
}

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 40px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 1.4rem;
}

.footer-brand .logo-name span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ─── MOBILE MENU ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 100px 40px 60px;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-light);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  color: var(--navy);
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--off-white);
  text-align: center;
}

.page-hero .section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* ─── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--grey-text);
  margin-bottom: 24px;
  justify-content: center;
}

.breadcrumb a { color: var(--grey-text); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--grey-mid); }

/* ─── FILTER BAR (catalog) ──────────────────────────────────── */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.filters-sidebar {
  position: sticky;
  top: 96px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.filter-group {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-mid);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.filter-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dark-text);
  cursor: pointer;
  transition: var(--transition);
}

.filter-option:hover { color: var(--gold); }

.filter-option input[type="checkbox"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-swatch-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.color-swatch-btn:hover,
.color-swatch-btn.active {
  border-color: var(--navy);
  transform: scale(1.15);
}

/* ─── SORT BAR ──────────────────────────────────────────────── */
.catalog-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-light);
}

.results-count {
  font-size: 13px;
  color: var(--grey-text);
}

.sort-select {
  padding: 8px 16px;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--dark-text);
  background: var(--white);
  cursor: pointer;
  outline: none;
}

.sort-select:focus { border-color: var(--gold); }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.about-timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  margin-bottom: 60px;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content { order: 3; }
.timeline-item:nth-child(even) .timeline-empty { order: 1; }

.timeline-year {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
}

.timeline-year::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  bottom: -40px;
  width: 1px;
  background: var(--grey-mid);
}

.timeline-year::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.timeline-content h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ─── CONTACTS ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.contact-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark-text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

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

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.contact-info-card .footer-heading { color: var(--gold-light); }

/* ─── MAP PLACEHOLDER ───────────────────────────────────────── */
.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-text);
  border: 1px solid var(--grey-mid);
  overflow: hidden;
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* ─── LEGAL PAGES ───────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 100px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 40px 0 12px;
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 28px 0 8px;
  font-family: var(--font-sans);
}

.legal-content p, .legal-content li {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.9;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-content a { color: var(--gold); border-bottom: 1px solid; }

/* ─── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 20px 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

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

.btn-cookie-accept {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover { background: var(--gold-light); }

.btn-cookie-decline {
  padding: 10px 24px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 32px; }
  .hero-visual { height: 60vw; }
  .lifestyle-split { grid-template-columns: 1fr; }
  .lifestyle-content { padding: 60px 32px; }
  .lifestyle-content.reverse { order: 0; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lens-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats-inner { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-badge { left: 12px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .lens-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
