/* Ever Harbor Care — shared site CSS */

:root {
  --navy-deep: #050f22;
  --navy: #0a1d3a;
  --navy-2: #102745;
  --navy-3: #16335a;
  --gold: #d4b06b;
  --gold-soft: #e8cf98;
  --gold-deep: #b6924d;
  --ivory: #f6efde;
  --paper: #f7f0dd;
  --cream: #efe6cc;
  --ink: #142235;
  --muted: #5a6275;
  --muted-2: #8892a8;
  --line: rgba(212,176,107,0.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ivory);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.serif { font-family: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif; }
.mono  { font-family: 'DM Mono', ui-monospace, Menlo, monospace; }
.wrap  { max-width: 1320px; margin: 0 auto; padding: 0 56px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  padding: 16px 28px; border-radius: 999px;
  border: 1px solid var(--gold); background: var(--gold); color: var(--navy-deep);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); background: var(--gold-soft); box-shadow: 0 8px 20px rgba(212,176,107,0.25); }
.btn.ghost { background: transparent; color: var(--ivory); border-color: rgba(255,255,255,0.3); box-shadow: none; }
.btn.ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--gold-soft); }
.btn.dark { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.btn.sm { padding: 12px 22px; font-size: 13px; }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--gold-soft); font-weight: 500;
}
.eyebrow .rule { width: 28px; height: 1px; background: var(--gold); display: inline-block; }

/* Nav */
nav.top {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(5, 15, 34, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
nav.top .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
}
nav.top img.brand { height: 44px; width: auto; display: block; }
nav.top ul {
  display: flex; gap: 32px; list-style: none; padding: 0; margin: 0;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85);
}
nav.top ul a { transition: color 0.2s ease; padding-bottom: 2px; border-bottom: 1px solid transparent; }
nav.top ul a:hover { color: var(--gold-soft); border-bottom-color: var(--gold); }
nav.top .actions { display: flex; gap: 12px; align-items: center; }
nav.top .brand-wrap { display: flex; align-items: center; gap: 18px; }
nav.top .phone { font-family: 'DM Mono', monospace; color: var(--gold-soft); font-size: 13px; letter-spacing: 0.04em; }

/* Final CTA shared */
section.final-cta { position: relative; min-height: 600px; overflow: hidden; }
section.final-cta video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
section.final-cta .ovr { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,15,34,0.85), rgba(2,6,15,0.95)); }
section.final-cta .content { position: relative; z-index: 2; padding: 130px 56px; text-align: center; }
section.final-cta h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(56px, 7vw, 96px); margin: 24px 0 0; line-height: 1.04; color: #fff; }
section.final-cta h2 em { color: var(--gold-soft); font-style: italic; }
section.final-cta p { color: rgba(246,239,222,0.75); font-size: 17px; line-height: 1.6; max-width: 580px; margin: 26px auto 0; }
section.final-cta .ctas { display: flex; gap: 14px; justify-content: center; margin-top: 42px; flex-wrap: wrap; }

/* Footer */
footer { background: #02060f; border-top: 1px solid var(--line); padding: 80px 0 40px; }
footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 64px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
footer img.brand { height: 56px; width: auto; display: block; }
footer .co { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; color: rgba(246,239,222,0.7); line-height: 1.55; margin: 22px 0 0; max-width: 320px; }
footer h5 { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 6px 0 18px; font-weight: 500; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 13.5px; color: rgba(246,239,222,0.7); }
footer ul a:hover { color: var(--gold-soft); }
footer .news input {
  width: 100%; padding: 14px 16px; background: transparent; color: var(--ivory);
  border: 1px solid var(--line); border-radius: 0;
  font-family: inherit; font-size: 14px;
}
footer .news input::placeholder { color: var(--muted-2); }
footer .news .row { display: flex; gap: 8px; margin-top: 10px; }
footer .bot { display: flex; justify-content: space-between; padding-top: 32px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 1100px) {
  nav.top ul { display: none; }
  footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .wrap { padding: 0 28px; }
  nav.top .row { padding: 14px 28px; }
  footer .top { grid-template-columns: 1fr; gap: 36px; }
}
