/* ocean — water service: trust strip + header nav + aside panel */
:root {
  --text: #0f172a;
  --muted: #475569;
  --accent: #0284c7;
  --bg: #f0f9ff;
  --border: #bae6fd;
  --topbar-bg: #e0f2fe;
  --topbar-text: #0369a1;
}

body.theme-ocean {
  background: var(--bg);
}

.theme-ocean .top-bar--ocean .shell {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  font-weight: 600;
  color: var(--topbar-text);
}

.theme-ocean .ocean-header {
  background: #fff;
  border-bottom: 3px solid #38bdf8;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
}

.theme-ocean .ocean-header__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.theme-ocean .ocean-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-right: auto;
  margin-left: 1rem;
}

.theme-ocean .ocean-header__meta a {
  color: #0369a1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.theme-ocean .logo {
  color: #0c4a6e;
  font-weight: 800;
  text-decoration: none;
}

.theme-ocean .header-phone {
  background: #e0f2fe;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-left: auto;
}

.theme-ocean .ocean-header .svc-nav {
  border-top: 1px solid #e0f2fe;
  padding: 0.5rem 1rem 0.75rem;
}

.theme-ocean .hero--ocean {
  background: linear-gradient(120deg, #0284c7, #0c4a6e);
  color: #fff;
  padding: 2.25rem 0;
}

.theme-ocean .hero--ocean .btn--primary {
  background: #fff;
  color: #0369a1;
}

.theme-ocean .ocean-main {
  padding: 2rem 0 3rem;
}

.theme-ocean .ocean-main__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.theme-ocean .ocean-article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.theme-ocean .content h2 {
  color: #0369a1;
  border-left: 4px solid #38bdf8;
  padding-left: 0.6rem;
}

.theme-ocean .cta {
  border-radius: 10px;
  background: #f0f9ff;
  border: 1px solid #7dd3fc;
}

@media (min-width: 900px) {
  .theme-ocean .ocean-main__grid {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}
