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

:root {
  --navy: #0b3451;
  --navy-deep: #072438;
  --blue: #357fc6;
  --blue-light: #6ea4d6;
  --blue-pale: #e8f1fa;
  --gold: #ebae36;
  --gold-hover: #d49a2a;
  --dark: #1a1a1a;
  --gray: #555555;
  --gray-light: #f5f7fa;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(11, 52, 81, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 52, 81, 0.10);
  --shadow-lg: 0 8px 32px rgba(11, 52, 81, 0.12);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Header ───────────────────────────────────── */
.site-header {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}

.header-logo {
  display: block;
  max-width: 440px;
  width: 100%;
  height: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-phone:hover {
  color: var(--blue);
}

.phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Hero ──────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(53, 127, 198, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(235, 174, 54, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
}

.hero-subtitle {
  text-align: center;
  margin-bottom: 48px;
}

.hero-badge {
  display: inline-block;
  background: rgba(235, 174, 54, 0.15);
  border: 1px solid rgba(235, 174, 54, 0.4);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.hero-content .lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.hero-content .shipping-note {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.shipping-note::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── Buttons ──────────────────────────────────── */
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
}

.btn:active {
  transform: scale(0.97);
}

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

.btn-primary:hover {
  background: var(--gray-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(235, 174, 54, 0.3);
}

.btn-secondary:hover {
  background: var(--gold-hover);
  box-shadow: 0 6px 20px rgba(235, 174, 54, 0.4);
  transform: translateY(-1px);
}

/* ── Products (Shopify Collection) ────────────── */
.products {
  background: var(--gray-light);
  padding: 80px 0 88px;
}

.products h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}

.products-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 48px;
  border-radius: 2px;
}

/* ── Footer ───────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 28px 0;
  font-size: 0.85rem;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .header-logo {
    max-width: 280px;
  }

  .header-phone {
    font-size: 0.95rem;
  }

  .products {
    padding: 56px 0 64px;
  }
}

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

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

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-logo {
    max-width: 260px;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-content .shipping-note {
    flex-direction: column;
    text-align: center;
  }
}
