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

:root {
  /* Colors */
  --navy-deep: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3355;
  --gold-primary: #c9a84c;
  --gold-light: #e8c97a;
  --gold-muted: #a07c35;
  --off-white: #f8f6f0;
  --text-light: #e8e4da;
  --muted-text: #8b9aad;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--off-white);
  color: var(--navy-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline:hover {
  background-color: rgba(201, 168, 76, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--navy-deep);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--off-white);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  height: auto;
  padding: 140px 0 60px;
  background-color: var(--navy-deep);
  background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(13, 30, 54, 0.82) 100%), url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--off-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--gold-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.stats-strip {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 32px;
}

.stat-item {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
}

.stat-divider {
  width: 1px;
  background-color: rgba(201, 168, 76, 0.3);
}

/* Products Section */
.products {
  padding: var(--section-padding) 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--navy-deep);
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold-primary);
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}

.product-row:last-child {
  border-bottom: none;
}

.product-row.even {
  direction: rtl;
}

.product-row.even > * {
  direction: ltr;
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform 0.5s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.product-info {
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.product-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.product-intro {
  font-size: 1.125rem;
  color: var(--muted-text);
  margin-bottom: 24px;
}

.product-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
}

.bullet-icon {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Contact Page */
.page-header {
  padding: 160px 0 80px;
  background-color: var(--navy-deep);
  color: var(--off-white);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--gold-primary);
}

.contact-section {
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
}

.contact-form-card {
  background: white;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--navy-mid);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.form-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 4px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(20, 164, 77, 0.1);
  color: #14a44d;
}

.form-message.error {
  display: block;
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.contact-details h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.contact-intro {
  color: var(--muted-text);
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

/* Footer */
.footer {
  background-color: var(--navy-deep);
  color: var(--text-light);
  padding: 80px 0 40px;
}

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

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 16px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  color: var(--muted-text);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--navy-deep);
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 0 50px;
    background-position: center 20%;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .stats-strip {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .product-row, .product-row.even {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .product-info {
    padding: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-header h2,
  .page-header h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 13px 22px;
  }
}
