/* getboatlife.com — Satellite Site Styles */
:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --accent: #eb1923;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.7;
  background: var(--white);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { font-size: 18px; font-weight: 700; color: var(--navy); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray-600); text-decoration: none; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  background: var(--accent); color: white; padding: 10px 24px; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; text-decoration: none; }

/* Hero */
.hero {
  text-align: center;
  padding: 100px 40px 80px;
  background: var(--navy);
  color: white;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--accent); margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.hero h1 strong { font-weight: 700; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 40px; line-height: 1.8; }
.hero-cta {
  display: inline-block; background: var(--accent); color: white;
  padding: 14px 36px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; text-decoration: none;
  transition: opacity 0.2s;
}
.hero-cta:hover { opacity: 0.9; text-decoration: none; }

/* Sections */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--off-white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.section-dark { background: var(--navy); color: white; }

.section-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--accent); margin-bottom: 12px;
}
.section h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 300; margin-bottom: 16px; line-height: 1.3; }
.section h2 strong { font-weight: 700; }
.section-line { width: 60px; height: 2px; background: var(--accent); margin: 24px 0; }
.section-text { font-size: 15px; color: var(--gray-600); max-width: 700px; line-height: 1.8; }

/* Cards Grid */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.card {
  background: var(--white); border: 1px solid var(--gray-200); padding: 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--gray-400); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(15,23,42,0.06); }
.card h3 { font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.card-link { display: inline-block; margin-top: 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); }

/* Article Content */
.article { max-width: 760px; margin: 0 auto; padding: 60px 40px 80px; }
.article h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 300; margin-bottom: 16px; line-height: 1.3; }
.article h1 strong { font-weight: 700; }
.article h2 { font-size: 1.4rem; font-weight: 600; margin: 40px 0 16px; }
.article h3 { font-size: 1.1rem; font-weight: 600; margin: 32px 0 12px; }
.article p { font-size: 15px; color: var(--gray-600); margin-bottom: 20px; line-height: 1.8; }
.article ul, .article ol { margin: 0 0 20px 24px; color: var(--gray-600); font-size: 15px; }
.article li { margin-bottom: 8px; line-height: 1.7; }
.article-meta { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 32px; }

/* CTA Banner */
.cta-banner {
  text-align: center; padding: 80px 40px;
  background: var(--navy); color: white;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; margin-bottom: 16px; }
.cta-banner h2 strong { font-weight: 700; }
.cta-banner p { color: rgba(255,255,255,0.5); font-size: 15px; margin-bottom: 32px; }

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-400);
}
.footer a { color: var(--gray-500); }

/* Link List */
.link-list { list-style: none; padding: 0; margin-top: 24px; }
.link-list li { margin-bottom: 12px; }
.link-list a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--navy);
  padding: 12px 16px; border: 1px solid var(--gray-200);
  transition: border-color 0.2s;
}
.link-list a:hover { border-color: var(--accent); text-decoration: none; }
.link-list a span { color: var(--accent); font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px 50px; }
  .section { padding: 50px 20px; }
  .article { padding: 40px 20px 60px; }
  .cards { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
}
