:root {
  --navy: #1E3A5F;
  --gold: #C9A227;
  --medium-blue: #2D5A7B;
  --light-bg: #F5F5F0;
  --white: #FFFFFF;
  --text: #2C2C2C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; color: var(--navy); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.content-narrow { max-width: 800px; margin: 0 auto; }
.text-center { text-align: center; }

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
}

.logo-icon {
  width: 40px;
  height: 50px;
  display: block;
  overflow: visible;
}

.logo-text { color: var(--navy); }
.logo-highlight { color: var(--gold); }

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

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
}

.nav-cta:hover { background: var(--medium-blue); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--navy);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--medium-blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 180px 20px 100px;
}

.hero-small { padding: 140px 20px 60px; }

.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero .gold { color: var(--gold); }

.hero-sub {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover { background: #b8922a; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Sections */
.section {
  padding: 80px 20px;
}

.section-alt { background: var(--light-bg); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 { margin-bottom: 15px; font-size: 2.2rem; }
.section-header p { max-width: 600px; margin: 0 auto; color: #666; }

.section h2 { margin-bottom: 20px; font-size: 2rem; }
.section p { margin-bottom: 15px; }
.section h4 { margin: 25px 0 10px; }
.section ul { margin-left: 20px; margin-bottom: 20px; }
.section li { margin-bottom: 8px; }

/* Mission Content */
.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-content p { margin-bottom: 20px; font-size: 1.1rem; }

/* Stat Block */
.stat-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.stat-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-content h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.stat-content p { margin-bottom: 15px; }

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.product-card:hover { transform: translateY(-5px); }
.product-card h3 { margin-bottom: 8px; color: var(--navy); font-size: 1.5rem; }
.product-card .product-audience { color: var(--gold); font-weight: 600; margin-bottom: 15px; font-size: 0.9rem; }
.product-card p { margin-bottom: 20px; }

/* Quote Section */
.section-quote {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.section-quote blockquote {
  max-width: 800px;
  margin: 0 auto;
}

.section-quote p {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-quote cite {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

/* About Preview */
.about-preview {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 15px; }
.about-content .btn { margin-top: 10px; }

/* Product Detail */
.product-detail { max-width: 800px; margin: 0 auto; }
.product-tagline { font-size: 1.2rem; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.product-info h4 { margin-top: 25px; }

/* CTA Section */
.cta-section {
  background: var(--gold);
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 { color: var(--navy); margin-bottom: 15px; }
.cta-section p { margin-bottom: 25px; font-size: 1.1rem; }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

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

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h4, .footer-links h4 {
  color: var(--gold);
  margin-bottom: 15px;
}

.footer-about p { opacity: 0.8; font-size: 0.9rem; }

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--white); text-decoration: none; opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Download Grid */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.download-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.download-card h4 { margin-bottom: 10px; font-size: 1rem; }
.download-card .btn { width: 100%; }

/* Download Items */
.download-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.download-item h4 {
  margin-bottom: 10px;
  color: var(--navy);
}

.download-item p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.download-buttons {
  display: flex;
  gap: 10px;
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-preview { grid-template-columns: 1fr; text-align: center; }
  .about-image { order: -1; }
  .about-image img { max-width: 280px; margin: 0 auto; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .stat-block { grid-template-columns: 1fr; text-align: center; }
  .stat-number { font-size: 4rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .menu-toggle { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .section-quote p { font-size: 1.2rem; }
}
