/* ── Seaworthy Properties — Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap');

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

:root {
  --teal: #00728C;
  --navy: #005A7D;
  --dark: #003d52;
  --darkest: #001f2e;
  --sand: #D6D6BB;
  --bg-light: #f7f7f2;
  --border-light: #e8e8dc;
  --text-primary: #001a2e;
  --text-muted: #555;
  --text-light: #777;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-primary);
  background: #fff;
  line-height: 1.6;
}

/* ── NAV ── */
.sw-nav {
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.sw-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sw-logo svg { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; }
.sw-footer-logo svg { width: 34px; height: 34px; border-radius: 50%; }

.sw-logo-text { display: flex; flex-direction: column; line-height: 1; }
.sw-logo-main { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: 0.06em; }
.sw-logo-sub { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.22em; margin-top: 2px; }

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

.sw-nav-links li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.sw-nav-links li a:hover { color: #fff; }
.sw-nav-links li a.active { color: var(--sand); }

.sw-nav-cta {
  background: var(--sand) !important;
  color: var(--dark) !important;
  padding: 9px 20px !important;
  border-radius: 5px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}
.sw-nav-cta:hover { opacity: 0.9; }

/* ── FOOTER ── */
.sw-footer {
  background: var(--darkest);
  padding: 36px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sw-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.sw-footer-logo svg { width: 32px; height: 32px; }
.sw-footer-name { font-size: 14px; font-weight: 900; color: #fff; letter-spacing: 0.08em; }
.sw-footer-name span { display: block; font-size: 8px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.22em; margin-top: 2px; }

.sw-footer-links { display: flex; gap: 28px; list-style: none; }
.sw-footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.sw-footer-links a:hover { color: rgba(255,255,255,0.85); }

.sw-footer-copy { font-size: 10px; color: rgba(255,255,255,0.3); }

/* ── UTILITIES ── */
.sw-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.sw-tag-light { color: var(--sand); }

/* ── HAMBURGER (mobile) ── */
.sw-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.sw-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .sw-nav { padding: 0 24px; }
  .sw-hamburger { display: flex; }
  .sw-nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--teal);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .sw-nav-links.open { display: flex; }
  .sw-nav-links li { width: 100%; }
  .sw-nav-links li a { display: block; padding: 14px 24px; font-size: 12px; }
  .sw-nav-cta { margin: 8px 24px; display: block; text-align: center; }

  .sw-footer { flex-direction: column; text-align: center; padding: 32px 24px; }
  .sw-footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
