/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* === TOKENS === */
:root {
  --navy: #1B3A5C;
  --navy-deep: #141F37;
  --navy-mid: #1B2F52;
  --gold: #B8933A;
  --gold-light: #E0C06C;
  --soft-white: #F7F4F0;
  --warm-gray: #9A938B;
  --light-blue: #ADC3DB;
}

/* === BASE === */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--soft-white);
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 240, 0.95);
  border-bottom: 1px solid rgba(27, 58, 92, 0.08);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-mark {
  flex-shrink: 0;
}
.nav-links a {
  color: var(--warm-gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-left: 2rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* === HERO === */
.hero {
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-deep));
  padding: 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,147,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 {
  font-family: 'Jura', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--soft-white);
  letter-spacing: 5px;
  position: relative;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0.8rem auto;
}
.hero-tagline {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
}
.hero-description {
  color: var(--light-blue);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* === SECTION LABEL === */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* === EXPERTISE === */
.expertise {
  padding: 1.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.expertise-list {
  list-style: none;
}
.expertise-list li {
  display: flex;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(27, 58, 92, 0.08);
}
.expertise-list li:last-child { border-bottom: none; }
.expertise-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1.2rem;
  margin-top: 0.5rem;
}
.expertise-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  min-width: 220px;
}
.expertise-desc {
  color: var(--warm-gray);
  font-size: 0.9rem;
  margin-left: auto;
}

/* === PRODUCTS === */
.products {
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-deep));
  padding: 1.5rem 2rem;
}
.products .section-label {
  text-align: center;
}
.product-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(247, 244, 240, 0.04);
  border: 1px solid rgba(184, 147, 58, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: border-color 0.3s;
}
.product-card:hover {
  border-color: rgba(184, 147, 58, 0.4);
}
.product-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  flex-shrink: 0;
  object-fit: cover;
}
.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--soft-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.product-info p {
  color: var(--light-blue);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.product-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.product-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.product-links a:hover { color: var(--gold-light); }
.product-links img {
  height: 32px;
  vertical-align: middle;
}

/* === CONTACT === */
.contact {
  padding: 1.5rem 2rem;
  text-align: center;
}
.contact .section-label {
  margin-bottom: 0.8rem;
}
.contact-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--gold); }
.contact-social {
  margin-top: 0.8rem;
}
.contact-social a {
  color: var(--warm-gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.contact-social a:hover { color: var(--gold); }

/* === FOOTER === */
footer {
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(27, 58, 92, 0.08);
}
footer p {
  color: var(--warm-gray);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* === LODESTAR PAGE === */
.lodestar-hero {
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-deep));
  padding: 3rem 2rem;
  text-align: center;
}
.lodestar-hero .product-icon {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.lodestar-hero h1 {
  font-family: 'Jura', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--soft-white);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.lodestar-hero p {
  color: var(--light-blue);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.lodestar-hero .product-links {
  justify-content: center;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .expertise {
    padding: 0.8rem 1.2rem;
  }
  .expertise-list li {
    display: grid;
    grid-template-columns: 6px 1fr;
    gap: 0 0.7rem;
    padding: 0.5rem 0;
  }
  .expertise-dot {
    margin-top: 0.55rem;
    margin-right: 0;
    grid-row: 1;
  }
  .expertise-name {
    min-width: auto;
    font-size: 1.05rem;
    grid-column: 2;
  }
  .expertise-desc {
    grid-column: 2;
    font-size: 0.9rem;
    margin-left: 0;
  }
  .product-card {
    flex-direction: column;
    text-align: center;
  }
  .product-links { justify-content: center; }
  nav { padding: 0.8rem 1rem; }
  .logo { font-size: 1.2rem; }
  .logo-mark { width: 22px; height: 22px; }
  .nav-links a { margin-left: 0.8rem; font-size: 0.75rem; }
  .lodestar-hero h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
}
